*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
:root {
    --red: #D9202F;
    --dark: #1a1a1a;
    --mid: #444;
    --light: #f9f6f4;
    --border: #e8e2de;
    --shadow: 0 8px 32px rgba(0,0,0,0.10);
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'DM Sans', sans-serif;
    --nav-h: 80px;

    /* new for accordion */
    --red-soft: #F5DCDC;
    --text: #1A1A1A;
    --muted: #6B6B6B;
    --border: #E5E0DC;
    --card-bg: #FFFFFF;
    --radius: 16px;
}
body {
    font-family: var(--primary-font);
    background: #f2ece8;
    min-height: 100vh;
}
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(76px);
    border-bottom: 1px solid rgba(253, 200, 163, 1);
    padding: 6px clamp(12px, 4vw, 48px);
    box-shadow: -37.83px 37.83px 37.83px 0px rgba(255, 255, 255, 0.1) inset, 
                37.83px -37.83px 37.83px 0px rgba(194, 194, 194, 0.1) inset, 
                0px 0px 19.8px 0px rgba(255, 108, 3, 0.25);
}
.navbar-inner{
    max-width: 1400px;
    height: var(--nav-h);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
.brand-logo-img {
    width: 14em;
    height: auto;
    display: block;
}
/* ── DESKTOP MENU ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a,
.nav-menu > li > button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: color .18s, background .18s;
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover {
    color: var(--dark);
    background: #f4efeb;
}
/* Active / Home pill */
.nav-menu > li.active > a {
    color: var(--red);
    background: #fde8e8;
    border-radius: 20px;
}
/* Services chevron */
.chevron {
    width: 14px;
    height: 14px;
    transition: transform .22s;
    flex-shrink: 0;
}
.nav-menu > li.open .chevron {
    transform: rotate(180deg);
}
/* ── INVISIBLE BRIDGE: fills the gap between button and dropdown ── */
#servicesItem::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 200px;
    height: 14px; /* covers the gap + border-radius spacing */
    background: transparent;
    display: none;
}
#servicesItem:hover::after {
    display: block;
}
/* ── MEGA/DROPDOWN ── */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    min-width: 620px;
    padding: 22px 0 18px;
    animation: fadeDown .18s ease;
    z-index: 999;
}

.nav-menu > li.open .dropdown,
.nav-menu > li:hover .dropdown {
    display: flex;
    flex-direction: row;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Dropdown columns */
.dropdown-col {
    flex: 1;
    padding: 0 22px;
    border-right: 1.5px solid var(--border);
}
.dropdown-col:last-child { 
    border-right: none; 
}

.dropdown-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--border);
}

.dropdown-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-col ul li a {
    display: block;
    padding: 7px 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-radius: 7px;
    transition: background .15s, color .15s;
    line-height: 1.4;
}

.dropdown-col ul li a:hover {
    background: #fde8e8;
    color: var(--red);
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background .15s;
    margin-left: auto;
}
.hamburger:hover { background: #f4efeb; }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}
.hamburger.open span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg); 
}
.hamburger.open span:nth-child(2) { 
    opacity: 0; 
}
.hamburger.open span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg); 
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    z-index: 998;
    padding: 16px 0 40px;
    border-top: 1.5px solid var(--border);
    animation: slideIn .22s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-drawer.open { 
    display: block; 
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > button:hover {
    background: #fdf6f3;
}
.mobile-nav-list > li.active > a {
    color: var(--red);
}

/* Mobile sub-accordion */
.mobile-sub {
    display: none;
    background: #fdf6f3;
    border-bottom: 1px solid var(--border);
}
.mobile-sub.open { 
    display: block; 
}
.mobile-sub-section {
    padding: 10px 28px 6px 40px;
}
.mobile-sub-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
    margin-top: 8px;
}
.mobile-sub ul {
    list-style: none;
}
.mobile-sub ul li a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-bottom: 1px solid #efe9e5;
    transition: color .15s;
}
.mobile-sub ul li:last-child a { 
    border-bottom: none; 
}
.mobile-sub ul li a:hover { 
    color: var(--red); 
}
.mobile-chevron {
    width: 16px;
    height: 16px;
    transition: transform .22s;
    flex-shrink: 0;
}
.mobile-nav-list > li.open .mobile-chevron {
    transform: rotate(180deg);
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1024px) {
    /* nav { padding: 0 24px; } */
    .nav-menu > li > a,
    .nav-menu > li > button { 
        padding: 7px 10px; 
        font-size: 0.875rem; 
    }
}

@media (max-width: 1160px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
}

@media (min-width: 1161px) {
    .mobile-drawer { display: none !important; }
    .hamburger { display: none !important; }
}


.hero {
    background: #fff;
    display: flex;
    align-items: flex-start;
    padding: 60px 40px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1 1 40%;
    min-width: 0;
}

.hero-heading {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 22px;
    text-wrap: balance;
}
.hero-highlight {
    color: var(--red);
}

.hero-desc {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
    text-wrap: balance;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: #2d2d2d;
    transform: translateY(-1px);
}
.btn-primary svg {
    width: 16px; height: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: #bbb;
    background: #f7f4f1;
    transform: translateY(-1px);
}
.btn-secondary svg {
    width: 15px; height: 15px;
}

.hero-image-wrap {
    flex: 1 1 60%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}
.hero-image-frame {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

/* .hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */


@media (max-width: 900px) {
    .hero {
        padding: 50px 28px;
    }
    .hero-inner {
        flex-direction: column-reverse;
        gap: 36px;
    }
    .hero-image-wrap {
        justify-content: center;
        width: 100%;
    }
    .hero-image-frame {
        max-width: 100%;
        /* aspect-ratio: 16/9; */
    }
    .hero-content {
        text-align: center;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 36px 20px;
        min-height: unset;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
}


/* .property-transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 1);
} */
/* .property-transformation-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
} */
.trans-section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: clamp(40px, 6vw, 80px); */
    /* margin-bottom: 24px; */
    padding: clamp(1rem, 2vw, 1.25rem) 0;
}
.ghost-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: clamp(0.1em, 1vw, 0.2em);
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
    color: rgba(223, 223, 223, 1);
}
.transform-tag-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.transform-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    letter-spacing: 0.01em;
}
.transform-tag-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
.transform-slider-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid rgba(0,0,0,0.07);
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 12px 40px rgba(0,0,0,0.09),
        0 40px 80px rgba(0,0,0,0.05);
}
.compare-zone {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}
.img-before,
.img-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.img-before {
    background-image: url('/assets/images/before_preservation_state.avif');
    z-index: 1;
}
.img-after {
    background-image: url('/assets/images/after_preservation_state.avif');
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0s;
}

/* .badge {
    position: absolute;
    top: 20px;
    z-index: 10;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 4px;
    pointer-events: none;
}
.badge-before {
    left: 20px;
    background: rgba(255,255,255,0.85);
    color: var(--text);
    border: 1px solid rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
}
.badge-after {
    right: 20px;
    background: var(--red);
    color: #fff;
} */
.drag-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 12;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.drag-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 13;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.drag-handle svg { 
    display: block; 
    width: 20px; 
    height: 20px; 
}
.drag-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,1);
    pointer-events: none;
    z-index: 14;
    white-space: nowrap;
    transition: opacity 0.5s;
}
.top-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

/* .bottom-headline {
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.bottom-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
} */

.btn-primary {
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 26px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}
.btn-primary:hover { 
    background: #333; 
    transform: translateY(-1px); 
}
.btn-primary:active { 
    transform: scale(0.97); 
}
.btn-secondary {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
    border-radius: 999px;
    padding: 16px 26px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}
.btn-secondary:hover { 
    background: var(--red); 
    color: #fff; 
    transform: translateY(-1px); 
}
.btn-secondary:active { 
    transform: scale(0.97); 
}

/* ── Mobile ── */
@media (max-width: 640px) {
.compare-zone { height: 300px; }
/* .ghost-text { font-size: 56px; top: -18px; } */
/* .top-bar { padding: 22px 20px; } */
/* .bottom-actions { width: 100%; } */
.btn-primary, .btn-secondary { flex: 1; text-align: center; }
}

/* ── STATS SECTION ── */
.stats-section {
    /* background: #f7f2ef; */
    background: #fff;
    padding: 72px 40px;
}
.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.stats-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.stats-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #d9d0ca;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    background: #fff;
    white-space: nowrap;
}
.stats-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
.stats-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .18s, transform .15s;
}
.stats-cta:hover { background: #2d2d2d; transform: translateY(-1px); }
.stats-cta svg { width: 15px; height: 15px; }
.stats-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
    text-wrap: balance;
}
.stats-sub {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(0,0,0,.8);
    margin-bottom: 36px;
    text-wrap: balance;
    line-height: 1.75;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: #fde8e8;
    border-radius: 18px;
    padding: 30px 26px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(224,32,32,0.09);
}

.stat-icon-title-wrapper{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
.stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    color: var(--red);
    flex-shrink: 0;
}
.stat-label {
    font-family: var(--secondary-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    /* margin: 10px 0; */
}
.stat-number {
    font-family: var(--primary-font);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 14px;
}
.stat-desc {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.55;
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section { padding: 56px 28px; }
}
@media (max-width: 600px) {
    .stats-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stats-section { padding: 40px 20px; }
    .stat-card { padding: 22px 18px 20px; }
}
@media (max-width: 400px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.services-section {
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(rgba(42,42,44,0.96), rgba(42,42,44,0.96)),
    url('/assets/images/services_back.avif') center/cover no-repeat;
    padding: 60px 40px;
}

/* .services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
} */

.services-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 60px;
    align-items: center;
}

/* ── LEFT PANEL ── */
.services-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
    margin-bottom: 32px;
    width: fit-content;
}
.services-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.services-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 28px;
    text-wrap: balance;
}

.services-desc {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    /* max-width: 420px; */
}

/* ── RIGHT PANEL ── */
.services-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Category pill */
.svc-category-title {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

/* 2-col service items grid */
.svc-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.svc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    transition: opacity .18s;
}
.svc-item:hover { opacity: 0.78; }

.svc-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.8);
    margin-top: 1px;
}

.svc-item-name {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.45;
    padding-top: 10px;
}

/* Divider between categories */
/* .svc-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.10);
    margin: 0;
} */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-inner { gap: 40px; }
    .services-section { padding: 70px 28px; }
}

@media (max-width: 860px) {
    .services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    }
    .services-heading { font-size: clamp(2rem, 6vw, 3rem); }
    .services-desc { max-width: 100%; }
}

@media (max-width: 560px) {
    .services-section { padding: 52px 20px; }
    .svc-items { grid-template-columns: 1fr; gap: 0; }
    .svc-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.why-section {
    background: #fff;
    padding: 60px 40px;
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
}

/* ── LEFT ── */
.why-left {
    display: flex;
    flex-direction: column;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    background: #fff;
    margin-bottom: 28px;
    width: fit-content;
}

.why-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.why-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 22px;
    text-wrap: balance;
}

.why-desc {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.75;
    text-wrap: balance;
    /* max-width: 360px; */
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* .why-card:nth-child(1) {
    background-image: url(/assets/images/why_bg_02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.why-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}


.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

/* .why-card::after {
    content: '';
    position: absolute;
    bottom: -28px; right: -28px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(224,32,32,0.05);
    pointer-events: none;
} */

.why-icon-title-wrapper{
    display: flex; 
    align-items: center; 
    gap: 6px;
}

.why-card-icon {
    width: 60px; 
    height: 60px;
    color: var(--red);
    /* flex-shrink: 0; */
}

.why-card-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    /* margin-bottom: 12px; */
}

.why-card-desc {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    margin-top: 12px;
    padding-left: .8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .why-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    }
    .why-left { align-items: flex-start; }
    .why-desc { max-width: 100%; }
    .why-section { padding: 64px 28px; }
}

@media (max-width: 560px) {
    .why-cards { grid-template-columns: 1fr; gap: 14px; }
    .why-section { padding: 48px 20px; }
}

.coverage-section {
    background: #fff;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

/* .coverage-section::before {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, #fde8e8 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
} */

.coverage-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 60px;
    align-items: center;
}

/* ── LEFT ── */
.coverage-left {
    display: flex;
    flex-direction: column;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    background: #fff;
    margin-bottom: 28px;
    width: fit-content;
}

.coverage-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.coverage-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 22px;
}

.coverage-desc {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(0,0,0,.8);
    line-height: 1.75;
    /* max-width: 400px; */
    margin-bottom: 30px;
    text-wrap: balance;
}

.coverage-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background .18s, transform .15s;
}
.coverage-cta:hover { background: #2d2d2d; transform: translateY(-1px); }
.coverage-cta svg { width: 15px; height: 15px; }

/* ── RIGHT: map card ── */
.coverage-right {
    display: flex;
    flex-direction: column;
}

.map-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.map-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1.5px solid var(--border);
    background: #fdf7f4;
    border-radius: 18px 18px 0 0;
    justify-content: center;
}

.map-hint svg {
    width: 20px; height: 20px;
    color: var(--red);
    flex-shrink: 0;
}

.map-hint span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.map-container {
    position: relative;
    padding: 20px 16px 10px;
    background: #fff;
}

#usa-svg {
    width: 100%;
    height: auto;
    display: block;
}

.state-path {
    fill: #f0e8e4;
    stroke: #fff;
    stroke-width: 0.8;
    transition: fill .18s;
}

.state-active {
    fill: #f7cece;
    cursor: pointer;
}

.state-active:hover {
    fill: var(--red) !important;
}

/* tooltip */
#map-tooltip {
    position: absolute;
    background: rgba(20,20,20,0.92);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s;
    white-space: nowrap;
    z-index: 100;
    transform: translate(-50%, -110%);
    backdrop-filter: blur(4px);
}

/* legend */
.map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 14px 20px 18px;
    border-top: 1.5px solid var(--border);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mid);
}

.legend-dot {
    width: 18px; height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-dot.active    { background: #f7cece; border: 1.5px solid #e0b0b0; }
.legend-dot.selected  { background: var(--red); border: 1.5px solid #c01818; }
.legend-dot.inactive  { background: #f0e8e4; border: 1.5px solid #d8cec8; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .coverage-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    }
    .coverage-desc { max-width: 100%; }
    .coverage-section { padding: 64px 28px; }
}

@media (max-width: 560px) {
    .coverage-section { padding: 48px 20px; }
    .map-hint span { font-size: 0.8rem; }
    .map-legend { gap: 16px; }
}

.partners-section {
background-color: rgba(250, 248, 248, 1);
padding: 60px 20px;
}
.partner-container {
max-width: 1400px;
margin: 0 auto;
}
.partners-section .section-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partners-section .partner-badge {
display: inline-flex;
align-items: center;
gap: 8px;
border: 1.5px solid var(--border);
border-radius: 50px;
padding: 6px 16px;
font-size: 0.82rem;
font-weight: 700;
color: var(--dark);
background: #fff;
margin-bottom: 28px;
width: fit-content;
}
.partners-section .partner-badge-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--red);
flex-shrink: 0;
}
.partners-section .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.02em;
    text-align: center;
    text-wrap: balance;
}
.partners-section .content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.partners-section .logos-grid-wrapper {
display: flex;
justify-content: center;
}

.partners-section .logos-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
width: 100%;
}

.partners-section .logo-card {
background-color: #ffffff;
border-radius: 14px;
padding: 16px 8px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
display: flex;
align-items: center;
justify-content: center;
min-height: 112px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.partners-section .logo-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}

.client-logo-image {
max-width: 112px;
max-height: 80px;
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.partners-section .testimonial-wrapper {
display: flex;
justify-content: center;
width: 100%;
min-width: 0;
}
.testimonial-swiper {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
}
.testimonial-swiper .swiper-wrapper {
width: 100% !important;
height: auto !important;
}
.testimonial-swiper .swiper-slide {
height: auto !important;
width: 100% !important;
display: flex;
flex-direction: column;
}
/* .testimonial-swiper .swiper-container {
width: 100%;
height: auto;
} */

.testimonial-swiper .testimonial-card {
background: linear-gradient(120.08deg, #FFFFFF 60.81%, #FFD6D6 119.36%), linear-gradient(244.73deg, rgba(255, 253, 253, 0) 55.55%, #EBECEF 96.34%);
border-radius: 20px;
padding: 40px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.04);
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 350px;
width: 100%;
height: 100%;
}
.testimonial-swiper .quote-icon {
margin-bottom: 12px;
}
.testimonial-swiper .quote-icon svg {
width: 28px;
height: 28px;
}
.testimonial-swiper .testimonial-text {
font-size: 16px;
line-height: 1.7;
color: #1f2937;
margin-bottom: 24px;
flex-grow: 1;
letter-spacing: 0.3px;
}
.testimonial-swiper .testimonial-author {
border-top: 1px solid rgba(0, 0, 0, 0.06);
padding-top: 16px;
}
.testimonial-swiper .author-name {
font-size: 14px;
font-weight: 600;
color: #1f2937;
margin-bottom: 4px;
}
.testimonial-swiper .author-company {
font-size: 13px;
color: #6b7280;
font-weight: 500;
}
.testimonial-swiper .swiper-pagination {
position: static !important;
bottom: auto !important;
margin-top: 24px;
display: flex;
justify-content: center;
gap: 8px;
padding: 0 !important;
}

.testimonial-swiper .swiper-pagination-bullet {
width: 10px;
height: 10px;
background-color: #d1d5db;
border-radius: 50%;
opacity: 1;
cursor: pointer;
transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
background-color: #1f2937;
width: 28px;
border-radius: 5px;
}

@media (max-width: 1024px) {
.partners-section {
    padding: 60px 20px;
}
.partners-section .section-title {
    font-size: 40px;
}
.partners-section .content-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
}
.partners-section .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.partners-section .logo-card {
    min-height: 120px;
    padding: 24px 16px;
}
.testimonial-swiper .testimonial-card {
    padding: 32px;
    min-height: 300px;
}
.testimonial-swiper .testimonial-text {
    font-size: 15px;
}
}

@media (max-width: 640px) {
.partners-section {
    padding: 48px 16px;
}
.partners-section .section-header {
    margin-bottom: 40px;
}
.partners-section .partner-badge {
    font-size: 13px;
    padding: 6px 12px;
}
.partners-section .section-title {
    font-size: 32px;
    margin-bottom: 12px;
}
.partners-section .content-wrapper {
    gap: 36px;
}
.partners-section .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.partners-section .logo-card {
    min-height: 110px;
    padding: 20px 12px;
    border-radius: 12px;
}
.testimonial-swiper .testimonial-card {
    padding: 24px;
    min-height: 280px;
    border-radius: 16px;
}
.testimonial-swiper .quote-icon svg {
    width: 24px;
    height: 24px;
}
.testimonial-swiper .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.testimonial-swiper .author-name {
    font-size: 13px;
}
.testimonial-swiper .author-company {
    font-size: 12px;
}
.testimonial-swiper .swiper-pagination {
    margin-top: 20px;
    gap: 6px;
}
.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}
.testimonial-swiper .swiper-pagination-bullet-active {
    width: 24px;
}
}

@media (max-width: 480px) {
.partners-section {
    padding: 40px 12px;
}
.partners-section .section-title {
    font-size: 28px;
}
.partners-section .logos-grid {
    gap: 12px;
}
.partners-section .logo-card {
    min-height: 100px;
    padding: 16px 10px;
}
.partners-section .content-wrapper {
    gap: 28px;
}
.testimonial-swiper .testimonial-card {
    padding: 20px;
    min-height: 260px;
}
.testimonial-swiper .testimonial-text {
    font-size: 13px;
    margin-bottom: 16px;
}
}

.logos-scroll-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.logos-scroll-outer::before,
.logos-scroll-outer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-scroll-outer::before {
  top: 0;
  background: linear-gradient(to bottom, #faf8f8, transparent);
}
.logos-scroll-outer::after {
  bottom: 0;
  background: linear-gradient(to top, #faf8f8, transparent);
}
.logos-cols-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 380px;
}
.logo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}
.logo-tile {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}
.logo-tile:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.logo-tile img {
  max-width: 90%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .logos-cols-wrapper { gap: 10px; height: 300px; }
  .logo-col { gap: 10px; }
  .logo-tile { min-height: 76px; padding: 10px 6px; border-radius: 10px; }
  .logo-tile img { max-height: 48px; }
}
@media (max-width: 400px) {
  .logos-cols-wrapper { grid-template-columns: repeat(2, 1fr); height: 280px; }
}

.operational-clarity{
    background: linear-gradient(97.26deg, rgba(255, 222, 198, 0.25) 20.77%, rgba(255, 244, 236, 0.25) 95.47%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.operational-clarity-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

/* Left panel */
.faq-header {
    padding-top: 8px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.faq-tag-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
}

#faq-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

#faq-subtext {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(0,0,0,0.8);
    max-width: 100%;
    text-wrap: balance;
    margin-bottom: 1.25rem;
}

.faq-btn {
    display: inline-flex; align-items: center; gap: 11px;
    font-family: var(--primary-font); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: #111; background: transparent;
    border: 1.5px solid #111; border-radius: 100px;
    padding: 12px 24px; cursor: pointer;
    transition: background .24s ease, color .24s ease, transform .24s ease;
    align-self: flex-start; margin-top: 4px;
    text-decoration: none;
}
.faq-btn:hover { background: #000; color: #fff; transform: translateY(-2px); }
.faq-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.faq-btn .arrow-pill {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(215,35,40,0.06); border: 1.5px solid rgba(215,35,40,0.18);
    display: flex; align-items: center; justify-content: center;
    transition: background .24s ease, border-color .24s ease, transform .24s ease;
}
.faq-btn .arrow-pill svg { color: var(--red); transition: color .24s ease; }
.faq-btn:hover .arrow-pill { background: var(--red); border-color: var(--red); transform: translateX(3px); }
.faq-btn:hover .arrow-pill svg { color: var(--white); }
.accordion-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.accordion-item {
border-bottom: 1.5px solid var(--border);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
display: flex;
align-items: center;
gap: 14px;
padding: 22px 24px;
cursor: pointer;
user-select: none;
transition: background 0.2s;
}
.accordion-header:hover { background: #FAF6F4; }

.acc-indicator {
flex-shrink: 0;
width: 18px;
display: flex;
align-items: center;
justify-content: center;
}

/* Closed: horizontal red dash */
.acc-dash {
display: block;
width: 16px; height: 2.5px;
background: var(--red);
border-radius: 2px;
transition: opacity 0.2s;
}

/* Open: vertical red bar */
.acc-bar {
display: block;
width: 3px; height: 20px;
background: var(--red);
border-radius: 2px;
transition: opacity 0.2s;
}

.acc-indicator .acc-dash { display: block; }
.acc-indicator .acc-bar  { display: none; }
.accordion-item.open .acc-indicator .acc-dash { display: none; }
.accordion-item.open .acc-indicator .acc-bar  { display: block; }

.accordion-title {
flex: 1;
font-size: 18px;
font-weight: 600;
color: var(--text);
letter-spacing: -0.1px;
font-family: var(--primary-font);
}

.acc-icon {
flex-shrink: 0;
width: 32px; height: 32px;
border-radius: 50%;
border: 1.5px solid var(--border);
display: flex; align-items: center; justify-content: center;
color: var(--muted);
transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.2s, color 0.2s;
}
.accordion-item.open .acc-icon {
transform: rotate(180deg);
border-color: #ccc;
color: var(--text);
}
.acc-icon svg { display: block; }

.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.accordion-body-inner {
    font-family: var(--secondary-font);
    padding: 0 24px 24px 56px;
    font-size: 17px;
    line-height: 1.75;
    /* color: var(--muted); */
    color: rgba(0, 0, 0,.8);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}
.accordion-item.open .accordion-body-inner {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item.open .acc-icon-wrap {
    position: relative;
}

@media (max-width: 980px) {
    .operational-clarity-inner {
        grid-template-columns: 1fr; 
        gap: 36px; 
    }
}


footer {
    background: #1e1e1b;
    color: #c8c8c0;
    padding: 64px 60px 0;
    position: relative;
}

.footer-brand-logo{
    width: 80%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 28px;
}

/* .brand-tagline {
    font-size: 0.82rem;
    color: #888880;
    line-height: 1.55;
    max-width: 200px;
    margin-bottom: 28px;
    font-weight: 300;
} */

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: grid; place-items: center;
    color: #f0ede6;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.socials a:hover {
    border-color: #f0ede6;
    background: rgba(255,255,255,0.06);
}

.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* Nav columns */
.nav-col h4 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.95rem;
    color:#f0ede6;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.nav-col ul, .brand-col ul { list-style: none; }
.nav-col ul li, .brand-col ul li  { margin-bottom: 11px; }
.nav-col ul li a, .brand-col ul li a {
    text-decoration: none;
    color: #888880;
    font-size: 0.84rem;
    font-weight: 400;
    transition: color 0.18s;
    position: relative;
}
.nav-col ul li a::after, .brand-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #c8c8c0;
    transition: width 0.2s;
}
.nav-col ul li a:hover, .brand-col ul li a:hover { color: #f0ede6 }
.nav-col ul li a:hover::after, .brand-col ul li a:hover::after { width: 100%; }

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 0;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.78rem;
    color: #888880;
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal a {
    text-decoration: none;
    color: #888880;
    font-size: 0.78rem;
    transition: color 0.18s;
}
.footer-legal a:hover { color: #f0ede6 }

.footer-legal span {
    color: rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    footer { padding: 52px 40px 0; }
    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
    }
    .brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    footer { padding: 44px 24px 0; }
    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    }
    .brand-col { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    
}

@media (max-width: 420px) {
    .footer-grid { grid-template-columns: 1fr; }
    .brand-col{text-align: center;}
}


.chat-widget {
    position: fixed;
    bottom: 85px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Chat box */
.chat-box {
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
    overflow: hidden;
    transform: scale(0.92) translateY(10px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

@keyframes ping {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.chat-box.open {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
}

.chat-header {
    background: #e03535;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}

.chat-header-icon svg { width: 16px; height: 16px; fill: #fff; }

.chat-header-text h5 {
    font-family: var(--primary-font);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.chat-header-text p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--primary-font);
}

.chat-close {
    /* margin-left: auto; */
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.15s;
}
.chat-close:hover { color: #fff; }

.chat-body { padding: 16px 18px; }

/* #chatEmail {
    display: block;
    width: 100%;
    margin-bottom: 10px;
} */

.chat-label {
    display: block;
    font-size: 0.78rem;
    color: #555;
    margin-bottom: 8px;
    font-family: var(--primary-font);
}

.chat-textarea {
    width: 100%;
    height: 100px;
    resize: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: var(--secondary-font);
    font-size: 0.84rem;
    color: #222;
    outline: none;
    transition: border-color 0.18s;
    line-height: 1.5;
}

.chat-textarea:focus { border-color: #e03535; }

.chat-send {
    margin-top: 10px;
    width: 100%;
    background: #e03535;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s, transform 0.1s;
}
.chat-send:hover { background: #c22; }
.chat-send:active { transform: scale(0.97); }
.chat-send svg { width: 15px; height: 15px; fill: #fff; }

/* Status message */
.chat-status {
    margin-top: 9px;
    font-size: 0.76rem;
    text-align: center;
    min-height: 18px;
    font-family: var(--secondary-font);
    color: #444;
}
.chat-status.success { color: #1a8a4a; }
.chat-status.error { color: #e03535; }

/* FAB button */
.chat-fab {
    width: 54px; height: 54px;
    background: #e03535;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(224,53,53,0.45);
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.chat-fab:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(224,53,53,0.55);
}
.chat-fab svg { width: 24px; height: 24px; fill: #fff; }

.chat-fab-label {
    position: absolute;
    right: 60px;
    background: #fff;
    color: #222;
    font-family: var(--secondary-font);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.14);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s;
}

.chat-fab-label.hidden { opacity: 0; }

@media (max-width: 640px) {
    .chat-box { width: calc(100vw - 56px); }
}

.notyf__toast--success .notyf__ripple {
    background: #1a5c37 !important; 
}
.notyf__toast--error .notyf__ripple { 
    background: #7f1d1d !important; 
}
.notyf__message {
    font-size: 1rem;
    font-weight: 500;
}


/* .notyf__toast--success {
    background: #1a5c37 !important;
}
.notyf__toast--error {
    background: #7f1d1d !important;
}
.notyf__toast--success .notyf__ripple {
    background: #1a5c37 !important;
}
.notyf__toast--error .notyf__ripple {
    background: #7f1d1d !important;
}
.notyf__toast--success .notyf__message,
.notyf__toast--error .notyf__message {
    color: #ffffff !important;
}
.notyf__message {
    font-size: 1rem;
    font-weight: 500;
} */