/* ═══════════════════════════════════════════════════════════════════════════
   Father & Son Moving Co. — Stylesheet
   Palette: White #FFF, Light Blue #7E8BE6, Blue #2537D5, Black #000
   Accent: #FF8C00 (Amber)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    /* Palette */
    --white: #FFFFFF;
    --light-blue: #7E8BE6;
    --blue: #2537D5;
    --black: #000000;
    --accent: #FF8C00;
    --accent-hover: #E07B00;

    /* Light theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F5FB;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F0F1FA;
    --bg-nav: rgba(255,255,255,0.92);
    --bg-hero: linear-gradient(135deg, #1a1f6e 0%, #2537D5 40%, #7E8BE6 100%);
    --bg-footer: #0a0e3d;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a8;
    --text-on-dark: #FFFFFF;
    --border: #e0e2f0;
    --border-card: #e0e2f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-card: 0 2px 12px rgba(37,55,213,0.06);
    --shadow-card-hover: 0 8px 30px rgba(37,55,213,0.12);
    --nav-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

[data-theme="dark"] {
    --bg-primary: #0d0f24;
    --bg-secondary: #141633;
    --bg-card: #1a1d40;
    --bg-card-hover: #222555;
    --bg-nav: rgba(13,15,36,0.95);
    --bg-hero: linear-gradient(135deg, #080a1e 0%, #141870 40%, #3040a8 100%);
    --bg-footer: #080a1e;
    --text-primary: #e8e9f5;
    --text-secondary: #b0b2d0;
    --text-muted: #6e70a0;
    --text-on-dark: #FFFFFF;
    --border: #2a2d55;
    --border-card: #2a2d55;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.2);
    --shadow-card-hover: 0 8px 30px rgba(126,139,230,0.15);
    --nav-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 73px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 100%; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1025px) { .container { padding: 0 150px; } }
.text-accent { color: var(--accent); }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--bg-nav); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--nav-shadow);
    transition: background 0.3s, border 0.3s, box-shadow 0.3s;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.logo-icon { display: none; }
.logo-icon-img {
    width: 36px; height: 36px; object-fit: contain;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 18px; display: block; line-height: 1.1; }
.logo-sub { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--text-muted); display: block; }

.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-links li { text-align: center; }
.nav-links li:not(:last-child):not(:first-child) a { display: block; width: 100px; text-align: center; white-space: nowrap; }
.nav-home { width: 50px !important; display: flex !important; align-items: center; justify-content: center; padding: 8px 0 !important; background: none !important; border-radius: 0 !important; }
.nav-home:hover { background: none !important; }
.nav-home svg { transition: color 0.2s, transform 0.2s; }
.nav-home:hover svg { color: var(--accent); transform: scale(1.15); }
.nav-home::after { display: none !important; }
.nav-links a {
    padding: 8px 16px; font-size: 14px; font-weight: 500;
    color: var(--text-secondary); border-radius: 8px;
    transition: all 0.2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
    height: 2px; background: var(--blue); border-radius: 2px;
    transform: scaleX(0); transition: transform 0.25s ease;
}
[data-theme="dark"] .nav-links a::after { background: var(--light-blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
[data-theme="dark"] .nav-links a.active { color: var(--light-blue); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--accent) !important; color: var(--white) !important;
    font-weight: 600 !important; border-radius: 8px !important;
    padding: 8px 20px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-hover) !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg-card); cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--light-blue); background: var(--bg-card-hover); }
.lang-label {
    font-size: 13px; font-weight: 700; color: var(--text-primary);
    letter-spacing: 0.5px;
}

.theme-toggle {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg-card); cursor: pointer; display: flex;
    align-items: center; justify-content: center; font-size: 18px;
    transition: all 0.2s; position: relative;
}
.theme-toggle:hover { border-color: var(--light-blue); background: var(--bg-card-hover); }
.theme-icon-light, .theme-icon-dark { position: absolute; transition: opacity 0.3s, transform 0.3s; }
[data-theme="light"] .theme-icon-dark { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="light"] .theme-icon-light { opacity: 1; transform: rotate(0deg) scale(1); color: #1a1a2e; }
[data-theme="dark"] .theme-icon-light { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="dark"] .theme-icon-dark { opacity: 1; transform: rotate(0deg) scale(1); color: #FFD700; }

.nav-phone {
    display: flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.nav-phone:hover { border-color: var(--blue); background: var(--bg-card-hover); }
.phone-icon { font-size: 16px; }

.hamburger {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-primary);
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
    background: linear-gradient(135deg, #0a0e3d 0%, #1a1f6e 40%, #2537D5 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    z-index: 2;
}
.hero-white-bar {
    position: absolute; top: 25%; right: 0;
    width: 55%; height: 55%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,1) 15%,
        rgba(255,255,255,1) 85%,
        rgba(255,255,255,0) 100%
    );
    z-index: 1;
    display: flex; align-items: center; justify-content: center;
    padding-left: 7%;
}
.hero-bar-logo {
    max-width: 140%; max-height: 140%; object-fit: contain;
}
[data-theme="dark"] .hero { background: #0d0f24; }
[data-theme="dark"] .hero::before {
    background: linear-gradient(135deg, #080a1e 0%, #141870 40%, #2537D5 100%);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-split {
    position: relative; z-index: 3; display: flex; align-items: center;
    gap: 40px; width: 100%;
}
.hero-content { flex: 1; text-align: left; max-width: 580px; }
.hero-badge {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(42px, 7vw, 72px);
    font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-sub {
    font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.8);
    max-width: 640px; margin: 0 0 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn { min-width: 200px; text-align: center; }

/* Hero Right (placeholder for future image/logo) */
.hero-right {
    flex: 1; min-height: 300px; display: flex; align-items: center; justify-content: center;
    z-index: 1;
}
.hero-content { z-index: 1; }
.hero-mobile-logo { display: none; }

.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    padding: 20px 48px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
    max-width: 640px;
    backdrop-filter: blur(8px);
}
.stat { text-align: center; flex: 1; }
.stat-num { display: block; font-size: 24px; font-weight: 800; color: #fff; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-arrow {
    width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 28px; border-radius: 10px; font-weight: 600;
    font-size: 15px; border: 2px solid transparent; cursor: pointer;
    transition: all 0.25s; font-family: inherit;
}
.btn-primary {
    background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,140,0,0.3); }
.btn-outline {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ── Sections ── */
.section { padding: 3rem 0 20rem; overflow: hidden; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--blue);
    background: rgba(37,55,213,0.08); padding: 6px 16px; border-radius: 6px;
    margin-bottom: 16px;
}
[data-theme="dark"] .section-tag { color: var(--light-blue); background: rgba(126,139,230,0.12); }
.section-header h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 48px);
    font-weight: 800; margin-bottom: 16px; line-height: 1.2;
}
.section-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* ── Services Grid ── */
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
    border-radius: 16px; padding: 16px 28px; transition: all 0.3s;
    box-shadow: var(--shadow-card); position: relative; overflow: hidden;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, #c0c0c0, #7E8BE6, #2537D5) border-box;
    border: 2px solid transparent;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 8px; filter: saturate(0) brightness(0); }
[data-theme="dark"] .service-icon { filter: saturate(0) brightness(0) invert(1); }
.service-icon-color { filter: none !important; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── About ── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.about-image-placeholder {
    background: var(--bg-card); border: 2px dashed var(--border); border-radius: 20px;
    min-height: 400px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px; color: var(--text-muted); font-size: 14px;
}
.about-photo {
    width: 100%; border-radius: 20px; object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
[data-theme="dark"] .about-photo {
    box-shadow: 0 8px 32px rgba(37,55,213,0.4);
}
.about-text { max-width: 100%; }
.about-text h2 { text-align: left; margin-bottom: 20px; }
.about-text .section-tag { margin-bottom: 16px; }
.about-text p { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }
.about-features { margin-top: 28px; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-feature {
    display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
}
.check-icon {
    width: 22px; height: 22px; border-radius: 50%; background: rgba(37,55,213,0.1);
    color: var(--blue); display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}
[data-theme="dark"] .check-icon { background: rgba(126,139,230,0.15); color: var(--light-blue); }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 16px; padding: 32px 28px; transition: all 0.3s;
    box-shadow: var(--shadow-card); position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.why-num {
    font-size: 48px; font-weight: 900; color: var(--blue); opacity: 0.12;
    line-height: 1; margin-bottom: 12px;
}
[data-theme="dark"] .why-num { color: var(--light-blue); opacity: 0.2; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Service Area ── */
.area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.area-map { position: relative; min-height: 300px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.area-map img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.area-info { display: flex; flex-direction: column; gap: 20px; }
.area-type {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 12px; padding: 24px; box-shadow: var(--shadow-sm);
}
.area-icon { filter: saturate(0) brightness(0); }
[data-theme="dark"] .area-icon { filter: saturate(0) brightness(0) invert(1); }
.area-type h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.area-type p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.area-map-placeholder {
    background: var(--bg-card); border: 2px dashed var(--border); border-radius: 16px;
    min-height: 340px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px; color: var(--text-muted); font-size: 14px;
}

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 16px; padding: 32px 28px; box-shadow: var(--shadow-card);
    transition: all 0.3s; display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
    font-size: 15px; color: var(--text-secondary); line-height: 1.7;
    flex: 1; font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ── Contact / Quote Form ── */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: stretch; }
.quote-form {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary);
}
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg-primary); color: var(--text-primary); font-family: inherit;
    font-size: 14px; outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue);
}
[data-theme="dark"] .form-group input, [data-theme="dark"] .form-group select, [data-theme="dark"] .form-group textarea {
    background: var(--bg-secondary);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; justify-content: space-between; }
.contact-card {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 14px; color: var(--text-secondary); }
.contact-item a:hover { color: var(--blue); }
.quick-links-card { display: flex; flex-direction: column; }
.quick-links-card a {
    padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px;
    color: var(--text-secondary); transition: color 0.2s;
}
.quick-links-card a:last-child { border-bottom: none; }
.quick-links-card a:hover { color: var(--blue); }
[data-theme="dark"] .quick-links-card a:hover { color: var(--light-blue); }

/* ── Footer ── */
.footer {
    background: var(--bg-footer); color: rgba(255,255,255,0.7); padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-icon { color: var(--light-blue); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: var(--bg-nav); backdrop-filter: blur(16px);
        flex-direction: column; padding: 16px 24px; gap: 4px;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 16px; width: 100%; }
    .hamburger { display: flex; }
    .phone-text { display: none; }
    .nav-phone { padding: 8px; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-split { flex-direction: column; text-align: center; }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-right { display: none; }
    .hero::before { width: 100%; clip-path: none; }
    .hero-white-bar { display: none; }
    .hero-mobile-logo {
        display: flex; justify-content: center;
        width: 100%; margin-top: 30px;
        padding: 20px;
        background: rgba(255,255,255,0.95);
        border-radius: 16px;
    }
    .hero-mobile-logo img { max-width: 70%; height: auto; }
    .hero h1 { font-size: 36px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 60px; height: 1px; }

    .section { padding: 60px 0; }
    .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .area-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ── */
[data-aos] {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
    opacity: 1; transform: translateY(0);
}
