/* ============================================
   HERO SECTION - PROFESSIONAL ANIMATIONS
   ============================================ */

.hero-main {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
}

/* ============================================
   DESKTOP BACKGROUND WITH PARALLAX
   ============================================ */
.hero-main-bg-desktop {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg-desktop.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: block;
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main:hover .hero-main-bg-desktop {
    transform: scale(1.05);
}

/* ============================================
   MOBILE BACKGROUND
   ============================================ */
.hero-main-bg-mobile {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

/* ============================================
   GRADIENT OVERLAY - SMOOTH FADE
   ============================================ */
.hero-main-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(16, 27, 65, 0.92) 0%,
        rgba(16, 27, 65, 0.85) 15%,
        rgba(16, 27, 65, 0.75) 30%,
        rgba(16, 27, 65, 0.55) 50%,
        rgba(16, 27, 65, 0.30) 70%,
        rgba(16, 27, 65, 0.10) 85%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.hero-main .container {
    position: relative;
    z-index: 2;
}

.hero-main-content {
    position: relative;
    z-index: 2;
}

/* ============================================
   BADGE WITH SHINE ANIMATION
   ============================================ */
.hero-main-badge {
    display: inline-block;
    background: linear-gradient(135deg, #A98B52, #C4A06A);
    color: #FFFFFF;
    padding: 7px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(169, 139, 82, 0.3);
    position: relative;
    overflow: hidden;
    animation: heroBadgePulse 3s ease-in-out infinite;
}

/* Badge Shine Effect */
.hero-main-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    animation: heroBadgeShine 3s ease-in-out infinite;
}

@keyframes heroBadgeShine {
    0%, 100% { transform: translateX(-50%) rotate(45deg); }
    50% { transform: translateX(50%) rotate(45deg); }
}

@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(169, 139, 82, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(169, 139, 82, 0.5); }
}

/* ============================================
   TITLE WITH TEXT REVEAL
   ============================================ */
.hero-main-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1.5px;
    line-height: 1.08;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    animation: heroTitleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   LEAD
   ============================================ */
.hero-main-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.hero-main-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

/* Primary Button */
.hero-main-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #A98B52, #C4A06A);
    color: #FFFFFF;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: none;
    box-shadow: 0 4px 20px rgba(169, 139, 82, 0.3);
    position: relative;
    overflow: hidden;
    animation: heroBtnPulse 3s ease-in-out infinite 1s;
}

@keyframes heroBtnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(169, 139, 82, 0.3); }
    50% { box-shadow: 0 4px 35px rgba(169, 139, 82, 0.5); }
}

.hero-main-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9A7A4A, #B08A5A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-main-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(169, 139, 82, 0.5);
    color: #FFFFFF;
    animation-play-state: paused;
}

.hero-main-btn-primary:hover::before {
    opacity: 1;
}

.hero-main-btn-primary span,
.hero-main-btn-primary svg {
    position: relative;
    z-index: 1;
}

.hero-main-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-main-btn-primary:hover svg {
    transform: translateX(6px);
}

/* Secondary Button */
.hero-main-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-main-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-main-btn-outline svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-main-btn-outline:hover svg {
    opacity: 1;
}

/* ============================================
   STATS WITH STAGGERED ANIMATIONS
   ============================================ */
.hero-main-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-main-stat {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-stat:hover {
    transform: translateY(-4px);
}

.hero-main-stat-num {
    font-size: 30px;
    font-weight: 900;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-main-stat-num::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #A98B52;
    transition: width 0.4s ease;
    margin-top: 2px;
}

.hero-main-stat:hover .hero-main-stat-num::after {
    width: 100%;
}

.hero-main-stat-lbl {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    margin-top: 2px;
}

.hero-main-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   AOS OVERRIDE - PREVENT FOUC
   ============================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .hero-main {
        min-height: 500px;
        padding: 60px 0 80px;
    }

    .hero-main-title {
        font-size: 2.8rem;
        animation-delay: 0.1s;
    }

    .hero-main-lead {
        font-size: 1.05rem;
    }

    .hero-main-stat-num {
        font-size: 24px;
    }

    .hero-main-overlay-left {
        width: 80%;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .hero-main {
        min-height: 480px;
        padding: 50px 0 60px;
    }

    .hero-main-bg-desktop {
        display: none;
    }

    .hero-main-bg-mobile {
        display: block;
        animation: heroMobileZoom 20s ease-in-out infinite alternate;
    }

    @keyframes heroMobileZoom {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .hero-main-overlay-left {
        display: none;
    }

    .hero-main::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70%;
        background: linear-gradient(
            to top,
            rgba(16, 27, 65, 0.85) 0%,
            rgba(16, 27, 65, 0.55) 35%,
            rgba(16, 27, 65, 0.25) 60%,
            transparent 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .hero-main .container {
        position: relative;
        z-index: 2;
    }

    .hero-main-title {
        font-size: 2.2rem;
        text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-main-lead {
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
    }

    .hero-main-badge {
        font-size: 11px;
        padding: 5px 20px;
        margin-bottom: 14px;
    }

    .hero-main-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-main-btn-primary,
    .hero-main-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero-main-btn-primary {
        box-shadow: 0 4px 24px rgba(169, 139, 82, 0.25);
    }

    .hero-main-stats {
        gap: 16px;
        flex-wrap: wrap;
        padding-top: 18px;
    }

    .hero-main-stat-num {
        font-size: 20px;
    }

    .hero-main-stat-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
    }

    .hero-main-stat {
        flex: 1;
        min-width: 60px;
    }

    .hero-main-stat-sep {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 576px) {
    .hero-main {
        min-height: 420px;
        padding: 40px 0 50px;
    }

    .hero-main-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .hero-main-lead {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero-main-btn-primary,
    .hero-main-btn-outline {
        font-size: 13px;
        padding: 12px 20px;
        border-radius: 8px;
    }

    .hero-main-btn-primary svg,
    .hero-main-btn-outline svg {
        width: 14px;
        height: 14px;
    }

    .hero-main-stat-num {
        font-size: 18px;
    }

    .hero-main-stat-lbl {
        font-size: 10px;
    }

    .hero-main-stats {
        gap: 10px;
    }

    .hero-main-badge {
        font-size: 10px;
        padding: 4px 16px;
        margin-bottom: 12px;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL
   ============================================ */
@media (max-width: 400px) {
    .hero-main {
        min-height: 380px;
        padding: 30px 0 40px;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-main-lead {
        font-size: 0.85rem;
    }

    .hero-main-stat-num {
        font-size: 16px;
    }

    .hero-main-btn-primary,
    .hero-main-btn-outline {
        font-size: 12px;
        padding: 10px 16px;
    }
}
/* ============================================
   MOBILE FULL OVERLAY - LIGHT
   ============================================ */

@media (max-width: 768px) {
    .hero-main {
        position: relative;
    }

    .hero-main::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(16, 27, 65, 0.50);
        z-index: 1;
        pointer-events: none;
    }

    .hero-main .container {
        position: relative;
        z-index: 2;
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-main-bg-desktop {
        transition: none;
        animation: none;
    }

    .hero-main-bg-mobile {
        animation: none;
    }

    .hero-main-badge {
        animation: none;
    }

    .hero-main-badge::before {
        animation: none;
    }

    .hero-main-title {
        animation: none;
    }

    .hero-main-btn-primary {
        animation: none;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    [data-aos].aos-animate {
        transform: none !important;
    }
}
/* ============================================
   REDUCE MOTION — Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .sh-hero-badge,
    .sh-hero-title,
    .sh-hero-lead,
    .sh-hero-btns,
    .sh-hero-stats,
    .sh-hero-stat .sh-stat-num,
    .sh-hero-stat .sh-stat-lbl,
    .sh-hero-stat-sep,
    .sh-hero-bg-desktop,
    .sh-hero-bg-mobile {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


    /* ============================================
   HEADER VARIABLES
   ============================================ */
:root {
    --sh-navy: #101B41;
    --sh-navy-light: #26365F;
    --sh-brass: #A98B52;
    --sh-pale: #E9EDF5;
    --sh-canvas: #F5F6F8;
    --sh-white: #FFFFFF;
    --sh-charcoal: #252A32;
    --sh-slate: #68717F;
    --sh-ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================
   TOP STRIP
   ============================================ */
.sh-topstrip {
    background: var(--sh-navy);
    height: 40px;
    display: flex;
    align-items: center;
}

.sh-topstrip-inner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sh-topstrip-left {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.sh-topstrip-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sh-topstrip-right a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.25s var(--sh-ease);
}

.sh-topstrip-right a:hover {
    color: var(--sh-brass);
}

.sh-topstrip-sep {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.12);
}


/* ============================================
   MAIN HEADER
   ============================================ */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: var(--sh-white);
    border-bottom: 1px solid var(--sh-pale);
    transition: box-shadow 0.35s var(--sh-ease),
                border-color 0.35s var(--sh-ease);
}

.sh-header.scrolled {
    box-shadow: 0 4px 28px rgba(16, 27, 65, 0.08);
    border-bottom-color: transparent;
}

.sh-header-inner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================
   BRAND
   ============================================ */
.sh-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.sh-brand:hover {
    opacity: 0.92;
}

.sh-brand img {
    height: 44px;
    width: auto;
    display: block;
}

.sh-brand-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--sh-navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.sh-brand-tag {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--sh-slate);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-top: 2px;
}


/* ============================================
   DESKTOP NAV
   ============================================ */
.sh-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 76px;
}

.sh-nav > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.sh-nav > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-charcoal);
    text-decoration: none;
    letter-spacing: -0.1px;
    position: relative;
    transition: color 0.25s var(--sh-ease);
}

.sh-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2.5px;
    background: var(--sh-brass);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--sh-ease);
}

.sh-nav > li > a:hover {
    color: var(--sh-navy);
}

.sh-nav > li > a:hover::after,
.sh-nav > li > a.active::after {
    transform: scaleX(1);
}

.sh-nav > li > a.active {
    color: var(--sh-navy);
}


/* ============================================
   DROPDOWN CARET
   ============================================ */
.sh-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid var(--sh-slate);
    transition: transform 0.3s var(--sh-ease),
                border-color 0.3s var(--sh-ease);
    position: relative;
    top: 1px;
}

.sh-dropdown:hover .sh-caret {
    transform: rotate(180deg);
    border-top-color: var(--sh-brass);
}


/* ============================================
   DROPDOWN PANEL
   ============================================ */
.sh-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 260px;
    background: var(--sh-white);
    border: 1px solid var(--sh-pale);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.22s var(--sh-ease),
                transform 0.22s var(--sh-ease),
                visibility 0.22s;
    box-shadow: 0 16px 52px rgba(16, 27, 65, 0.12),
                0 0 0 1px rgba(16, 27, 65, 0.02);
    z-index: 100;
}

.sh-dropdown:hover > .sh-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sh-drop-label {
    display: block;
    padding: 8px 14px 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sh-slate);
}

.sh-drop a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--sh-charcoal);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease,
                color 0.2s ease,
                padding-left 0.25s ease;
    line-height: 1.4;
}

.sh-drop a:hover {
    background: var(--sh-pale);
    color: var(--sh-navy);
    padding-left: 20px;
}

.sh-drop-line {
    height: 1px;
    background: var(--sh-pale);
    margin: 6px 10px;
}

.sh-drop-foot a {
    font-weight: 700;
    font-size: 13px;
    color: var(--sh-navy);
}

.sh-drop-foot a:hover {
    background: rgba(169, 139, 82, 0.07);
    color: var(--sh-brass);
}


/* ============================================
   HAMBURGER
   ============================================ */
.sh-burger {
    display: none;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border-radius: 8px;
    transition: background 0.25s var(--sh-ease);
}

.sh-burger:hover {
    background: var(--sh-pale);
}

.sh-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--sh-navy);
    border-radius: 2px;
    transition: transform 0.35s var(--sh-ease),
                opacity 0.35s var(--sh-ease);
    transform-origin: center;
}

.sh-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sh-burger.open span:nth-child(2) {
    opacity: 0;
}

.sh-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   MOBILE OVERLAY
   ============================================ */
.sh-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 27, 65, 0.35);
    z-index: 1039;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sh-overlay.show {
    display: block;
}


/* ============================================
   MOBILE SLIDE MENU
   ============================================ */
.sh-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--sh-white);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--sh-ease);
    box-shadow: -8px 0 40px rgba(16, 27, 65, 0.1);
}

.sh-menu.open {
    transform: translateX(0);
}

/* Current mobile drawer markup */
.sh-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    border-bottom: 1px solid var(--sh-pale);
    flex-shrink: 0;
    color: var(--sh-navy);
    font-weight: 700;
}

.sh-menu-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sh-menu-scroll .sh-nav {
    display: block;
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.sh-menu-scroll .sh-nav > li {
    border-bottom: 1px solid var(--sh-pale);
}

.sh-menu-scroll .sh-nav > li:last-child {
    border-bottom: none;
}

.sh-menu-scroll .sh-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    color: var(--sh-charcoal);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}

.sh-menu-scroll .sh-nav > li > a:hover,
.sh-menu-scroll .sh-nav > li > a.active {
    color: var(--sh-navy);
    background: var(--sh-canvas);
}

.sh-menu-scroll .sh-drop {
    display: none;
    position: static;
    width: auto;
    padding: 0 0 8px 12px;
    box-shadow: none;
}

.sh-menu-scroll .sh-drop.mob-open {
    display: block;
}

.sh-menu-scroll .sh-drop-label,
.sh-menu-scroll .sh-drop a {
    padding-left: 20px;
}

.sh-menu-scroll .sh-drop-foot a {
    padding-left: 20px;
}

.sh-menu-scroll .sh-areas-dropdown > .sh-mob-toggle {
    padding-left: 20px;
}

.sh-menu-scroll .sh-areas-dropdown > .sh-drop {
    padding-left: 20px;
}

.sh-menu-scroll .sh-areas-dropdown > .sh-drop > .sh-drop-label,
.sh-menu-scroll .sh-areas-dropdown > .sh-drop a {
    padding-left: 28px;
}

/* Menu Header */
.sh-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    border-bottom: 1px solid var(--sh-pale);
    flex-shrink: 0;
}

.sh-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.sh-menu-brand img {
    height: 30px;
}

.sh-menu-brand span {
    font-size: 14px;
    font-weight: 800;
    color: var(--sh-navy);
    letter-spacing: -0.3px;
}

.sh-menu-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s var(--sh-ease);
}

.sh-menu-close:hover {
    background: var(--sh-pale);
}

.sh-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--sh-slate);
    stroke-width: 2;
}

.sh-menu-close:hover svg {
    stroke: var(--sh-navy);
}

/* Menu Scroll Area */
.sh-menu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sh-menu-body::-webkit-scrollbar {
    width: 3px;
}

.sh-menu-body::-webkit-scrollbar-thumb {
    background: var(--sh-pale);
    border-radius: 3px;
}

/* Mobile Nav Links */
.sh-mnav {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
}

.sh-mnav > li {
    border-bottom: 1px solid var(--sh-pale);
}

.sh-mnav > li:last-child {
    border-bottom: none;
}

.sh-mnav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-charcoal);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease,
                color 0.2s ease;
}

.sh-mnav > li > a:hover,
.sh-mnav > li > a.active {
    color: var(--sh-navy);
    background: var(--sh-canvas);
}

.sh-mnav > li > a.active {
    position: relative;
}

.sh-mnav > li > a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--sh-brass);
    border-radius: 0 3px 3px 0;
}

/* Mobile Caret */
.sh-mcaret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4.5px solid var(--sh-slate);
    transition: transform 0.3s var(--sh-ease),
                border-color 0.3s var(--sh-ease);
    flex-shrink: 0;
}

.sh-mtoggle.open .sh-mcaret {
    transform: rotate(180deg);
    border-top-color: var(--sh-brass);
}

/* Mobile Dropdown */
.sh-mdrop {
    display: none;
    padding: 0 0 8px 12px;
}

.sh-mdrop.open {
    display: block;
}

.sh-mdrop-label {
    display: block;
    padding: 6px 12px 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--sh-slate);
}

.sh-mdrop a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-charcoal);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease,
                color 0.2s ease,
                padding-left 0.2s ease;
}

.sh-mdrop a:hover {
    background: var(--sh-pale);
    color: var(--sh-navy);
    padding-left: 18px;
}

.sh-mdrop-line {
    height: 1px;
    background: var(--sh-pale);
    margin: 4px 8px;
}

.sh-mdrop-foot a {
    font-weight: 700;
    color: var(--sh-navy);
    font-size: 13px;
}

.sh-mdrop-foot a:hover {
    color: var(--sh-brass);
    background: rgba(169, 139, 82, 0.06);
}

/* Menu Footer */
.sh-menu-foot {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--sh-pale);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sh-menu-foot .sh-mcta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: var(--sh-navy);
    color: var(--sh-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    letter-spacing: 0.2px;
    transition: background 0.25s var(--sh-ease);
}

.sh-menu-foot .sh-mcta:hover {
    background: var(--sh-navy-light);
}

.sh-menu-foot .sh-mphone {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--sh-brass);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sh-menu-foot .sh-mphone:hover {
    background: var(--sh-canvas);
}


/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .sh-header-inner {
        padding: 0 28px;
    }

    .sh-nav > li > a {
        padding: 0 14px;
        font-size: 13px;
    }
}


/* ============================================
   RESPONSIVE — 992px (MOBILE)
   ============================================ */
@media (max-width: 992px) {
    .sh-topstrip {
        display: none;
    }

    .sh-header-inner {
        height: 64px;
        padding: 0 20px;
    }

    .sh-brand img {
        height: 36px;
    }

    .sh-brand-name {
        font-size: 15px;
    }

    .sh-brand-tag {
        font-size: 8.5px;
        letter-spacing: 0.5px;
    }

    .sh-nav {
        display: none;
    }

    .sh-burger {
        display: flex;
    }
}


/* ============================================
   RESPONSIVE — 576px
   ============================================ */
@media (max-width: 576px) {
    .sh-header-inner {
        height: 58px;
        padding: 0 16px;
    }

    .sh-brand img {
        height: 30px;
    }

    .sh-brand-name {
        font-size: 13.5px;
    }

    .sh-brand-tag {
        display: none;
    }

    .sh-menu {
        width: 100%;
        max-width: 100%;
    }

    .sh-menu-head {
        height: 58px;
        padding: 0 16px;
    }

    .sh-menu-top {
        height: 58px;
        padding: 0 16px;
    }

    .sh-mnav {
        padding: 6px 10px;
    }

    .sh-mnav > li > a {
        padding: 13px 10px;
        font-size: 14.5px;
    }

    .sh-menu-foot {
        padding: 14px 16px 20px;
    }
}


/* ============================================
   RESPONSIVE — 400px
   ============================================ */
@media (max-width: 400px) {
    .sh-header-inner {
        height: 54px;
        padding: 0 14px;
    }

    .sh-brand img {
        height: 26px;
    }

    .sh-brand {
        gap: 10px;
    }

    .sh-brand-name {
        font-size: 12.5px;
    }

    .sh-burger {
        width: 38px;
        height: 38px;
    }

    .sh-menu-head {
        height: 54px;
    }
}


/* ============================================
   ACCESSIBILITY
   ============================================ */
.sh-nav > li > a:focus-visible,
.sh-burger:focus-visible,
.sh-menu-close:focus-visible,
.sh-mnav > li > a:focus-visible {
    outline: 2px solid var(--sh-brass);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   FOOTER — Steve Hill Homes
   Design System Colors Applied
   ============================================ */

/* ---------- Footer Base ---------- */
.sh-footer {
    background: #101B41;
    color: rgba(233, 237, 245, 0.6);
    font-family: inherit;
}

/* ---------- Shared Inner Container ---------- */
.sh-footer-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP SECTION (Main 4-Column Area)
   ============================================ */
.sh-footer-top {
    padding: 72px 0 52px;
}

.sh-footer-top > .sh-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.85fr 1fr;
    gap: 48px;
}

/* ---------- Brand Column ---------- */
.sh-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 22px;
}

.sh-footer-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.sh-footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.sh-footer-logo:hover {
    text-decoration: none;
}

.sh-footer-logo:hover .sh-footer-brand-name {
    color: #FFFFFF;
}

.sh-footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(233, 237, 245, 0.5);
    margin-bottom: 28px;
    max-width: 320px;
}

/* ---------- Contact Simple (Phone + Email in Brand Col) ---------- */
.sh-footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sh-footer-phone-link,
.sh-footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(233, 237, 245, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sh-footer-phone-link i,
.sh-footer-email-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(169, 139, 82, 0.1);
    color: #A98B52;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.sh-footer-phone-link:hover,
.sh-footer-email-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.sh-footer-phone-link:hover i,
.sh-footer-email-link:hover i {
    background: rgba(169, 139, 82, 0.22);
}

/* ---------- Column Headings ---------- */
.sh-footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
}

.sh-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: #A98B52;
    border-radius: 2px;
}

/* ---------- Footer Links ---------- */
.sh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-footer-links li {
    margin-bottom: 0;
}

.sh-footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 7px 0;
    font-size: 13.5px;
    color: rgba(233, 237, 245, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sh-footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #A98B52;
    margin-right: 0;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.sh-footer-links a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.sh-footer-links a:hover::before {
    width: 14px;
    margin-right: 8px;
}

/* Highlight Link (Free Estimate) */
.sh-footer-highlight {
    color: #A98B52 !important;
    font-weight: 600;
}

.sh-footer-highlight:hover {
    color: #bfa068 !important;
}

/* View All Link */
.sh-footer-view-all {
    color: #A98B52 !important;
    font-weight: 500;
    font-size: 13px !important;
}

.sh-footer-view-all:hover {
    color: #bfa068 !important;
}

/* ---------- CTA Button (Column 4) ---------- */
.sh-footer-cta {
    margin-top: 28px;
}

.sh-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: #A98B52;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(169, 139, 82, 0.2);
}

.sh-footer-btn:hover {
    background: #bfa068;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(169, 139, 82, 0.3);
    text-decoration: none;
}

.sh-footer-btn:active {
    transform: translateY(0);
}

.sh-footer-btn i {
    font-size: 14px;
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.sh-footer-bottom {
    background: #0b1331;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-footer-bottom > .sh-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sh-footer-copyright {
    font-size: 12.5px;
    color: rgba(233, 237, 245, 0.35);
}

.sh-footer-copyright a {
    color: rgba(233, 237, 245, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.sh-footer-copyright a:hover {
    color: #A98B52;
}

.sh-footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sh-footer-legal a {
    font-size: 12.5px;
    color: rgba(233, 237, 245, 0.35);
    text-decoration: none;
    transition: color 0.25s ease;
}

.sh-footer-legal a:hover {
    color: rgba(233, 237, 245, 0.75);
}

.sh-footer-dot {
    color: rgba(233, 237, 245, 0.15);
    font-size: 10px;
}

.sh-footer-powered {
    font-size: 12px;
    color: rgba(233, 237, 245, 0.3);
}

.sh-footer-powered a {
    color: #A98B52;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.sh-footer-powered a:hover {
    color: #bfa068;
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

    .sh-footer-top > .sh-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .sh-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .sh-footer-logo {
        justify-content: center;
    }

    .sh-footer-about {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .sh-footer-contact-simple {
        align-items: center;
    }

    .sh-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sh-footer-bottom > .sh-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {

    .sh-footer-top {
        padding: 48px 0 36px;
    }

    .sh-footer-top > .sh-footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .sh-footer-logo {
        justify-content: center;
    }

    .sh-footer-about {
        max-width: 100%;
    }

    .sh-footer-contact-simple {
        align-items: center;
    }

    .sh-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Remove sliding line on mobile — color change only */
    .sh-footer-links a::before {
        display: none;
    }

    .sh-footer-links a:hover {
        color: #A98B52;
    }

    /* CTA button full width */
    .sh-footer-btn {
        width: 100%;
        justify-content: center;
    }

    /* Bottom bar */
    .sh-footer-bottom {
        padding: 18px 0;
    }

    .sh-footer-bottom > .sh-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .sh-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .sh-footer-brand-name {
        font-size: 16px;
    }

    .sh-footer-about {
        font-size: 13px;
    }

    .sh-footer-btn {
        padding: 12px 20px;
        font-size: 12.5px;
    }

    .sh-footer-phone-link i,
    .sh-footer-email-link i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ============================================
   HOME ABOUT SECTION — Steve Hill Homes
   Design System Colors Applied
   ============================================ */

/* ---------- Section Base ---------- */
.sh-home-about {
    background: #F5F6F8;
    padding: 100px 0 !important;
    overflow: hidden;
    position: relative;
}

/* ---------- Image Wrapper ---------- */
.sh-about-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: visible;
}

.sh-about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 120px;
    height: 120px;
    border-top: 4px solid #A98B52;
    border-left: 4px solid #A98B52;
    border-radius: 14px 0 0 0;
    z-index: 1;
    pointer-events: none;
}

.sh-about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 120px;
    height: 120px;
    border-bottom: 4px solid #101B41;
    border-right: 4px solid #101B41;
    border-radius: 0 0 14px 0;
    z-index: 1;
    pointer-events: none;
}

/* ---------- Main Image ---------- */
.sh-about-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 20px 60px rgba(16, 27, 65, 0.12);
}

/* ---------- Experience Badge (floating) ---------- */
.sh-about-experience {
    position: absolute;
    bottom: -28px;
    right: 28px;
    background: #101B41;
    padding: 22px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 12px 40px rgba(16, 27, 65, 0.25);
    border: 1px solid rgba(169, 139, 82, 0.15);
}

.sh-about-exp-number {
    font-size: 38px;
    font-weight: 800;
    color: #A98B52;
    line-height: 1;
    letter-spacing: -1px;
}

.sh-about-exp-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(233, 237, 245, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* ---------- Badge (Eyebrow) ---------- */
.sh-about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(169, 139, 82, 0.1);
    border: 1px solid rgba(169, 139, 82, 0.25);
    border-radius: 50px;
    color: #A98B52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ---------- Title ---------- */
.sh-about-title {
    font-size: 36px;
    font-weight: 800;
    color: #101B41;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    max-width: 520px;
    position: relative;
    padding-bottom: 22px;
}

.sh-about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #A98B52, rgba(169, 139, 82, 0.2));
    border-radius: 3px;
}

/* ---------- Body Text ---------- */
.sh-about-text {
    font-size: 15px;
    line-height: 1.85;
    color: #68717F;
    margin-bottom: 18px;
    max-width: 540px;
}

.sh-about-text:last-of-type {
    margin-bottom: 32px;
}

/* ---------- Stats Row ---------- */
.sh-about-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(16, 27, 65, 0.08);
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(16, 27, 65, 0.05);
    max-width: fit-content;
}

.sh-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    position: relative;
    transition: background 0.3s ease;
}

.sh-about-stat:hover {
    background: rgba(16, 27, 65, 0.02);
}

/* Vertical dividers between stats */
.sh-about-stat + .sh-about-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(16, 27, 65, 0.08);
}

.sh-about-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #101B41;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.sh-about-stat-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #68717F;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ---------- CTA Button ---------- */
.sh-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: #101B41;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(16, 27, 65, 0.18);
}

.sh-about-btn:hover {
    background: #26365F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 27, 65, 0.22);
    text-decoration: none;
}

.sh-about-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(16, 27, 65, 0.15);
}

.sh-about-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sh-about-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

    .sh-home-about {
        padding: 72px 0 !important;
    }

    .sh-about-image {
        height: 420px;
    }

    .sh-about-title {
        font-size: 30px;
        max-width: 100%;
    }

    .sh-about-text {
        max-width: 100%;
    }

    .sh-about-stat {
        padding: 20px 24px;
    }

    .sh-about-stat-number {
        font-size: 24px;
    }
}

/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {

    .sh-home-about {
        padding: 56px 0 !important;
    }

    /* Image adjustments */
    .sh-about-image-wrapper::before,
    .sh-about-image-wrapper::after {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .sh-about-image-wrapper::before {
        top: -10px;
        left: -10px;
    }

    .sh-about-image-wrapper::after {
        bottom: -10px;
        right: -10px;
    }

    .sh-about-image {
        height: 300px;
        border-radius: 12px;
    }

    /* Experience badge */
    .sh-about-experience {
        bottom: -22px;
        right: 16px;
        padding: 16px 22px;
        border-radius: 10px;
    }

    .sh-about-exp-number {
        font-size: 30px;
    }

    .sh-about-exp-text {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    /* Content */
    .sh-about-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 16px;
    }

    .sh-about-title {
        font-size: 26px;
        margin-bottom: 20px;
        padding-bottom: 18px;
        max-width: 100%;
    }

    .sh-about-title::after {
        width: 40px;
    }

    .sh-about-text {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    /* Stats — stack vertical */
    .sh-about-stats {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .sh-about-stat {
        padding: 18px 24px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
    }

    /* Switch dividers to horizontal */
    .sh-about-stat + .sh-about-stat::before {
        top: 0;
        left: 24px;
        right: 24px;
        width: auto;
        width: calc(100% - 48px);
        height: 1px;
        transform: none;
    }

    .sh-about-stat-number {
        font-size: 26px;
        margin-bottom: 0;
        min-width: 65px;
    }

    .sh-about-stat-label {
        font-size: 12px;
    }

    /* Button full width */
    .sh-about-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .sh-about-image {
        height: 240px;
    }

    .sh-about-title {
        font-size: 23px;
    }

    .sh-about-experience {
        padding: 14px 18px;
    }

    .sh-about-exp-number {
        font-size: 26px;
    }

    .sh-about-stat {
        padding: 14px 18px;
    }

    .sh-about-stat-number {
        font-size: 22px;
        min-width: 55px;
    }

    .sh-about-btn {
        font-size: 13px;
        padding: 13px 22px;
    }
}
/* ============================================
   WHY CHOOSE US — Steve Hill Homes
   Design System Colors Applied
   ============================================ */

/* ---------- Section Base ---------- */
.sh-why {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sh-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 27, 65, 0.06), transparent);
}

/* ---------- Badge ---------- */
.sh-why-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(169, 139, 82, 0.1);
    border: 1px solid rgba(169, 139, 82, 0.25);
    border-radius: 50px;
    color: #A98B52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ---------- Title ---------- */
.sh-why-title {
    font-size: 36px;
    font-weight: 800;
    color: #101B41;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    max-width: 480px;
    position: relative;
    padding-bottom: 22px;
}

.sh-why-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #A98B52, rgba(169, 139, 82, 0.15));
    border-radius: 3px;
}

/* ---------- Lead Text ---------- */
.sh-why-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #68717F;
    max-width: 460px;
    margin-bottom: 12px;
}

/* ---------- Cards Grid (2x2) ---------- */
.sh-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

/* ---------- Individual Card ---------- */
.sh-why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    background: #F5F6F8;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-why-card:hover {
    background: #FFFFFF;
    border-color: rgba(169, 139, 82, 0.2);
    box-shadow: 0 8px 30px rgba(16, 27, 65, 0.07);
    transform: translateY(-3px);
}

/* Card Icon */
.sh-why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(169, 139, 82, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sh-why-card-icon i {
    font-size: 16px;
    color: #A98B52;
}

.sh-why-card:hover .sh-why-card-icon {
    background: #A98B52;
}

.sh-why-card:hover .sh-why-card-icon i {
    color: #FFFFFF;
}

/* Card Text */
.sh-why-card-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #101B41;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sh-why-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: #68717F;
    margin-bottom: 0;
}

/* ============================================
   COMMITMENT BOX
   ============================================ */
.sh-why-commit {
    background: #101B41;
    border-radius: 18px;
    padding: 48px 42px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 27, 65, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative Glows */
.sh-why-commit::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sh-why-commit::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(38, 54, 95, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Commit Badge */
.sh-why-commit-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(169, 139, 82, 0.12);
    border: 1px solid rgba(169, 139, 82, 0.25);
    border-radius: 50px;
    color: #A98B52;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Commit Title */
.sh-why-commit-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 28px;
    padding-bottom: 22px;
    position: relative;
    letter-spacing: -0.3px;
    z-index: 1;
}

.sh-why-commit-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: #A98B52;
    border-radius: 2px;
}

/* Commit List */
.sh-why-commit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.sh-why-commit-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.sh-why-commit-list li:first-child {
    padding-top: 0;
}

.sh-why-commit-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sh-why-commit-list li:hover {
    padding-left: 6px;
}

/* Commit Icon */
.sh-why-commit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(169, 139, 82, 0.12);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sh-why-commit-icon i {
    font-size: 14px;
    color: #A98B52;
}

.sh-why-commit-list li:hover .sh-why-commit-icon {
    background: rgba(169, 139, 82, 0.22);
    transform: scale(1.1);
}

/* Commit Text */
.sh-why-commit-text {
    font-size: 14.5px;
    color: rgba(233, 237, 245, 0.65);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.sh-why-commit-list li:hover .sh-why-commit-text {
    color: #FFFFFF;
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

    .sh-why {
        padding: 72px 0;
    }

    .sh-why-title {
        font-size: 30px;
        max-width: 100%;
    }

    .sh-why-lead {
        max-width: 100%;
    }

    .sh-why-commit {
        padding: 38px 34px;
        margin-top: 12px;
    }

    .sh-why-commit-title {
        font-size: 22px;
    }
}

/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {

    .sh-why {
        padding: 56px 0;
    }

    .sh-why-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 16px;
    }

    .sh-why-title {
        font-size: 26px;
        padding-bottom: 18px;
        margin-bottom: 16px;
    }

    .sh-why-title::after {
        width: 40px;
    }

    .sh-why-lead {
        font-size: 14px;
    }

    /* Cards — single column */
    .sh-why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .sh-why-card {
        padding: 18px 16px;
        border-radius: 10px;
    }

    .sh-why-card:hover {
        transform: none;
    }

    .sh-why-card-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .sh-why-card-icon i {
        font-size: 14px;
    }

    .sh-why-card-title {
        font-size: 14px;
    }

    .sh-why-card-text {
        font-size: 12.5px;
    }

    /* Commitment Box */
    .sh-why-commit {
        padding: 32px 24px;
        border-radius: 14px;
        margin-top: 8px;
    }

    .sh-why-commit-badge {
        font-size: 10px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .sh-why-commit-title {
        font-size: 20px;
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .sh-why-commit-list li {
        padding: 12px 0;
        gap: 12px;
    }

    .sh-why-commit-list li:hover {
        padding-left: 0;
    }

    .sh-why-commit-icon {
        width: 28px;
        height: 28px;
    }

    .sh-why-commit-icon i {
        font-size: 12px;
    }

    .sh-why-commit-text {
        font-size: 13.5px;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .sh-why-title {
        font-size: 23px;
    }

    .sh-why-card {
        padding: 15px 14px;
        gap: 10px;
    }

    .sh-why-card-title {
        font-size: 13px;
    }

    .sh-why-card-text {
        font-size: 12px;
    }

    .sh-why-commit {
        padding: 26px 20px;
    }

    .sh-why-commit-title {
        font-size: 18px;
    }

    .sh-why-commit-text {
        font-size: 13px;
    }
}
/* ============================================
   FAQ SECTION — Steve Hill Homes
   Design System Colors Applied
   ============================================ */

/* ---------- Section Base ---------- */
.sh-faq {
    background: #F5F6F8;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sh-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 27, 65, 0.06), transparent);
}

/* ---------- Badge ---------- */
.sh-faq-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(169, 139, 82, 0.1);
    border: 1px solid rgba(169, 139, 82, 0.25);
    border-radius: 50px;
    color: #A98B52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ---------- Title ---------- */
.sh-faq-title {
    font-size: 36px;
    font-weight: 800;
    color: #101B41;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* ---------- Subtitle ---------- */
.sh-faq-subtitle {
    font-size: 15px;
    color: #68717F;
    margin-bottom: 48px;
    font-weight: 500;
}

/* ---------- FAQ List Container ---------- */
.sh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---------- FAQ Item ---------- */
.sh-faq-item {
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid rgba(16, 27, 65, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-faq-item:has(.sh-faq-btn.active) {
    border-color: rgba(169, 139, 82, 0.2);
    box-shadow: 0 8px 30px rgba(16, 27, 65, 0.06);
}

/* ---------- FAQ Button ---------- */
.sh-faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.sh-faq-btn:hover {
    background: rgba(245, 246, 248, 0.5);
}

/* Question Text */
.sh-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #101B41;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sh-faq-btn.active .sh-faq-question {
    color: #A98B52;
}

/* Icon */
.sh-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(16, 27, 65, 0.04);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-faq-icon i {
    font-size: 14px;
    color: #101B41;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active icon — rotate plus to X */
.sh-faq-btn.active .sh-faq-icon {
    background: #A98B52;
    transform: rotate(45deg);
}

.sh-faq-btn.active .sh-faq-icon i {
    color: #FFFFFF;
}

/* ---------- FAQ Answer ---------- */
.sh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
}

.sh-faq-answer.show {
    max-height: 300px;
    padding: 0 28px 24px;
}

.sh-faq-answer p {
    font-size: 14.5px;
    line-height: 1.85;
    color: #68717F;
    margin-bottom: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(16, 27, 65, 0.05);
    padding-top: 16px;
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

    .sh-faq {
        padding: 72px 0;
    }

    .sh-faq-title {
        font-size: 30px;
    }

    .sh-faq-subtitle {
        margin-bottom: 36px;
    }

    .sh-faq-btn {
        padding: 20px 24px;
    }

    .sh-faq-answer {
        padding: 0 24px;
    }

    .sh-faq-answer.show {
        padding: 0 24px 22px;
    }
}

/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {

    .sh-faq {
        padding: 56px 0;
    }

    .sh-faq-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 16px;
    }

    .sh-faq-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .sh-faq-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .sh-faq-list {
        gap: 10px;
    }

    .sh-faq-item {
        border-radius: 12px;
    }

    .sh-faq-btn {
        padding: 18px 20px;
        gap: 14px;
    }

    .sh-faq-question {
        font-size: 14.5px;
    }

    .sh-faq-icon {
        width: 30px;
        height: 30px;
    }

    .sh-faq-icon i {
        font-size: 12px;
    }

    .sh-faq-answer {
        padding: 0 20px;
    }

    .sh-faq-answer.show {
        padding: 0 20px 20px;
    }

    .sh-faq-answer p {
        font-size: 13.5px;
        line-height: 1.8;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .sh-faq-title {
        font-size: 23px;
    }

    .sh-faq-btn {
        padding: 16px 16px;
        gap: 12px;
    }

    .sh-faq-question {
        font-size: 13.5px;
    }

    .sh-faq-icon {
        width: 28px;
        height: 28px;
    }

    .sh-faq-answer {
        padding: 0 16px;
    }

    .sh-faq-answer.show {
        padding: 0 16px 16px;
    }

    .sh-faq-answer p {
        font-size: 13px;
    }
}
/* ============================================
   GLOBAL TYPOGRAPHY — Poppins (Google Font)
   Steve Hill Homes
   ============================================ */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

/* ---------- Global Font Apply ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #252A32;
    background: #F5F6F8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #101B41;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

h1 { font-size: 48px; font-weight: 800; }
h2 { font-size: 36px; font-weight: 800; }
h3 { font-size: 26px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 17px; font-weight: 600; }
h6 { font-size: 14px; font-weight: 600; }

/* ---------- Paragraphs ---------- */
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #68717F;
    margin-bottom: 16px;
}

/* ---------- Links ---------- */
a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* ---------- Buttons & Inputs ---------- */
button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ---------- Strong / Bold ---------- */
strong, b {
    font-weight: 700;
}

/* ---------- Small / Captions ---------- */
small,
.text-caption {
    font-size: 13px;
    font-weight: 500;
    color: #68717F;
}

/* ---------- Blockquote ---------- */
blockquote {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    color: #252A32;
    line-height: 1.75;
}

/* ---------- Lists ---------- */
ul, ol {
    font-family: 'Poppins', sans-serif;
}

/* ---------- Mobile Typography Scale ---------- */
@media (max-width: 767px) {
    body { font-size: 15px; }
    h1   { font-size: 32px; }
    h2   { font-size: 26px; }
    h3   { font-size: 22px; }
    h4   { font-size: 18px; }
    h5   { font-size: 16px; }
    h6   { font-size: 13px; }
    blockquote { font-size: 16px; }
}

@media (max-width: 374px) {
    body { font-size: 14px; }
    h1   { font-size: 28px; }
    h2   { font-size: 23px; }
    h3   { font-size: 20px; }
}

/* ============================================
   ANIMATION UTILITY CLASSES
   Use anywhere in HTML
   ============================================ */

/* Reusable animation classes — add to any element */
.sh-fade-up,
.sh-fade-left,
.sh-fade-right,
.sh-scale-in {
    will-change: transform, opacity;
}

/* Parallax elements */
.sh-parallax {
    will-change: transform;
}

/* Magnetic button reset */
.sh-magnetic {
    will-change: transform;
}

/* Hero — remove CSS-only animations (GSAP handles it now) */
.sh-hero-badge,
.sh-hero-title,
.sh-hero-lead,
.sh-hero-btns,
.sh-hero-stats,
.sh-hero-stat .sh-stat-num,
.sh-hero-stat .sh-stat-lbl,
.sh-hero-stat-sep {
    animation: none !important;
    opacity: 1 !important;
}

/* Background zoom stays CSS — GSAP not needed */
.sh-hero-bg-desktop,
.sh-hero-bg-mobile {
    animation: shBgZoom 20s ease-in-out infinite alternate;
}

/* Smooth transitions for all interactive elements */
.sh-footer-links a,
.sh-about-btn,
.sh-hero-btn-primary,
.sh-hero-btn-outline,
.sh-footer-btn,
.why-item,
.commitment-box li {
    will-change: transform;
}

/* Disable ALL animations on mobile for performance */
@media (max-width: 767px) {
    .sh-fade-up,
    .sh-fade-left,
    .sh-fade-right,
    .sh-scale-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   SERVICES SECTION — Steve Hill Homes
   Design System Colors Applied
   ============================================ */

/* ---------- Section Base ---------- */
.sh-services {
    background: #F5F6F8;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sh-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 27, 65, 0.06), transparent);
}

/* ---------- Badge ---------- */
.sh-services-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(169, 139, 82, 0.1);
    border: 1px solid rgba(169, 139, 82, 0.25);
    border-radius: 50px;
    color: #A98B52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ---------- Title ---------- */
.sh-services-title {
    font-size: 36px;
    font-weight: 800;
    color: #101B41;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

/* ---------- Subtitle ---------- */
.sh-services-subtitle {
    font-size: 15px;
    color: #68717F;
    margin-bottom: 52px;
    font-weight: 500;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Cards Grid ---------- */
.sh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---------- Service Card ---------- */
.sh-service-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 340px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

/* Background Image */
.sh-service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-service-card:hover .sh-service-card-bg {
    transform: scale(1.08);
}

/* Gradient Overlay */
.sh-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 27, 65, 0) 0%,
        rgba(16, 27, 65, 0.1) 30%,
        rgba(16, 27, 65, 0.55) 60%,
        rgba(16, 27, 65, 0.92) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.sh-service-card:hover .sh-service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(16, 27, 65, 0.05) 0%,
        rgba(16, 27, 65, 0.2) 30%,
        rgba(16, 27, 65, 0.65) 55%,
        rgba(16, 27, 65, 0.95) 100%
    );
}

/* Card Content */
.sh-service-card-content {
    position: relative;
    z-index: 2;
    padding: 30px 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Icon */
.sh-service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(169, 139, 82, 0.15);
    border: 1px solid rgba(169, 139, 82, 0.2);
    transition: all 0.35s ease;
}

.sh-service-card-icon i {
    font-size: 18px;
    color: #A98B52;
    transition: color 0.3s ease;
}

.sh-service-card:hover .sh-service-card-icon {
    background: #A98B52;
    border-color: #A98B52;
}

.sh-service-card:hover .sh-service-card-icon i {
    color: #FFFFFF;
}

/* Service Name */
.sh-service-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

/* CTA */
.sh-service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #A98B52;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-service-card-cta svg {
    transition: transform 0.3s ease;
}

.sh-service-card:hover .sh-service-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.sh-service-card:hover .sh-service-card-cta svg {
    transform: translateX(4px);
}

/* ---------- 5 Cards Layout Handling ---------- */
/* When 5 cards: first row 3, second row 2 centered */
.sh-services-grid .sh-service-card:nth-last-child(2):nth-child(4),
.sh-services-grid .sh-service-card:nth-last-child(1):nth-child(5) {
    /* Nothing needed — grid auto-places them left. 
       To center last 2, we use justify below */
}

/* Center incomplete last row */
@supports (grid-template-columns: repeat(3, 1fr)) {
    .sh-services-grid {
        justify-items: center;
    }
    
    .sh-services-grid .sh-service-card {
        width: 100%;
    }
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

    .sh-services {
        padding: 72px 0;
    }

    .sh-services-title {
        font-size: 30px;
    }

    .sh-services-subtitle {
        margin-bottom: 40px;
    }

    .sh-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sh-service-card {
        min-height: 300px;
    }

    .sh-service-card-name {
        font-size: 18px;
    }
}

/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {

    .sh-services {
        padding: 56px 0;
    }

    .sh-services-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 16px;
    }

    .sh-services-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .sh-services-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .sh-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sh-service-card {
        min-height: 220px;
        border-radius: 14px;
    }

    .sh-service-card-content {
        padding: 24px 22px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .sh-service-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .sh-service-card-icon i {
        font-size: 16px;
    }

    .sh-service-card-name {
        font-size: 17px;
        flex: 1;
    }

    /* CTA always visible on mobile */
    .sh-service-card-cta {
        opacity: 1;
        transform: translateY(0);
        position: absolute;
        top: 22px;
        right: 22px;
        background: rgba(169, 139, 82, 0.15);
        border: 1px solid rgba(169, 139, 82, 0.25);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 11px;
    }

    /* Image zoom disabled on touch */
    .sh-service-card:hover .sh-service-card-bg {
        transform: none;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .sh-services-title {
        font-size: 23px;
    }

    .sh-service-card {
        min-height: 200px;
    }

    .sh-service-card-content {
        padding: 20px 18px;
    }

    .sh-service-card-name {
        font-size: 15px;
    }

    .sh-service-card-icon {
        width: 36px;
        height: 36px;
    }

    .sh-service-card-icon i {
        font-size: 14px;
    }

    .sh-service-card-cta {
        font-size: 10px;
        padding: 5px 12px;
        top: 16px;
        right: 16px;
    }
}
/* ============================================
   HOME PAGE - SERVICE AREAS (IMAGE CARDS)
   ============================================ */

/* Section Container */
.home-areas-bg {
    position: relative;
    padding: 80px 0;
    background: #0D1529;
    overflow: hidden;
}

/* Section Background Overlay (for the section itself) */
.home-areas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 27, 65, 0.95) 0%, rgba(38, 54, 95, 0.90) 50%, rgba(16, 27, 65, 0.95) 100%);
    z-index: 1;
}

.home-areas-bg .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.home-areas-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-areas-badge {
    display: inline-block;
    background: #A98B52;
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.home-areas-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.home-areas-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   CARDS GRID
   ============================================ */
.home-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Individual Card - Full Card is Link */
.home-areas-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.home-areas-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Bottom Gradient Overlay - ONLY AT BOTTOM (NO OVERLAY ON IMAGE) */
.home-areas-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.60) 30%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Card Hover - Overlay gets darker */
.home-areas-card:hover .home-areas-card-overlay {
    height: 65%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.70) 30%, transparent 100%);
}

/* City Name - Bottom Position */
.home-areas-card-city {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Card Hover - City name moves up slightly */
.home-areas-card:hover .home-areas-card-city {
    transform: translateY(-4px);
    color: #A98B52;
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.home-areas-footer {
    text-align: center;
    margin-top: 44px;
}

.home-areas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #A98B52;
    color: #fff;
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.home-areas-btn:hover {
    background: #9A7A4A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(169, 139, 82, 0.35);
}

/* ============================================
   PLACEHOLDER IMAGE (if no location image)
   ============================================ */
.home-areas-card[style*="placeholder-location.jpg"] {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .home-areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-areas-title {
        font-size: 2rem;
    }

    .home-areas-bg {
        padding: 60px 0;
    }

    .home-areas-card {
        min-height: 180px;
    }

    .home-areas-card-city {
        font-size: 16px;
        bottom: 18px;
        left: 18px;
        right: 18px;
    }
}

@media (max-width: 576px) {
    .home-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-areas-card {
        min-height: 150px;
        border-radius: 12px;
    }

    .home-areas-card-city {
        font-size: 14px;
        bottom: 14px;
        left: 14px;
        right: 14px;
    }

    .home-areas-title {
        font-size: 1.6rem;
    }

    .home-areas-subtitle {
        font-size: 0.95rem;
    }

    .home-areas-bg {
        padding: 40px 0;
    }

    .home-areas-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
    }

    .home-areas-card-overlay {
        height: 60%;
    }

    .home-areas-card:hover .home-areas-card-overlay {
        height: 70%;
    }
}
/* ============================================
   HOME PAGE - CTA SECTION
   ============================================ */

.home-cta {
    background: linear-gradient(135deg, #0D1529 0%, #1a2a4a 50%, #0D1529 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Pattern Overlay */
.home-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(169, 139, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(169, 139, 82, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.home-cta .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.home-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* Subtitle */
.home-cta .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 32px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* Buttons Container */
.home-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Primary Button */
.home-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A98B52;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.home-cta-btn-primary:hover {
    background: #9A7A4A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(169, 139, 82, 0.35);
}

.home-cta-btn-primary i {
    font-size: 18px;
}

/* Secondary Button */
.home-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.home-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.home-cta-btn-secondary i {
    font-size: 16px;
}

/* Contact Info */
.home-cta-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    margin-top: 8px;
}

.home-cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-cta-contact-item i {
    color: #A98B52;
    font-size: 14px;
}

.home-cta-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-cta-contact-item a:hover {
    color: #A98B52;
}

.home-cta-contact-divider {
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .home-cta {
        padding: 60px 0;
    }

    .home-cta h2 {
        font-size: 2.2rem;
    }

    .home-cta .lead {
        font-size: 1.05rem;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .home-cta {
        padding: 48px 0;
    }

    .home-cta h2 {
        font-size: 1.8rem;
    }

    .home-cta .lead {
        font-size: 1rem;
        padding: 0 12px;
        margin-bottom: 24px;
    }

    .home-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .home-cta-btn-primary,
    .home-cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .home-cta-contact {
        font-size: 13px;
        flex-direction: column;
        gap: 6px;
    }

    .home-cta-contact-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .home-cta {
        padding: 40px 0;
    }

    .home-cta h2 {
        font-size: 1.5rem;
    }

    .home-cta .lead {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .home-cta-btn-primary,
    .home-cta-btn-secondary {
        max-width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .home-cta-contact {
        font-size: 12px;
    }
}
/* ============================================
   ABOUT PAGE - HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Background Image */
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease;
    z-index: 0;
}

.about-hero:hover .about-hero-bg {
    transform: scale(1.05);
}

/* Gradient Overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(16, 27, 65, 0.92) 0%, 
        rgba(16, 27, 65, 0.75) 40%, 
        rgba(38, 54, 95, 0.60) 100%
    );
    z-index: 1;
}

/* Container Overlay */
.about-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}

.about-hero-breadcrumb li {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.3);
}

.about-hero-breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero-breadcrumb li a:hover {
    color: #A98B52;
}

.about-hero-breadcrumb li.active {
    color: #A98B52;
}

/* ============================================
   BADGE
   ============================================ */
.about-hero-badge {
    display: inline-block;
    background: #A98B52;
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   TITLE
   ============================================ */
.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* ============================================
   SUBTITLE
   ============================================ */
.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #A98B52;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.about-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   STATS
   ============================================ */
.about-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
}

.about-hero-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A98B52;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: none;
}

.about-hero-btn:hover {
    background: #9A7A4A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(169, 139, 82, 0.35);
}

.about-hero-btn i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.about-hero-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-hero {
        padding: 60px 0 80px;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.15rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .about-hero-stats {
        gap: 28px;
    }

    .about-hero-stat-number {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0 60px;
        min-height: 350px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-text {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .about-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .about-hero-stat-number {
        font-size: 20px;
    }

    .about-hero-stat-label {
        font-size: 12px;
    }

    .about-hero-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0 50px;
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-hero-text {
        font-size: 0.9rem;
    }

    .about-hero-badge {
        font-size: 10px;
        padding: 4px 18px;
    }

    .about-hero-breadcrumb li {
        font-size: 12px;
    }

    .about-hero-stats {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero-stat {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .about-hero-stat-number {
        font-size: 18px;
    }
}

/* ============================================
   ABOUT PAGE - STORY SECTION WITH IMAGE
   ============================================ */

.about-story {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.about-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   BADGE
   ============================================ */
.about-story-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   TITLE
   ============================================ */
.about-story-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.about-story-description {
    font-size: 1.05rem;
    color: #68717F;
    line-height: 1.8;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    max-width: 540px;
}

/* ============================================
   TIMELINE ITEMS
   ============================================ */
.about-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-story-item {
    display: flex;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-left: 3px solid transparent;
    position: relative;
}

.about-story-item:hover {
    background: #F5F6F8;
    border-left-color: #A98B52;
    transform: translateX(6px);
}

/* Item Number */
.about-story-item-number {
    font-size: 28px;
    font-weight: 900;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-story-item:hover .about-story-item-number {
    opacity: 1;
}

/* Item Content */
.about-story-item-content {
    flex: 1;
}

.about-story-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #101B41;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.about-story-item-title span {
    font-weight: 500;
    color: #A98B52;
    font-size: 14px;
}

.about-story-item-text {
    font-size: 14px;
    color: #68717F;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   IMAGE WRAPPER
   ============================================ */
.about-story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(16, 27, 65, 0.12);
}

/* Main Image */
.about-story-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-story-image-wrapper:hover .about-story-image {
    transform: scale(1.03);
}

/* ============================================
   STATS OVERLAY
   ============================================ */
.about-story-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(to top, 
        rgba(16, 27, 65, 0.92) 0%, 
        rgba(16, 27, 65, 0.70) 40%, 
        transparent 100%
    );
    pointer-events: none;
}

/* Stats Grid */
.about-story-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    pointer-events: auto;
}

/* Individual Stat */
.about-story-stat {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-story-stat:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(169, 139, 82, 0.3);
}

.about-story-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.about-story-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-story {
        padding: 60px 0;
    }

    .about-story-title {
        font-size: 2.2rem;
    }

    .about-story-image {
        height: 400px;
    }

    .about-story-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .about-story-stat-number {
        font-size: 20px;
    }

    .about-story-stat-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 48px 0;
    }

    .about-story-title {
        font-size: 1.8rem;
    }

    .about-story-description {
        font-size: 0.95rem;
    }

    .about-story-item {
        padding: 12px 16px;
    }

    .about-story-item-number {
        font-size: 22px;
        width: 36px;
    }

    .about-story-item-title {
        font-size: 14px;
    }

    .about-story-item-title span {
        font-size: 12px;
    }

    .about-story-item-text {
        font-size: 13px;
    }

    .about-story-image {
        height: 350px;
    }

    .about-story-stats-overlay {
        padding: 20px 16px 16px;
    }

    .about-story-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-story-stat {
        padding: 12px 10px;
    }

    .about-story-stat-number {
        font-size: 18px;
    }

    .about-story-stat-label {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .about-story {
        padding: 32px 0;
    }

    .about-story-title {
        font-size: 1.5rem;
    }

    .about-story-description {
        font-size: 0.9rem;
    }

    .about-story-timeline {
        gap: 12px;
    }

    .about-story-item {
        padding: 10px 14px;
        flex-direction: column;
        gap: 4px;
    }

    .about-story-item-number {
        font-size: 18px;
        width: auto;
        text-align: left;
        opacity: 0.7;
    }

    .about-story-item-title {
        font-size: 13px;
    }

    .about-story-item-text {
        font-size: 12px;
    }

    .about-story-image {
        height: 280px;
    }

    .about-story-stats-overlay {
        padding: 16px 12px 12px;
    }

    .about-story-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .about-story-stat {
        padding: 10px 8px;
        border-radius: 8px;
    }

    .about-story-stat-number {
        font-size: 16px;
    }

    .about-story-stat-label {
        font-size: 9px;
    }
}
/* ============================================
   ABOUT PAGE - TEAM SECTION
   ============================================ */

.about-team {
    padding: 80px 0;
    background: #F5F6F8;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.about-team::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-team::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 27, 65, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.about-team-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.about-team-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-team-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.about-team-subtitle {
    font-size: 1.05rem;
    color: #68717F;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   TEAM GRID
   ============================================ */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   TEAM CARD
   ============================================ */
.about-team-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16, 27, 65, 0.04);
    box-shadow: 0 2px 12px rgba(16, 27, 65, 0.04);
    position: relative;
    overflow: hidden;
}

/* Card Hover Effects */
.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(16, 27, 65, 0.08);
    border-color: rgba(169, 139, 82, 0.15);
}

/* Card Glow Effect */
.about-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #A98B52, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-team-card:hover::before {
    opacity: 1;
}

/* Card Inner */
.about-team-card-inner {
    position: relative;
    z-index: 1;
}

/* ============================================
   ICON
   ============================================ */
.about-team-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F5F6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 32px;
    color: #101B41;
}

.about-team-card:hover .about-team-icon {
    background: #101B41;
    color: #A98B52;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(16, 27, 65, 0.15);
}

.about-team-icon i {
    font-size: 32px;
}

/* ============================================
   NAME
   ============================================ */
.about-team-name {
    font-size: 17px;
    font-weight: 700;
    color: #101B41;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

/* ============================================
   ROLE
   ============================================ */
.about-team-role {
    font-size: 13.5px;
    color: #68717F;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    min-height: 60px;
}

/* ============================================
   LINE
   ============================================ */
.about-team-line {
    width: 32px;
    height: 2px;
    background: #E9EDF5;
    margin: 0 auto 12px;
    transition: all 0.4s ease;
}

.about-team-card:hover .about-team-line {
    width: 48px;
    background: #A98B52;
}

/* ============================================
   TAG
   ============================================ */
.about-team-tag {
    display: inline-block;
    background: #E9EDF5;
    color: #101B41;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
}

.about-team-card:hover .about-team-tag {
    background: #101B41;
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-team-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-team {
        padding: 60px 0;
    }

    .about-team-title {
        font-size: 1.8rem;
    }

    .about-team-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .about-team-grid {
        gap: 16px;
    }

    .about-team-card {
        padding: 24px 16px 20px;
    }

    .about-team-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .about-team-icon i {
        font-size: 26px;
    }

    .about-team-name {
        font-size: 15px;
    }

    .about-team-role {
        font-size: 12.5px;
        min-height: 50px;
    }
}

@media (max-width: 576px) {
    .about-team {
        padding: 40px 0;
    }

    .about-team-title {
        font-size: 1.5rem;
    }

    .about-team-subtitle {
        font-size: 0.9rem;
    }

    .about-team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-team-card {
        padding: 20px 12px 16px;
        border-radius: 12px;
    }

    .about-team-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-team-icon i {
        font-size: 22px;
    }

    .about-team-name {
        font-size: 13px;
    }

    .about-team-role {
        font-size: 11px;
        min-height: 40px;
        margin-bottom: 12px;
    }

    .about-team-line {
        width: 24px;
        margin-bottom: 8px;
    }

    .about-team-tag {
        font-size: 9px;
        padding: 2px 12px;
    }

    .about-team-card:hover .about-team-line {
        width: 32px;
    }
}

/* ============================================
   ABOUT PAGE - AWARDS SECTION
   ============================================ */

.about-awards {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.about-awards::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   BADGE
   ============================================ */
.about-awards-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   TITLE
   ============================================ */
.about-awards-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* ============================================
   AWARDS GRID
   ============================================ */
.about-awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   AWARD ITEM
   ============================================ */
.about-awards-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: #F5F6F8;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.about-awards-item:hover {
    background: #FFFFFF;
    border-color: rgba(169, 139, 82, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 27, 65, 0.06);
}

/* Icon */
.about-awards-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(169, 139, 82, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-awards-item:hover .about-awards-icon {
    background: #101B41;
    transform: scale(1.05) rotate(-5deg);
}

.about-awards-icon i {
    font-size: 18px;
    color: #A98B52;
    transition: all 0.4s ease;
}

.about-awards-item:hover .about-awards-icon i {
    color: #FFFFFF;
}

/* Content */
.about-awards-content {
    flex: 1;
}

.about-awards-name {
    font-size: 14px;
    font-weight: 700;
    color: #101B41;
    margin: 0 0 2px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.about-awards-detail {
    font-size: 12.5px;
    color: #68717F;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   CREDENTIALS BOX
   ============================================ */
.about-awards-box {
    background: linear-gradient(145deg, #101B41 0%, #1a2a5a 100%);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(16, 27, 65, 0.15);
}

/* Box Decorative Element */
.about-awards-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-awards-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Box Header */
.about-awards-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.about-awards-box-icon {
    width: 48px;
    height: 48px;
    background: rgba(169, 139, 82, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-awards-box-icon i {
    font-size: 22px;
    color: #A98B52;
}

.about-awards-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

/* Credentials List */
.about-awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-awards-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.about-awards-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-awards-list-item:hover {
    padding-left: 6px;
}

/* Check Icon */
.about-awards-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-awards-check i {
    font-size: 16px;
    color: #A98B52;
}

/* List Text */
.about-awards-list-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-awards {
        padding: 60px 0;
    }

    .about-awards-title {
        font-size: 2.2rem;
    }

    .about-awards-box {
        padding: 32px 28px;
        margin-top: 16px;
    }

    .about-awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .about-awards {
        padding: 48px 0;
    }

    .about-awards-title {
        font-size: 1.8rem;
    }

    .about-awards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-awards-item {
        padding: 14px 16px;
    }

    .about-awards-name {
        font-size: 13px;
    }

    .about-awards-detail {
        font-size: 12px;
    }

    .about-awards-box {
        padding: 28px 20px;
    }

    .about-awards-box-title {
        font-size: 16px;
    }

    .about-awards-list-text {
        font-size: 13.5px;
    }
}

@media (max-width: 576px) {
    .about-awards {
        padding: 32px 0;
    }

    .about-awards-title {
        font-size: 1.5rem;
    }

    .about-awards-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .about-awards-icon {
        width: 36px;
        height: 36px;
    }

    .about-awards-icon i {
        font-size: 15px;
    }

    .about-awards-name {
        font-size: 12px;
    }

    .about-awards-detail {
        font-size: 11px;
    }

    .about-awards-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .about-awards-box-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .about-awards-box-icon {
        width: 40px;
        height: 40px;
    }

    .about-awards-box-icon i {
        font-size: 18px;
    }

    .about-awards-box-title {
        font-size: 14px;
    }

    .about-awards-list-item {
        padding: 10px 0;
        gap: 10px;
    }

    .about-awards-list-text {
        font-size: 12.5px;
    }

    .about-awards-check i {
        font-size: 14px;
    }
}
/* ============================================
   ABOUT PAGE - COMMITMENT SECTION
   ============================================ */

.about-commitment {
    padding: 80px 0;
    background: #F5F6F8;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.about-commitment::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-commitment::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 27, 65, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.about-commitment-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.about-commitment-badge {
    display: inline-block;
    background: #198754;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-commitment-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.about-commitment-subtitle {
    font-size: 1.05rem;
    color: #68717F;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   COMMITMENT GRID
   ============================================ */
.about-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   COMMITMENT CARD
   ============================================ */
.about-commitment-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 24px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16, 27, 65, 0.04);
    box-shadow: 0 2px 12px rgba(16, 27, 65, 0.04);
    position: relative;
    overflow: hidden;
}

/* Card Hover */
.about-commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(16, 27, 65, 0.10);
    border-color: rgba(198, 88, 89, 0.10);
}

/* Card Top Border Accent */
.about-commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #198754, #2ecc71, #198754);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-commitment-card:hover::before {
    opacity: 1;
}

/* Card Inner */
.about-commitment-card-inner {
    position: relative;
    z-index: 1;
}

/* ============================================
   ICON
   ============================================ */
.about-commitment-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 28px;
    color: #198754;
}

.about-commitment-card:hover .about-commitment-icon {
    background: #198754;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(25, 135, 84, 0.25);
}

.about-commitment-icon i {
    font-size: 28px;
    transition: all 0.4s ease;
}

/* ============================================
   NAME
   ============================================ */
.about-commitment-name {
    font-size: 17px;
    font-weight: 700;
    color: #101B41;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

/* ============================================
   TEXT
   ============================================ */
.about-commitment-text {
    font-size: 13.5px;
    color: #68717F;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   NUMBER (Decorative)
   ============================================ */
.about-commitment-number {
    position: absolute;
    bottom: 8px;
    right: 14px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(25, 135, 84, 0.04);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-commitment-card:hover .about-commitment-number {
    color: rgba(25, 135, 84, 0.10);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-commitment-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-commitment {
        padding: 60px 0;
    }

    .about-commitment-title {
        font-size: 1.8rem;
    }

    .about-commitment-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .about-commitment-grid {
        gap: 16px;
    }

    .about-commitment-card {
        padding: 24px 16px 20px;
    }

    .about-commitment-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .about-commitment-icon i {
        font-size: 24px;
    }

    .about-commitment-name {
        font-size: 15px;
    }

    .about-commitment-text {
        font-size: 12.5px;
    }

    .about-commitment-number {
        font-size: 36px;
        bottom: 6px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .about-commitment {
        padding: 40px 0;
    }

    .about-commitment-title {
        font-size: 1.5rem;
    }

    .about-commitment-subtitle {
        font-size: 0.9rem;
    }

    .about-commitment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-commitment-card {
        padding: 20px 12px 16px;
        border-radius: 12px;
    }

    .about-commitment-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-commitment-icon i {
        font-size: 20px;
    }

    .about-commitment-name {
        font-size: 13px;
    }

    .about-commitment-text {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .about-commitment-number {
        font-size: 28px;
        bottom: 4px;
        right: 8px;
    }
}
/* ============================================
   ABOUT PAGE - FAQ SECTION
   ============================================ */

.about-faq {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.about-faq::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.about-faq-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.about-faq-badge {
    display: inline-block;
    background: #101B41;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.about-faq-subtitle {
    font-size: 1.05rem;
    color: #68717F;
    max-width: 550px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   FAQ WRAPPER
   ============================================ */
.about-faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.about-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   FAQ ITEM
   ============================================ */
.about-faq-item {
    background: #F5F6F8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.about-faq-item:hover {
    border-color: rgba(169, 139, 82, 0.10);
}

.about-faq-item.active {
    border-color: rgba(169, 139, 82, 0.15);
    box-shadow: 0 4px 20px rgba(16, 27, 65, 0.04);
}

/* ============================================
   FAQ QUESTION
   ============================================ */
.about-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    gap: 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.about-faq-question:hover {
    background: rgba(169, 139, 82, 0.04);
}

.about-faq-question-text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #101B41;
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.about-faq-number {
    font-size: 14px;
    font-weight: 700;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    min-width: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-faq-question:hover .about-faq-number {
    opacity: 1;
}

.about-faq-item.active .about-faq-number {
    opacity: 1;
}

/* ============================================
   FAQ ICON
   ============================================ */
.about-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(169, 139, 82, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-faq-icon i {
    font-size: 16px;
    color: #A98B52;
    transition: all 0.4s ease;
}

.about-faq-question:hover .about-faq-icon {
    background: rgba(169, 139, 82, 0.15);
}

.about-faq-item.active .about-faq-icon {
    background: #A98B52;
    transform: rotate(45deg);
}

.about-faq-item.active .about-faq-icon i {
    color: #FFFFFF;
}

/* ============================================
   FAQ ANSWER
   ============================================ */
.about-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-faq-answer.show {
    max-height: 300px;
}

.about-faq-answer-inner {
    padding: 0 24px 24px 72px;
    font-size: 15px;
    color: #68717F;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.about-faq-answer-inner p {
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .about-faq {
        padding: 60px 0;
    }

    .about-faq-title {
        font-size: 2rem;
    }

    .about-faq-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .about-faq-question {
        padding: 16px 18px;
    }

    .about-faq-question-text {
        font-size: 14px;
        gap: 10px;
    }

    .about-faq-number {
        font-size: 12px;
        min-width: 28px;
    }

    .about-faq-icon {
        width: 28px;
        height: 28px;
    }

    .about-faq-icon i {
        font-size: 14px;
    }

    .about-faq-answer-inner {
        padding: 0 18px 18px 56px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-faq {
        padding: 40px 0;
    }

    .about-faq-title {
        font-size: 1.5rem;
    }

    .about-faq-subtitle {
        font-size: 0.9rem;
    }

    .about-faq-wrapper {
        padding: 0 4px;
    }

    .about-faq-accordion {
        gap: 8px;
    }

    .about-faq-question {
        padding: 14px 14px;
    }

    .about-faq-question-text {
        font-size: 13px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .about-faq-number {
        font-size: 11px;
        min-width: 24px;
    }

    .about-faq-icon {
        width: 24px;
        height: 24px;
    }

    .about-faq-icon i {
        font-size: 12px;
    }

    .about-faq-answer-inner {
        padding: 0 14px 14px 42px;
        font-size: 13px;
    }
}
/* ============================================
   ABOUT PAGE - CTA SECTION
   ============================================ */

.about-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1529 0%, #1a2a5a 40%, #0D1529 100%);
    overflow: hidden;
}

/* Animated Background Pattern */
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(169, 139, 82, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(169, 139, 82, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative Line Elements */
.about-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(169, 139, 82, 0.3) 20%, 
        #A98B52 50%, 
        rgba(169, 139, 82, 0.3) 80%, 
        transparent 100%
    );
    z-index: 0;
}

/* Overlay (if needed for additional effects) */
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(169, 139, 82, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(169, 139, 82, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Content */
.about-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BADGE
   ============================================ */
.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(169, 139, 82, 0.12);
    color: #A98B52;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(169, 139, 82, 0.08);
}

.about-cta-badge i {
    font-size: 14px;
}

/* ============================================
   TITLE
   ============================================ */
.about-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* ============================================
   SUBTITLE
   ============================================ */
.about-cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Primary Button */
.about-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A98B52;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Button Shine Effect */
.about-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.about-cta-btn-primary:hover::before {
    left: 100%;
}

.about-cta-btn-primary:hover {
    background: #9A7A4A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(169, 139, 82, 0.35);
}

/* Button Arrow Icon */
.about-cta-btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.about-cta-btn-primary:hover .about-cta-btn-arrow {
    transform: translateX(6px);
}

.about-cta-btn-primary i {
    font-size: 18px;
}

/* Secondary Button */
.about-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.about-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-cta-btn-secondary i {
    font-size: 18px;
    color: #A98B52;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-cta {
        padding: 60px 0;
    }

    .about-cta-title {
        font-size: 2.2rem;
    }

    .about-cta-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-cta {
        padding: 48px 0;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-cta-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .about-cta-btn-primary,
    .about-cta-btn-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .about-cta-btn-primary i,
    .about-cta-btn-secondary i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-cta {
        padding: 40px 0;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-cta-subtitle {
        font-size: 0.95rem;
    }

    .about-cta-badge {
        font-size: 10px;
        padding: 4px 16px;
    }

    .about-cta-btn-primary,
    .about-cta-btn-secondary {
        max-width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .about-cta-btn-primary i,
    .about-cta-btn-secondary i {
        font-size: 14px;
    }
}




/* ============================================
   HOME PAGE - AWARDS & CREDENTIALS
   ============================================ */

.home-awards {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1529 0%, #1a2a5a 40%, #101B41 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.home-awards::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(169, 139, 82, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(169, 139, 82, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle Grid Pattern */
.home-awards::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.home-awards .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.home-awards-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-awards-badge {
    display: inline-block;
    background: rgba(169, 139, 82, 0.15);
    color: #A98B52;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(169, 139, 82, 0.1);
}

.home-awards-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.home-awards-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   AWARDS GRID
   ============================================ */
.home-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   AWARD CARD
   ============================================ */
.home-awards-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
}

/* Card Hover Effect */
.home-awards-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(169, 139, 82, 0.2);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.3);
}

/* Card Glow Effect */
.home-awards-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(169, 139, 82, 0.10), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-awards-card:hover::before {
    opacity: 1;
}

/* Card Inner */
.home-awards-card-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   ICON
   ============================================ */
.home-awards-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(169, 139, 82, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    font-size: 32px;
    color: #A98B52;
    border: 1px solid rgba(169, 139, 82, 0.08);
}

.home-awards-card:hover .home-awards-icon {
    background: rgba(169, 139, 82, 0.20);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 40px rgba(169, 139, 82, 0.15);
}

/* ============================================
   CONTENT
   ============================================ */
.home-awards-content {
    width: 100%;
}

.home-awards-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.home-awards-title-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.home-awards-source {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   CORNER DECORATION
   ============================================ */
.home-awards-corner {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 28px;
    opacity: 0.08;
    transform: rotate(12deg);
    transition: all 0.4s ease;
    pointer-events: none;
}

.home-awards-card:hover .home-awards-corner {
    opacity: 0.15;
    transform: rotate(0deg) scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .home-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-awards-title {
        font-size: 2.2rem;
    }

    .home-awards-card {
        min-height: 200px;
        padding: 28px 20px 24px;
    }

    .home-awards-number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .home-awards {
        padding: 60px 0;
    }

    .home-awards-title {
        font-size: 1.8rem;
    }

    .home-awards-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .home-awards-grid {
        gap: 16px;
    }

    .home-awards-card {
        min-height: 180px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .home-awards-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .home-awards-number {
        font-size: 24px;
    }

    .home-awards-title-text {
        font-size: 14px;
    }

    .home-awards-source {
        font-size: 12px;
    }

    .home-awards-corner {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home-awards {
        padding: 40px 0;
    }

    .home-awards-title {
        font-size: 1.5rem;
    }

    .home-awards-subtitle {
        font-size: 0.9rem;
    }

    .home-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-awards-card {
        min-height: 160px;
        padding: 16px 12px;
        border-radius: 14px;
    }

    .home-awards-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .home-awards-number {
        font-size: 20px;
    }

    .home-awards-title-text {
        font-size: 12px;
    }

    .home-awards-source {
        font-size: 10px;
    }

    .home-awards-corner {
        font-size: 16px;
        top: -4px;
        right: -4px;
    }
}

@media (max-width: 400px) {
    .home-awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-awards-card {
        min-height: 140px;
        padding: 12px 10px;
        border-radius: 12px;
    }

    .home-awards-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .home-awards-number {
        font-size: 18px;
    }

    .home-awards-title-text {
        font-size: 11px;
    }

    .home-awards-source {
        font-size: 9px;
    }
}





/* ============================================
   CHATBOT WIDGET — Steve Hill Homes
   Premium Design System
   ============================================ */

#chatbot-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   TOGGLE BUTTON
   ============================================ */
.chat-toggle-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #101B41 0%, #1a2a5c 100%);
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    box-shadow:
        0 4px 20px rgba(16, 27, 65, 0.35),
        0 0 0 0 rgba(169, 139, 82, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.chat-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 8px 32px rgba(16, 27, 65, 0.45),
        0 0 0 4px rgba(169, 139, 82, 0.15);
}

.chat-toggle-btn:active {
    transform: scale(0.95);
}

/* Toggle icon switching */
.chat-toggle-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-toggle-icon svg {
    stroke: #FFFFFF;
}

.chat-toggle-icon-chat {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.chat-toggle-icon-close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.chat-toggle-btn.active .chat-toggle-icon-chat {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.chat-toggle-btn.active .chat-toggle-icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Pulse ring */
.chat-toggle-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(169, 139, 82, 0.4);
    animation: chatPulseRing 2.5s ease-out infinite;
    pointer-events: none;
}

.chat-toggle-btn.active .chat-toggle-pulse {
    display: none;
}

@keyframes chatPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Badge */
.chat-toggle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #A98B52;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #FFFFFF;
    box-shadow: 0 2px 10px rgba(169, 139, 82, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle-badge.show {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   CHAT BOX
   ============================================ */
.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 390px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow:
        0 20px 72px rgba(16, 27, 65, 0.18),
        0 0 0 1px rgba(16, 27, 65, 0.04);
    overflow: hidden;
    display: none;
    animation: chatBoxOpen 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.chat-box.open {
    display: flex;
    flex-direction: column;
}

@keyframes chatBoxOpen {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   CHAT HEADER
   ============================================ */
.chat-header {
    background: linear-gradient(135deg, #101B41 0%, #1a2a5c 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow */
.chat-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(169, 139, 82, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

/* Avatar */
.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(169, 139, 82, 0.12);
    border: 1.5px solid rgba(169, 139, 82, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.chat-avatar svg {
    stroke: #A98B52;
}

.chat-avatar-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2.5px solid #101B41;
}

/* Header Info */
.chat-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-header-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.2px;
}

.chat-header-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

/* Header Actions */
.chat-header-actions {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.chat-header-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-btn svg {
    stroke: currentColor;
}

.chat-header-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

/* ============================================
   CHAT MESSAGES
   ============================================ */
.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: #F8F9FB;
    scroll-behavior: smooth;
}

/* Scrollbar */
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: #E0E3EA; border-radius: 4px; }
.chat-messages::-webkit-scrollbar-thumb:hover { background: #A98B52; }

/* Message */
.chat-message {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: chatMsgIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chatMsgIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }

/* Bot mini avatar */
.chat-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(16, 27, 65, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(16, 27, 65, 0.04);
}

.chat-msg-avatar svg {
    stroke: #A98B52;
    width: 14px;
    height: 14px;
}

.chat-message.user .chat-msg-avatar {
    display: none;
}

/* Bubbles */
.chat-message .bubble {
    max-width: 78%;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.65;
    word-wrap: break-word;
    position: relative;
}

.chat-message.bot .bubble {
    background: #FFFFFF;
    color: #252A32;
    border-radius: 14px 14px 14px 4px;
    box-shadow: 0 2px 8px rgba(16, 27, 65, 0.05);
    border: 1px solid rgba(16, 27, 65, 0.04);
}

.chat-message.user .bubble {
    background: linear-gradient(135deg, #101B41, #1a2a5c);
    color: #FFFFFF;
    border-radius: 14px 14px 4px 14px;
}

/* Bubble links */
.chat-message.bot .bubble a {
    color: #A98B52;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(169, 139, 82, 0.3);
    text-underline-offset: 2px;
}

.chat-message.bot .bubble a:hover {
    color: #101B41;
    text-decoration-color: #101B41;
}

/* Timestamp */
.chat-message .message-time {
    font-size: 10px;
    color: rgba(104, 113, 127, 0.45);
    margin-top: 5px;
    display: block;
}

.chat-message.user .message-time {
    text-align: right;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   TYPING INDICATOR
   ============================================ */
.chat-typing {
    display: none;
    padding: 10px 20px 14px;
    background: #F8F9FB;
    align-items: center;
    gap: 10px;
}

.chat-typing.show { display: flex; }

.chat-typing-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(16, 27, 65, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-typing-avatar svg {
    stroke: #A98B52;
}

.chat-typing-bubble {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    background: #FFFFFF;
    border-radius: 14px 14px 14px 4px;
    box-shadow: 0 2px 8px rgba(16, 27, 65, 0.04);
    border: 1px solid rgba(16, 27, 65, 0.04);
}

.chat-typing-bubble span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A98B52;
    animation: chatTypeDot 1.4s ease-in-out infinite;
}

.chat-typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-bubble span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatTypeDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* ============================================
   QUICK REPLIES
   ============================================ */
.chat-quick-replies {
    display: flex;
    gap: 8px;
    padding: 0 20px 14px;
    background: #F8F9FB;
    flex-wrap: wrap;
}

.chat-quick-btn {
    padding: 7px 16px;
    background: #FFFFFF;
    border: 1.5px solid rgba(169, 139, 82, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #A98B52;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.chat-quick-btn:hover {
    background: #A98B52;
    border-color: #A98B52;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(169, 139, 82, 0.2);
}

.chat-quick-btn:active {
    transform: translateY(0);
}

/* ============================================
   CHAT INPUT
   ============================================ */
.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #FFFFFF;
    border-top: 1px solid rgba(16, 27, 65, 0.06);
}

.chat-input {
    flex: 1;
    border: 1.5px solid rgba(16, 27, 65, 0.08);
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #F8F9FB;
    color: #252A32;
    outline: none;
}

.chat-input:focus {
    border-color: rgba(169, 139, 82, 0.4);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(169, 139, 82, 0.08);
}

.chat-input::placeholder {
    color: #68717F;
    opacity: 0.5;
}

.chat-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: rgba(16, 27, 65, 0.06);
    color: rgba(16, 27, 65, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-send-btn svg {
    stroke: currentColor;
    transition: transform 0.25s ease;
}

/* Send button active state (when input has text) */
.chat-send-btn.has-text {
    background: linear-gradient(135deg, #101B41, #1a2a5c);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(16, 27, 65, 0.2);
}

.chat-send-btn.has-text:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(16, 27, 65, 0.3);
}

.chat-send-btn.has-text:hover svg {
    transform: translate(2px, -2px);
}

.chat-send-btn.has-text:active {
    transform: scale(0.94);
}

.chat-send-btn:disabled {
    cursor: default;
}

/* ============================================
   POWERED BY
   ============================================ */
.chat-powered {
    text-align: center;
    padding: 8px 16px 10px;
    background: #FFFFFF;
    font-size: 10px;
    color: rgba(104, 113, 127, 0.4);
    border-top: 1px solid rgba(16, 27, 65, 0.03);
}

.chat-powered a {
    color: #A98B52;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.chat-powered a:hover {
    color: #101B41;
}

/* ============================================
   MOBILE — max-width: 576px
   ============================================ */
@media (max-width: 576px) {

    #chatbot-widget {
        bottom: 18px;
        right: 18px;
    }

    .chat-toggle-btn {
        width: 54px;
        height: 54px;
    }

    .chat-toggle-icon-chat svg { width: 22px; height: 22px; }
    .chat-toggle-icon-close svg { width: 18px; height: 18px; }

    .chat-box {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
        animation: chatBoxOpenMobile 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-origin: bottom center;
    }

    @keyframes chatBoxOpenMobile {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .chat-header {
        padding: 16px 18px;
        border-radius: 20px 20px 0 0;
    }

    .chat-avatar {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .chat-avatar svg { width: 17px; height: 17px; }

    .chat-header-title { font-size: 14px; }
    .chat-header-status { font-size: 10px; }

    .chat-messages {
        height: calc(85vh - 260px);
        min-height: 200px;
        padding: 16px;
    }

    .chat-message .bubble {
        font-size: 13px;
        padding: 10px 14px;
        max-width: 84%;
    }

    .chat-msg-avatar {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .chat-msg-avatar svg { width: 12px; height: 12px; }

    .chat-quick-replies {
        padding: 0 16px 12px;
    }

    .chat-quick-btn {
        font-size: 11px;
        padding: 6px 14px;
    }

    .chat-input-wrapper {
        padding: 12px 14px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .chat-input {
        font-size: 13px;
        padding: 10px 16px;
    }

    .chat-send-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .chat-send-btn svg { width: 16px; height: 16px; }

    .chat-typing { padding: 8px 16px 12px; }
    .chat-typing-avatar { width: 24px; height: 24px; }
    .chat-typing-avatar svg { width: 10px; height: 10px; }
    .chat-typing-bubble { padding: 8px 14px; }
    .chat-typing-bubble span { width: 6px; height: 6px; }

    .chat-powered { padding: 6px 12px 8px; font-size: 9px; }
}

/* ============================================
   VERY SMALL MOBILE — max-width: 374px
   ============================================ */
@media (max-width: 374px) {

    .chat-toggle-btn {
        width: 48px;
        height: 48px;
    }

    .chat-toggle-icon-chat svg { width: 20px; height: 20px; }

    .chat-messages {
        height: calc(85vh - 240px);
        min-height: 160px;
        padding: 12px;
    }

    .chat-message .bubble {
        font-size: 12.5px;
        padding: 8px 12px;
    }

    .chat-input { font-size: 12.5px; padding: 9px 14px; }
    .chat-send-btn { width: 36px; height: 36px; }

    .chat-quick-btn { font-size: 10.5px; padding: 5px 12px; }
}

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .chat-box { animation: none !important; }
    .chat-message { animation: none !important; }
    .chat-toggle-btn { transition: none !important; }
    .chat-toggle-icon { transition: none !important; }
    .chat-toggle-pulse { animation: none !important; display: none !important; }
    .chat-toggle-badge { transition: none !important; }
    .chat-typing-bubble span { animation: none !important; opacity: 0.5 !important; }
    .chat-quick-btn { transition: none !important; }
    .chat-header-btn:hover { transform: none !important; }
}

/* ============================================
   BEFORE & AFTER - SPLIT LAYOUT
   ============================================ */

.home-ba {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* ============================================
   WRAPPER
   ============================================ */
.home-ba-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ============================================
   LEFT COLUMN - CONTENT
   ============================================ */
.home-ba-content {
    flex: 0 0 42%;
    max-width: 42%;
}

.home-ba-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.home-ba-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.15;
}

.home-ba-text {
    font-size: 1.05rem;
    color: #68717F;
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.home-ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101B41;
    color: #FFFFFF;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: none;
}

.home-ba-btn:hover {
    background: #26365F;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16, 27, 65, 0.25);
}

.home-ba-btn i {
    transition: transform 0.3s ease;
}

.home-ba-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RIGHT COLUMN - SLIDER
   ============================================ */
.home-ba-slider-wrapper {
    flex: 1;
    background: #F5F6F8;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 48px rgba(16, 27, 65, 0.06);
    border: 1px solid rgba(16, 27, 65, 0.04);
}

.home-ba-slider {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.home-ba-slider:active {
    cursor: grabbing;
}

/* Images */
.home-ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-ba-image.after {
    z-index: 1;
}

.home-ba-image.before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip 0.05s ease;
}

/* ============================================
   HANDLE
   ============================================ */
.home-ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #FFFFFF;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.home-ba-handle-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 3px solid #A98B52;
}

.home-ba-handle-circle svg {
    stroke: #101B41;
    width: 20px;
    height: 20px;
}

.home-ba-handle:hover .home-ba-handle-circle {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   LABELS
   ============================================ */
.home-ba-label {
    position: absolute;
    bottom: 20px;
    padding: 5px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}

.home-ba-label.before-label {
    left: 20px;
    background: rgba(255, 193, 7, 0.92);
    color: #000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.home-ba-label.after-label {
    right: 20px;
    background: rgba(25, 135, 84, 0.92);
    color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PROJECT DESC
   ============================================ */
.home-ba-desc {
    text-align: center;
    font-size: 14px;
    color: #68717F;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 12px 0 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .home-ba {
        padding: 60px 0;
    }
    .home-ba-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .home-ba-content {
        flex: 1;
        max-width: 100%;
        text-align: center;
    }
    .home-ba-title {
        font-size: 2.2rem;
    }
    .home-ba-text {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .home-ba-slider-wrapper {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .home-ba {
        padding: 50px 0;
    }
    .home-ba-title {
        font-size: 1.8rem;
    }
    .home-ba-text {
        font-size: 0.95rem;
    }
    .home-ba-slider-wrapper {
        padding: 10px;
        border-radius: 14px;
    }
    .home-ba-handle-circle {
        width: 38px;
        height: 38px;
    }
    .home-ba-handle-circle svg {
        width: 16px;
        height: 16px;
    }
    .home-ba-label {
        font-size: 10px;
        padding: 4px 14px;
        bottom: 14px;
    }
    .home-ba-label.before-label {
        left: 14px;
    }
    .home-ba-label.after-label {
        right: 14px;
    }
    .home-ba-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .home-ba {
        padding: 40px 0;
    }
    .home-ba-title {
        font-size: 1.5rem;
    }
    .home-ba-text {
        font-size: 0.9rem;
    }
    .home-ba-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    .home-ba-slider-wrapper {
        padding: 6px;
        border-radius: 12px;
        margin: 0 4px;
    }
    .home-ba-handle-circle {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    .home-ba-handle-circle svg {
        width: 12px;
        height: 12px;
    }
    .home-ba-label {
        font-size: 9px;
        padding: 3px 10px;
        bottom: 10px;
    }
    .home-ba-label.before-label {
        left: 10px;
    }
    .home-ba-label.after-label {
        right: 10px;
    }
    .home-ba-desc {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .home-ba-handle-circle {
        width: 24px;
        height: 24px;
    }
    .home-ba-handle-circle svg {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   BEFORE & AFTER - SPLIT LAYOUT (FIXED)
   ============================================ */

.home-ba-slider {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

/* IMAGES - BOTH ABSOLUTE */
.home-ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AFTER - Base layer (visible) */
.home-ba-image.after {
    z-index: 1;
}

/* BEFORE - Overlay layer (clipped) */
.home-ba-image.before {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Start at 50% */
}

/* ============================================
   BEFORE & AFTER - SPLIT LAYOUT (FIXED)
   ============================================ */

.home-ba-slider {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

/* IMAGES - BOTH ABSOLUTE */
.home-ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AFTER - Base layer (visible) */
.home-ba-image.after {
    z-index: 1;
}

/* BEFORE - Overlay layer (clipped) */
.home-ba-image.before {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Start at 50% */
}


/* ============================================
   ABOUT US HERO - UNIQUE CLASSES
   ============================================ */

.sh-about-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

/* ============================================
   BACKGROUND IMAGE
   ============================================ */
.sh-about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/accessible-after-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-about-hero:hover .sh-about-hero-bg {
    transform: scale(1.05);
}

/* ============================================
   GRADIENT OVERLAY
   ============================================ */
.sh-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(16, 27, 65, 0.92) 0%,
        rgba(16, 27, 65, 0.80) 40%,
        rgba(38, 54, 95, 0.65) 70%,
        rgba(16, 27, 65, 0.50) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   CONTAINER OVERLAY
   ============================================ */
.sh-about-hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.sh-about-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sh-about-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sh-about-hero-breadcrumb a:hover {
    color: #A98B52;
}

.sh-about-hero-sep {
    color: rgba(255, 255, 255, 0.3);
}

.sh-about-hero-current {
    color: #A98B52;
}

/* ============================================
   BADGE
   ============================================ */
.sh-about-hero-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   TITLE
   ============================================ */
.sh-about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* ============================================
   SUBTITLE
   ============================================ */
.sh-about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #A98B52;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.sh-about-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   STATS
   ============================================ */
.sh-about-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.sh-about-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sh-about-hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.sh-about-hero-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.sh-about-hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.sh-about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #A98B52;
    color: #FFFFFF;
    padding: 14px 38px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: none;
    box-shadow: 0 4px 20px rgba(169, 139, 82, 0.3);
}

.sh-about-hero-btn:hover {
    background: #9A7A4A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(169, 139, 82, 0.4);
}

.sh-about-hero-btn svg {
    transition: transform 0.3s ease;
}

.sh-about-hero-btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .sh-about-hero {
        padding: 60px 0 80px;
        min-height: 400px;
    }
    .sh-about-hero-title {
        font-size: 2.8rem;
    }
    .sh-about-hero-subtitle {
        font-size: 1.15rem;
    }
    .sh-about-hero-text {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    .sh-about-hero-stats {
        gap: 16px;
        padding: 16px 24px;
        flex-wrap: wrap;
    }
    .sh-about-hero-stat-num {
        font-size: 24px;
    }
    .sh-about-hero-stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .sh-about-hero {
        padding: 50px 0 60px;
        min-height: 350px;
    }
    .sh-about-hero-title {
        font-size: 2.2rem;
    }
    .sh-about-hero-subtitle {
        font-size: 1rem;
    }
    .sh-about-hero-text {
        font-size: 0.95rem;
        padding: 0 16px;
    }
    .sh-about-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 14px 20px;
        max-width: 100%;
    }
    .sh-about-hero-stat-num {
        font-size: 20px;
    }
    .sh-about-hero-stat-lbl {
        font-size: 11px;
    }
    .sh-about-hero-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    .sh-about-hero-badge {
        font-size: 10px;
        padding: 4px 20px;
    }
}

@media (max-width: 576px) {
    .sh-about-hero {
        padding: 40px 0 50px;
        min-height: 300px;
    }
    .sh-about-hero-title {
        font-size: 1.8rem;
    }
    .sh-about-hero-subtitle {
        font-size: 0.9rem;
    }
    .sh-about-hero-text {
        font-size: 0.9rem;
        padding: 0 12px;
    }
    .sh-about-hero-stats {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }
    .sh-about-hero-stat {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .sh-about-hero-stat-divider {
        display: none;
    }
    .sh-about-hero-stat-num {
        font-size: 18px;
    }
    .sh-about-hero-stat-lbl {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }
    .sh-about-hero-breadcrumb {
        font-size: 12px;
    }
}


/* ============================================
   FREE ESTIMATE PAGE - UNIQUE CLASSES
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.sh-estimate-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

.sh-estimate-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-estimate-hero:hover .sh-estimate-hero-bg {
    transform: scale(1.05);
}

.sh-estimate-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(16, 27, 65, 0.92) 0%,
        rgba(16, 27, 65, 0.80) 40%,
        rgba(38, 54, 95, 0.65) 70%,
        rgba(16, 27, 65, 0.50) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.sh-estimate-hero .container {
    position: relative;
    z-index: 2;
}

.sh-estimate-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sh-estimate-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sh-estimate-hero-breadcrumb a:hover {
    color: #A98B52;
}

.sh-estimate-hero-sep {
    color: rgba(255, 255, 255, 0.3);
}

.sh-estimate-hero-current {
    color: #A98B52;
}

.sh-estimate-hero-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
}

.sh-estimate-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #A98B52;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.sh-estimate-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sh-estimate-hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.sh-estimate-hero-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   ALERTS
   ============================================ */
.sh-estimate-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    border-left: 4px solid;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-alert.success {
    background: #d4edda;
    border-color: #198754;
    color: #155724;
}

.sh-estimate-alert.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.sh-estimate-alert i {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sh-estimate-alert ul {
    padding-left: 20px;
    margin-top: 4px;
}

.sh-estimate-alert-close {
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    padding: 0 4px;
    margin-left: auto;
    transition: opacity 0.3s ease;
}

.sh-estimate-alert-close:hover {
    opacity: 1;
}

/* ============================================
   CONTENT COLUMN
   ============================================ */
.sh-estimate-content {
    padding: 20px 0;
}

.sh-estimate-content-title {
    font-size: 2rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-estimate-content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.sh-estimate-content-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #E9EDF5;
    transition: padding-left 0.3s ease;
}

.sh-estimate-content-list li:hover {
    padding-left: 8px;
}

.sh-estimate-content-list li:last-child {
    border-bottom: none;
}

.sh-estimate-content-list li i {
    color: #A98B52;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sh-estimate-content-list li strong {
    display: block;
    font-size: 15px;
    color: #252A32;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-content-list li p {
    font-size: 14px;
    color: #68717F;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid #E9EDF5;
}

.sh-estimate-trust span {
    background: #F5F6F8;
    color: #252A32;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #E9EDF5;
}

/* ============================================
   FORM COLUMN
   ============================================ */
.sh-estimate-form-wrapper {
    background: #F5F6F8;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #E9EDF5;
}

.sh-estimate-form-header {
    margin-bottom: 24px;
}

.sh-estimate-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-estimate-form-subtitle {
    font-size: 0.95rem;
    color: #68717F;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-form-group {
    position: relative;
}

.sh-estimate-form-label {
    font-weight: 600;
    color: #252A32;
    font-size: 13px;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.sh-estimate-form-control {
    width: 100%;
    border: 2px solid #E9EDF5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #252A32;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-form-control:focus {
    border-color: #101B41;
    box-shadow: 0 0 0 4px rgba(16, 27, 65, 0.08);
    outline: none;
}

.sh-estimate-form-control::placeholder {
    color: #68717F;
    opacity: 0.5;
}

select.sh-estimate-form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2368717F'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.sh-estimate-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    background: #101B41;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.sh-estimate-form-btn:hover {
    background: #26365F;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16, 27, 65, 0.25);
    color: #FFFFFF;
}

.sh-estimate-form-btn svg {
    transition: transform 0.3s ease;
}

.sh-estimate-form-btn:hover svg {
    transform: translateX(4px);
}

.sh-estimate-form-note {
    font-size: 12px;
    color: #68717F;
    margin-top: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.sh-estimate-process {
    padding: 80px 0;
    background: #F5F6F8;
}

.sh-estimate-process-badge {
    display: inline-block;
    background: #101B41;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-process-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-estimate-process-subtitle {
    font-size: 1.05rem;
    color: #68717F;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-process-step {
    text-align: center;
    padding: 24px 16px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E9EDF5;
    transition: all 0.3s ease;
    height: 100%;
}

.sh-estimate-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 27, 65, 0.08);
}

.sh-estimate-process-number {
    font-size: 12px;
    font-weight: 700;
    color: #A98B52;
    font-family: 'Poppins', sans-serif;
    background: rgba(169, 139, 82, 0.1);
    display: inline-block;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sh-estimate-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(169, 139, 82, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    color: #A98B52;
    transition: all 0.3s ease;
}

.sh-estimate-process-step:hover .sh-estimate-process-icon {
    background: #101B41;
    color: #FFFFFF;
}

.sh-estimate-process-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #252A32;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-process-step-text {
    font-size: 14px;
    color: #68717F;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.sh-estimate-cta {
    padding: 60px 0 80px;
    background: #0D1529;
}

.sh-estimate-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sh-estimate-cta-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-estimate-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 24px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

.sh-estimate-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #A98B52;
    color: #FFFFFF;
    padding: 16px 44px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.sh-estimate-cta-phone:hover {
    background: #9A7A4A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(169, 139, 82, 0.35);
}

.sh-estimate-cta-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .sh-estimate-hero-title {
        font-size: 2.8rem;
    }
    .sh-estimate-form-wrapper {
        padding: 28px;
    }
    .sh-estimate-content-title {
        font-size: 1.8rem;
    }
    .sh-estimate-process-title {
        font-size: 2rem;
    }
    .sh-estimate-cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sh-estimate-hero {
        padding: 50px 0 60px;
        min-height: 350px;
    }
    .sh-estimate-hero-title {
        font-size: 2.2rem;
    }
    .sh-estimate-hero-subtitle {
        font-size: 1rem;
    }
    .sh-estimate-hero-text {
        font-size: 0.95rem;
        padding: 0 16px;
    }
    .sh-estimate-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 14px 20px;
        max-width: 100%;
    }
    .sh-estimate-hero-stat-num {
        font-size: 20px;
    }
    .sh-estimate-hero-stat-divider {
        display: none;
    }
    .sh-estimate-form-wrapper {
        padding: 20px;
    }
    .sh-estimate-form-title {
        font-size: 1.3rem;
    }
    .sh-estimate-content-title {
        font-size: 1.5rem;
    }
    .sh-estimate-process {
        padding: 60px 0;
    }
    .sh-estimate-process-title {
        font-size: 1.6rem;
    }
    .sh-estimate-cta {
        padding: 40px 0 60px;
    }
    .sh-estimate-cta-title {
        font-size: 1.5rem;
    }
    .sh-estimate-cta-phone {
        font-size: 18px;
        padding: 14px 32px;
        width: 100%;
        justify-content: center;
    }
    .sh-estimate-hero-badge {
        font-size: 10px;
        padding: 4px 20px;
    }
}

@media (max-width: 576px) {
    .sh-estimate-hero {
        padding: 40px 0 50px;
        min-height: 300px;
    }
    .sh-estimate-hero-title {
        font-size: 1.8rem;
    }
    .sh-estimate-hero-subtitle {
        font-size: 0.9rem;
    }
    .sh-estimate-hero-text {
        font-size: 0.9rem;
        padding: 0 12px;
    }
    .sh-estimate-hero-stats {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }
    .sh-estimate-hero-stat {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .sh-estimate-hero-stat-num {
        font-size: 18px;
    }
    .sh-estimate-hero-stat-lbl {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }
    .sh-estimate-form-wrapper {
        padding: 16px;
        border-radius: 14px;
    }
    .sh-estimate-form-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    .sh-estimate-breadcrumb {
        font-size: 12px;
    }
    .sh-estimate-process-step {
        padding: 16px;
    }
    .sh-estimate-process-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .sh-estimate-cta-phone {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ============================================
   ABOUT STORY - IMAGE HEIGHT ON MOBILE (LARGER)
   ============================================ */

@media (max-width: 768px) {
    .about-story-image {
        height: 500px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .about-story-image {
        height: 450px;
        object-fit: cover;
    }
}

/* ============================================
   CLIENT REVIEWS SECTION
   ============================================ */

.sh-reviews {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.sh-reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.sh-reviews-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sh-reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-reviews-subtitle {
    font-size: 1.05rem;
    color: #68717F;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* ============================================
   REVIEWS GRID
   ============================================ */
.sh-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   REVIEW CARD
   ============================================ */
.sh-reviews-card {
    background: #F5F6F8;
    border-radius: 16px;
    padding: 28px 24px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16, 27, 65, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sh-reviews-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 27, 65, 0.08);
    border-color: rgba(169, 139, 82, 0.12);
    background: #FFFFFF;
}

.sh-reviews-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================
   STARS
   ============================================ */
.sh-reviews-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.sh-reviews-stars i {
    color: #FFC107;
    font-size: 18px;
}

/* ============================================
   REVIEW TEXT
   ============================================ */
.sh-reviews-text {
    font-size: 15px;
    color: #252A32;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

/* ============================================
   CLIENT INFO
   ============================================ */
.sh-reviews-client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 27, 65, 0.06);
    flex-wrap: wrap;
    gap: 8px;
}

.sh-reviews-client-info {
    display: flex;
    flex-direction: column;
}

.sh-reviews-client-name {
    font-size: 15px;
    font-weight: 700;
    color: #101B41;
    font-family: 'Poppins', sans-serif;
}

.sh-reviews-client-date {
    font-size: 12px;
    color: #68717F;
    font-family: 'Poppins', sans-serif;
}

.sh-reviews-client-project {
    font-size: 12px;
    font-weight: 600;
    color: #A98B52;
    background: rgba(169, 139, 82, 0.10);
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   FOOTER
   ============================================ */
.sh-reviews-footer {
    text-align: center;
    margin-top: 44px;
}

.sh-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101B41;
    color: #FFFFFF;
    padding: 14px 38px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    border: none;
}

.sh-reviews-btn:hover {
    background: #26365F;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16, 27, 65, 0.25);
}

.sh-reviews-footer-text {
    font-size: 13px;
    color: #68717F;
    margin-top: 12px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .sh-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .sh-reviews-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sh-reviews {
        padding: 60px 0;
    }
    .sh-reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sh-reviews-title {
        font-size: 1.8rem;
    }
    .sh-reviews-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }
    .sh-reviews-card {
        padding: 20px 18px;
    }
    .sh-reviews-text {
        font-size: 14px;
    }
    .sh-reviews-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .sh-reviews {
        padding: 40px 0;
    }
    .sh-reviews-title {
        font-size: 1.5rem;
    }
    .sh-reviews-subtitle {
        font-size: 0.9rem;
    }
    .sh-reviews-card {
        padding: 16px 14px;
        border-radius: 12px;
    }
    .sh-reviews-text {
        font-size: 13px;
    }
    .sh-reviews-stars i {
        font-size: 15px;
    }
    .sh-reviews-client-name {
        font-size: 13px;
    }
    .sh-reviews-client-project {
        font-size: 11px;
        padding: 3px 12px;
    }
    .sh-reviews-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* ============================================
   HOME ABOUT - IMAGE HEIGHT ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .sh-about-image {
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .sh-about-image {
        height: 350px;
        object-fit: cover;
    }
}


/* ============================================
   HERO STATS - MOBILE BACKGROUND OVERLAY
   ============================================ */

@media (max-width: 768px) {
    .hero-main-stats {
        background: rgba(16, 27, 65, 0.75);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 16px 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 576px) {
    .hero-main-stats {
        background: rgba(16, 27, 65, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 14px 16px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 768px) {
    .shh-brand img,
    .sh-brand img {
        height: 55px;
        width: auto;
        padding-right: 4px;
    }
}

@media (max-width: 576px) {
    .shh-brand img,
    .sh-brand img {
        height: 48px;
        width: auto;
        padding-right: 6px;
    }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.sh-policy-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    text-align: center;
}

.sh-policy-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sh-policy-hero:hover .sh-policy-hero-bg {
    transform: scale(1.05);
}

.sh-policy-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(16, 27, 65, 0.92) 0%,
        rgba(16, 27, 65, 0.80) 40%,
        rgba(38, 54, 95, 0.65) 70%,
        rgba(16, 27, 65, 0.50) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.sh-policy-hero .container {
    position: relative;
    z-index: 2;
}

.sh-policy-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sh-policy-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sh-policy-hero-breadcrumb a:hover {
    color: #A98B52;
}

.sh-policy-hero-sep {
    color: rgba(255, 255, 255, 0.3);
}

.sh-policy-hero-current {
    color: #A98B52;
}

.sh-policy-hero-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
}

.sh-policy-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #A98B52;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 300px;
    margin: 0 auto;
}

.sh-policy-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
}

.sh-policy-hero-meta-item i {
    color: #A98B52;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.sh-policy-content {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.sh-policy-content-inner {
    background: #F5F6F8;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid #E9EDF5;
}

.sh-policy-section {
    margin-bottom: 32px;
}

.sh-policy-section:last-child {
    margin-bottom: 0;
}

.sh-policy-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #101B41;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E9EDF5;
}

.sh-policy-section-text {
    font-size: 15px;
    color: #252A32;
    line-height: 1.8;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-section-text:last-child {
    margin-bottom: 0;
}

.sh-policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.sh-policy-list li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: #252A32;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    border-bottom: 1px solid rgba(16, 27, 65, 0.04);
}

.sh-policy-list li:last-child {
    border-bottom: none;
}

.sh-policy-list li i {
    color: #A98B52;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sh-policy-list li strong {
    color: #101B41;
}

/* ============================================
   CONTACT INFO IN POLICY
   ============================================ */
.sh-policy-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.sh-policy-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #E9EDF5;
    transition: all 0.3s ease;
}

.sh-policy-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 27, 65, 0.06);
}

.sh-policy-contact-item i {
    font-size: 24px;
    color: #A98B52;
    flex-shrink: 0;
}

.sh-policy-contact-item div {
    display: flex;
    flex-direction: column;
}

.sh-policy-contact-item strong {
    font-size: 12px;
    font-weight: 700;
    color: #68717F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-contact-item span,
.sh-policy-contact-item a {
    font-size: 14px;
    color: #252A32;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-contact-item a:hover {
    color: #A98B52;
}

/* ============================================
   CTA SECTION
   ============================================ */
.sh-policy-cta {
    padding: 60px 0 80px;
    background: #0D1529;
}

.sh-policy-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sh-policy-cta-badge {
    display: inline-block;
    background: #A98B52;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sh-policy-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.sh-policy-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 24px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

.sh-policy-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.sh-policy-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A98B52;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: none;
}

.sh-policy-cta-btn-primary:hover {
    background: #9A7A4A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(169, 139, 82, 0.35);
}

.sh-policy-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.sh-policy-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .sh-policy-hero-title {
        font-size: 2.6rem;
    }
    .sh-policy-content-inner {
        padding: 32px;
    }
    .sh-policy-cta-title {
        font-size: 1.8rem;
    }
    .sh-policy-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sh-policy-hero {
        padding: 50px 0 60px;
        min-height: 350px;
    }
    .sh-policy-hero-title {
        font-size: 2.2rem;
    }
    .sh-policy-hero-subtitle {
        font-size: 1rem;
    }
    .sh-policy-hero-text {
        font-size: 0.95rem;
        padding: 0 16px;
    }
    .sh-policy-content {
        padding: 40px 0 60px;
    }
    .sh-policy-content-inner {
        padding: 24px 20px;
        border-radius: 14px;
    }
    .sh-policy-section-title {
        font-size: 1.2rem;
    }
    .sh-policy-section-text {
        font-size: 14px;
    }
    .sh-policy-list li {
        font-size: 14px;
    }
    .sh-policy-cta {
        padding: 40px 0 60px;
    }
    .sh-policy-cta-title {
        font-size: 1.5rem;
    }
    .sh-policy-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .sh-policy-cta-btn-primary,
    .sh-policy-cta-btn-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }
    .sh-policy-hero-badge {
        font-size: 10px;
        padding: 4px 20px;
    }
    .sh-policy-hero-meta {
        max-width: 100%;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .sh-policy-hero {
        padding: 40px 0 50px;
        min-height: 300px;
    }
    .sh-policy-hero-title {
        font-size: 1.8rem;
    }
    .sh-policy-hero-subtitle {
        font-size: 0.9rem;
    }
    .sh-policy-hero-text {
        font-size: 0.9rem;
    }
    .sh-policy-content-inner {
        padding: 16px;
        border-radius: 12px;
    }
    .sh-policy-section-title {
        font-size: 1.1rem;
    }
    .sh-policy-section-text {
        font-size: 13px;
    }
    .sh-policy-list li {
        font-size: 13px;
        padding: 6px 0;
    }
    .sh-policy-contact-item {
        padding: 12px 16px;
    }
    .sh-policy-cta-title {
        font-size: 1.3rem;
    }
    .sh-policy-cta-text {
        font-size: 0.95rem;
    }
    .sh-policy-cta-btn-primary,
    .sh-policy-cta-btn-secondary {
        font-size: 14px;
        padding: 12px 24px;
        max-width: 100%;
    }
}