/* Byron Property Management — Custom Styles */

.contact-section {
    background-color: #f5f5f5;
}

.height-90 { height: 90px; }
.height-70 { height: 70px; }
.mt-115    { margin-top: 115px; }

#navbar-logo-img {
    height: 90px;
    margin-top: -8px;
}

.fees-cards    { margin-top: 70px; }
.services-cards { margin-top: 70px; }

.font-size-15 { font-size: 15px; }

/* Hero — background image set inline via PHP in front-page.php */
.hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 150px;
    height: 500px;
}

.navy-btn {
    background-color: #1c243c;
    border-color: #1c243c;
}

.navy-btn:hover,
.navy-btn:focus {
    background-color: #2e3d63;
    border-color: #2e3d63;
    color: #fff;
}

nav.navbar.navbar-expand-lg {
    background-color: #1c243c;
}

/* Navbar phone number */
.navbar-phone {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.navbar-phone:hover {
    opacity: 1;
    color: #fff !important;
}

/* PropertyFile CTA button */
.btn-propertyfile {
    background-color: #c09d68;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-propertyfile:hover {
    background-color: #a8834e;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .navbar {
        background-color: #1c243c;
    }

    .navbar-extras {
        flex-wrap: wrap;
        padding-bottom: 12px;
    }
}

/* Footer overrides (in addition to theme.css) */
.site-footer {
    background-color: #1c243c;
}

.site-footer a  { color: rgba(255,255,255,0.8); }
.site-footer h6 { color: #ffffff; }
.site-footer p  { color: rgba(255,255,255,0.8); }

/* -----------------------------------------------
   PROPERTY CARDS
----------------------------------------------- */
.property-card {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1.5px solid #d0d5de !important;
    box-shadow: 0 4px 16px rgba(28, 36, 60, 0.08), 0 1px 4px rgba(0,0,0,0.06) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(28, 36, 60, 0.18), 0 4px 12px rgba(0,0,0,0.10) !important;
    border-color: #1c243c !important;
}

/* Image */
.property-card-img-wrap {
    overflow: hidden;
}

.property-card-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.property-card:hover .property-card-img {
    transform: scale(1.04);
}

.property-card-img--placeholder {
    background-color: #e8ecf0;
    color: #8a95a3;
    gap: 8px;
}

.property-card-img--placeholder .bi {
    font-size: 2.5rem;
}

.property-card-img--placeholder span {
    font-size: 13px;
}

/* Badges (Let Agreed / Type) */
.property-badge {
    position: absolute;
    top: 12px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.property-badge--let-agreed {
    right: 12px;
    background-color: #198754;
    color: #fff;
}

.property-badge--type {
    left: 12px;
    background-color: #1c243c;
    color: #fff;
}

/* Card body text */
.property-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1c243c;
    line-height: 1.35;
}

.property-card-price {
    font-size: 17px;
    font-weight: 700;
    color: #1c243c;
    margin-bottom: 0;
    line-height: 1.2;
}

.property-card-price-label {
    font-size: 12px;
    font-weight: 400;
    color: #717275;
}

/* Bed / bath details row */
.property-card-details {
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}

.property-card-detail {
    font-size: 12px;
    color: #717275;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-card-detail .bi {
    font-size: 13px;
    color: #3576a5;
}

/* CTA buttons */
.btn-property-rightmove {
    background-color: #00deb6;
    color: #1c243c;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    padding: 7px 10px;
    border: none;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
}

.btn-property-rightmove:hover {
    background-color: #00c4a0;
    color: #1c243c;
}

.btn-property-enquire {
    background-color: #f0f4f8;
    color: #1c243c;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    padding: 7px 10px;
    border: none;
    transition: background-color 0.2s;
    text-align: center;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.btn-property-enquire:hover {
    background-color: #dce6f0;
    color: #1c243c;
}

/* Testimonial star colour */
.text-warning .bi { color: #ffc107; }

/* -----------------------------------------------
   REVIEW / TESTIMONIAL CARDS
----------------------------------------------- */
.review-card {
    border: 1.5px solid #d0d5de !important;
    border-left: 4px solid #1c243c !important;
    box-shadow: 0 4px 16px rgba(28, 36, 60, 0.08), 0 1px 4px rgba(0,0,0,0.06) !important;
    border-radius: 12px !important;
    position: relative;
}


.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 5rem;
    line-height: 1;
    color: #1c243c;
    opacity: 0.18;
    font-family: Georgia, serif;
    font-weight: 700;
    pointer-events: none;
    z-index: 0;
}

.review-card .card-body {
    position: relative;
    z-index: 1;
}

.review-card p:not(.fw-semibold) {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.review-card .fw-semibold {
    font-size: 13px;
    color: #1c243c;
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    margin-top: 4px;
}

/* Service card icon placeholder (shown if image files are missing) */
.icon-placeholder {
    width: 90px;
    height: 70px;
    background-color: #e8f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 2rem;
    color: #3576a5;
}

/* -----------------------------------------------
   SERVICES PAGE
----------------------------------------------- */

/* Icon badge */
.services-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-icon-wrap .bi {
    font-size: 1.7rem;
    color: #3576a5;
}

.services-icon-wrap--sm {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.services-icon-wrap--sm .bi {
    font-size: 1.3rem;
}

/* Featured cards */
.services-featured-card {
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-featured-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09) !important;
    transform: translateY(-3px);
}

/* Bullet list inside featured cards */
.services-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid #f0f4f8;
}

.services-feature-list li:last-child {
    border-bottom: none;
}

.services-feature-list .bi {
    color: #198754;
    font-size: 15px;
    flex-shrink: 0;
}

/* Additional service cards */
.services-card {
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px);
}

.services-card h5 {
    font-size: 17px;
    color: #1c243c;
}

.services-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #717275;
}

/* CTA strip */
.services-cta-strip {
    background: linear-gradient(135deg, #1c243c 0%, #2e3d63 100%);
    padding: 60px 0;
}

.services-cta-strip h3 {
    color: #fff;
    font-size: 26px;
}

@media (max-width: 991px) {
    .services-cta-strip {
        text-align: center;
    }
}

/* -----------------------------------------------
   MANAGEMENT FEES PAGE
----------------------------------------------- */

/* Large price on featured cards */
.fees-price {
    font-family: var(--title-font-family);
    font-size: 2.4rem;
    font-weight: 700;
    color: #1c243c;
    line-height: 1.1;
}

.fees-price-secondary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3576a5;
    min-height: 1.4rem;
}

.fees-price-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #717275;
}

/* Price badge on addon cards */
.fees-badge {
    display: inline-flex;
    align-items: center;
    background-color: #1c243c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.fees-badge--from {
    background-color: #3576a5;
}

/* Addon cards — keep top row aligned */
.fees-addon-card h5 {
    font-size: 15px;
    color: #1c243c;
    line-height: 1.4;
}

.fees-addon-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #717275;
}

/* -----------------------------------------------
   ABOUT US PAGE
----------------------------------------------- */

/* Stat cards */
.about-stat-card {
    background-color: #f0f0f0;
}

.about-stat-number {
    font-family: var(--title-font-family);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c243c;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: #717275;
    line-height: 1.4;
}

/* Pull quote block */
.about-story-quote {
    background-color: #1c243c;
    position: relative;
}

.about-story-quote p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    font-style: italic;
}

.about-quote-icon {
    font-size: 2rem;
    color: #3576a5;
    display: block;
    margin-bottom: 8px;
}

/* Team cards */
.about-team-card {
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10) !important;
}

.about-team-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.about-team-img--placeholder {
    background-color: #e8ecf0;
    color: #adb5bd;
}

.about-team-img--placeholder .bi {
    font-size: 4rem;
}

.about-team-role {
    font-size: 14px;
    color: #3576a5;
    font-weight: 500;
}

#section_team {
    background-color: #f5f5f5;
}

/* -----------------------------------------------
   HERO SERVICE CARDS
----------------------------------------------- */

.hero-cards-section {
    padding-bottom: 60px;
    background-color: transparent;
}

.hero-cards-section .row {
    position: relative;
    bottom: 80px;
    margin-bottom: -80px;
}

.hero-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-card-icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background-color: #f0f0f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.hero-card-icon-wrap img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.hero-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1c243c;
    margin-bottom: 8px;
}

.hero-card-text {
    font-size: 14px;
    color: #717275;
    line-height: 1.65;
    margin-bottom: 0;
}

/* -----------------------------------------------
   FAQ SECTION
----------------------------------------------- */

.faq-illustration {
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3576a5;
    margin-bottom: 8px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1c243c;
    margin-bottom: 10px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 15px;
    color: #717275;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Accordion overrides */
.faq-accordion {
    --bs-accordion-border-color: #e2e2e2;
    --bs-accordion-border-radius: 8px;
    --bs-accordion-inner-border-radius: 8px;
}

.faq-item {
    border: 1px solid #e2e2e2;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-btn {
    font-size: 15px;
    font-weight: 600;
    color: #1c243c;
    background-color: #fff;
    padding: 18px 20px;
    line-height: 1.4;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.faq-btn:not(.collapsed) {
    color: #3576a5;
    background-color: #f5f5f5;
}

.faq-btn::after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233576a5'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform 0.2s ease;
    content: "";
}

.faq-btn:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233576a5'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 4px 20px 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e2e2e2;
}

@media (max-width: 991px) {
    .faq-illustration {
        max-height: 280px;
    }

    .faq-title {
        font-size: 1.6rem;
    }
}
