:root {
    --tan: #BFC1C2;
    --tan-dark: #98a0a8;
    --tan-light: #d2d5d8;
    --tan-pale: #f3f6f8;
    --white: #eaf0f4;
    --dark: #0b1117;
    --mid: #18222d;
    --accent: #BFC1C2;
    --accent2: #6ad2c2;
    --text-main: #BFC1C2;
    --text-strong: #e7eef2;
    --bg-1: #0b1117;
    --bg-2: #0f1722;
    --bg-3: #131e2b;
    --surface-1: #162230;
    --surface-2: #1b2a3a;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 20px 60px rgba(26, 21, 16, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 55%, var(--bg-1) 100%);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(20, 15, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(181, 168, 154, 0.25);
    border-radius: 60px;
    padding: 10px 20px 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.1);
    white-space: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 14px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--tan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 40px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--text-strong);
    background: rgba(134, 185, 255, 0.16);
}

.nav-cta {
    margin-left: 8px;
    background: linear-gradient(135deg, var(--accent), #a8792a);
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 40px !important;
    font-size: 12.5px !important;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5) !important;
    background: none !important;
    background: linear-gradient(135deg, #d4a93e, var(--accent)) !important;
}

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0b08;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(181, 168, 154, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 10% 60%, rgba(139, 110, 90, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(181, 168, 154, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181, 168, 154, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 480px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
}

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

.btn-primary {
    background: linear-gradient(135deg, #BFC1C2, #BFC1C2);
    color: black;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(78, 131, 215, 0.45);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(78, 131, 215, 0.55);
    background: linear-gradient(135deg, #83b8ff, #BFC1C2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(191, 193, 194, 0.35);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(134, 185, 255, 0.1);
    border-color: rgba(134, 185, 255, 0.45);
    color: var(--text-strong);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(181, 168, 154, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 380px;
}

.hero-door-icon {
    width: 120px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.hero-door-icon svg {
    width: 100%;
    height: 100%;
}

.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-phone:hover {
    background: rgba(201, 169, 110, 0.2);
}

/* ─── SECTION COMMON ─── */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201, 169, 110, 0.4), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 580px;
}

/* ─── ABOUT ─── */
#about {
    background: #0f0d0a;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-stack {
    position: relative;
    height: 480px;
}

.about-card-main {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 78%;
    height: 85%;
    background: linear-gradient(135deg, rgba(181, 168, 154, 0.1), rgba(201, 169, 110, 0.06));
    border: 1px solid rgba(181, 168, 154, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.03);
}

.about-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 55%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(139, 110, 90, 0.08));
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-card-accent .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.about-card-accent .big-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 0 12px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ─── SERVICES GLASS ─── */
#services {
    position: relative;
}

.services-bg-wrap {
    background: linear-gradient(180deg, #0d0b08 0%, #110e09 50%, #0d0b08 100%);
    padding: 100px 0;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 110, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(139, 110, 90, 0.1));
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.glass-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.glass-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── SERVICE AREAS ─── */
#areas {
    background: #0a0806;
}

.areas-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.city-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(181, 168, 154, 0.12);
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s;
    cursor: default;
    font-weight: 500;
}

.city-chip:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--accent);
}

.city-chip.main {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.35);
    color: var(--accent);
    font-weight: 600;
}

/* ─── WHY US ─── */
#why {
    background: linear-gradient(135deg, #110e09 0%, #0d0b08 100%);
    padding: 100px 0;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
    border: 1px solid rgba(181, 168, 154, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.04);
    transform: translateY(-4px);
}

.benefit-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ─── ADDITIONAL SERVICES TIMELINE ─── */
#additional {
    background: #0f0d0a;
    padding: 100px 0;
}

.timeline-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.timeline-wrap {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    margin-top: 60px;
    gap: 0;
}

.timeline-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.5), rgba(201, 169, 110, 0.5), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
    margin: 0;
    flex-shrink: 0;
}

.timeline-spacer {
    flex: 1;
}

.timeline-left,
.timeline-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    padding: 28px 0;
    position: relative;
}

.timeline-left .timeline-item {
    padding-right: 30px;
    text-align: right;
}

.timeline-right .timeline-item {
    padding-left: 30px;
}

.tl-badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.tl-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.7;
}

/* ─── FAQ ─── */
#faq {
    background: #0a0806;
    padding: 100px 0;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid rgba(181, 168, 154, 0.12);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-city {
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 6px;
    opacity: 0.8;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--accent);
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(201, 169, 110, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ─── CONTACT ─── */
#contact {
    background: linear-gradient(180deg, #0d0b08, #110e09);
    padding: 100px 0;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header .section-label {
    justify-content: center;
}

.contact-header .section-label::after {
    display: none;
}

.contact-header .section-label::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, rgba(201, 169, 110, 0.4), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(181, 168, 154, 0.12);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
}

.contact-info-card .icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.contact-info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-size: 11px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(181, 168, 154, 0.15);
    height: 360px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.85;
}

/* ─── FOOTER ─── */
footer {
    background: #080605;
    border-top: 1px solid rgba(181, 168, 154, 0.1);
    padding: 70px 40px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--tan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-name span {
    color: var(--accent);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.footer-col h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ─── DIVIDERS ─── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181, 168, 154, 0.15), transparent);
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── COLOR SYSTEM OVERRIDES ─── */
#home,
#about,
#areas,
#faq,
#additional,
#contact,
footer,
.services-bg-wrap,
#why,
#comprehensive-services {
    background: linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 55%, var(--bg-3) 100%) !important;
}

.section-title,
.hero-title,
.glass-title,
.benefit-title,
.tl-title,
.faq-q-text,
.footer-logo-name,
.contact-info-card p,
.contact-info-card a {
    color: var(--text-strong) !important;
}

.hero-subtitle,
.section-subtitle,
.glass-desc,
.benefit-desc,
.tl-desc,
.faq-answer,
.footer-desc,
.footer-col ul li a,
.footer-copy,
.footer-links a,
.city-chip,
.hero-card-sub,
.about-feature-text p,
.stat-label {
    color: var(--text-main) !important;
}

.navbar,
.hero-card,
.glass-card,
.benefit-card,
.contact-info-card,
.map-container,
.city-chip {
    background: rgba(22, 34, 48, 0.72) !important;
    border-color: rgba(134, 185, 255, 0.22) !important;
}

.glass-card:hover,
.benefit-card:hover,
.city-chip:hover {
    background: rgba(27, 42, 58, 0.92) !important;
    border-color: rgba(134, 185, 255, 0.45) !important;
}

.city-chip.main,
.hero-phone,
.faq-icon,
.about-feature-icon {
    background: rgba(134, 185, 255, 0.14) !important;
    border-color: rgba(134, 185, 255, 0.35) !important;
    color: var(--text-strong) !important;
}

.section-label,
.faq-city,
.footer-col h5,
.tl-badge,
.stat-num,
.nav-logo-text span {
    color: #9bc4ff !important;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .about-wrap {
        grid-template-columns: 1fr;
    }

    .about-img-stack {
        display: none;
    }

    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline-wrap {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }

    .timeline-right {
        padding-left: 0;
    }

    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .areas-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 12px;
        gap: 4px;
    }

    .nav-links {
        display: none;
    }

    .glass-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}