/* =====================================================
   Deepak Packers & Movers — Premium Design System
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #065f46;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-lighter: #34d399;
    --accent: #84cc16;
    --accent-dark: #65a30d;
    --accent-light: #a3e635;
    --accent-glow: rgba(132, 204, 22, 0.4);

    --text-dark: #064e3b;
    --text-body: #3f6212;
    --text-muted: #4d7c0f;
    --text-light: #65a30d;
    --text-white: #FFFFFF;

    --bg-dark: #064e3b;
    --bg-primary: #065f46;
    --bg-light: #F5F5DC;
    --bg-lighter: #fefce8;
    --bg-white: rgba(255, 255, 255, 0.85);
    --bg-card: rgba(255, 255, 255, 0.25);
    
    --glass-border: rgba(255, 255, 255, 0.4);

    --border: rgba(255, 255, 255, 0.4);
    --border-light: rgba(255, 255, 255, 0.2);

    --shadow-sm: 0 1px 3px rgba(6, 95, 70, 0.1);
    --shadow: 0 4px 16px rgba(6, 95, 70, 0.15);
    --shadow-md: 0 8px 32px rgba(6, 95, 70, 0.2);
    --shadow-lg: 0 16px 48px rgba(6, 95, 70, 0.3);
    --shadow-accent: 0 0 24px rgba(132, 204, 22, 0.6);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

    --container-max: 1280px;
    --navbar-height: 110px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-light); /* Beige secondary color */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--accent); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section --- */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-white);
}

.section-light { background: var(--bg-light); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(132, 204, 22, 0.85) 100%);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(132, 204, 22, 1) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn i.fa-arrow-right {
    transition: transform var(--transition);
}

.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* --- Loader --- */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    width: 120px;
    margin: 0 auto 20px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: var(--bg-lighter);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    height: 150px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

.navbar-transparent {
    background: transparent;
}

.navbar-solid {
    background: rgba(245, 245, 220, 0.65); /* Beige translucent */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.navbar-logo img {
    height: 140px;
    width: 260px;
    transition: all var(--transition);
}

.navbar-solid .navbar-logo img {
    height: 140px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu > li {
    position: relative;
}

.navbar-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbar-solid .navbar-menu > li > a {
    color: var(--text-dark);
}

.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
    color: var(--accent);
}

.navbar-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Dropdown */
.navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.navbar-menu > li:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.navbar-dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 24px;
}

/* Quote button in nav */
.nav-quote-btn {
    background: var(--accent) !important;
    color: var(--text-white) !important;
    border-radius: var(--radius) !important;
    padding: 10px 24px !important;
}

.nav-quote-btn:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all var(--transition);
}

.navbar-solid .navbar-toggle span {
    background: var(--text-dark);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero.full-screen-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
    background: #000;
}

.hero-slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow-bg .slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow-bg .slideshow-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,26,41,0.85) 0%, rgba(17,45,70,0.7) 100%);
    z-index: 2;
}

.hero-container-centered {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.centered-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,132,44,0.15);
    border: 1px solid rgba(232,132,44,0.3);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.centered-content h1 {
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.centered-content h1 .highlight {
    color: var(--accent);
    position: relative;
    text-shadow: none;
}

.centered-content .hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 700px;
    text-align: left;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.centered-content .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.hero-phone-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,132,44,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(232,132,44,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(232,132,44,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,132,44,0); }
}

.hero-phone a {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .hero.full-screen-hero {
        min-height: auto;
        padding-top: calc(var(--navbar-height) + 20px);
        padding-bottom: 40px;
    }
    
    .hero-slideshow-bg .slideshow-img {
        object-position: 80% center;
    }

    .centered-content {
        background: rgba(11, 26, 41, 0.6);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(8px);
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 15px;
        width: auto;
    }

    .centered-content h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .centered-content .hero-description {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        gap: 12px;
    }
    .hero-phone {
        font-size: 0.9rem;
    }
}

/* --- Stats Section --- */
.stats-section {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 5;
    margin-top: -40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .accent { color: var(--primary); }

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    grid-auto-flow: dense;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-wide, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.service-card {
    position: relative;
    border-radius: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 0 2px var(--accent);
    z-index: 10;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background var(--transition), opacity var(--transition);
    z-index: 1;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(6, 95, 70, 0.85) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    width: 100%;
}

.service-content h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease;
    display: block;
    transform-origin: center bottom;
}

.service-card:hover .service-content h4 {
    color: var(--accent-light);
    transform: translateY(-10px) scale(1.08);
}

/* --- How It Works / Process --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 12px;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.process-step.active .process-number,
.process-step:hover .process-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.process-step h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Why Choose Us / Advantage (Split Layout) --- */
.advantage-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.advantage-intro {
    position: sticky;
    top: 120px;
}

.advantage-intro .section-subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Vibrant Animated Background Section --- */
.section-vibrant {
    position: relative;
    background: #042f20; /* Very deep rich green to contrast the orbs */
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 1;
    animation: floatOrb 15s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: var(--accent);
}

.orb-2 {
    bottom: -20%; right: -10%;
    width: 500px; height: 500px;
    background: var(--primary-light);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%; left: 60%;
    width: 400px; height: 400px;
    background: rgba(132, 204, 22, 0.4);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.2); }
}

/* --- Why Choose Us (Frosted Glass Accordion) --- */
.hover-expand-grid {
    display: flex;
    height: 480px;
    gap: 15px;
    width: 100%;
}

.he-card {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2), 
        inset 1px 1px 15px rgba(255, 255, 255, 0.3),
        inset -1px -1px 15px rgba(0, 0, 0, 0.1);
}

.he-card:hover {
    flex: 4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px 40px 10px 40px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 2px 2px 20px rgba(255, 255, 255, 0.5),
        inset -2px -2px 15px rgba(0, 0, 0, 0.1);
}

.he-icon {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.he-card:hover .he-icon {
    background: rgba(132, 204, 22, 0.8);
    color: #fff;
    left: 40px;
    transform: translateX(0) scale(1.1);
}

.he-title-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -12px;
    transition: opacity 0.3s, transform 0.5s;
    text-transform: uppercase;
}

.he-card:hover .he-title-vertical {
    opacity: 0;
    transform: rotate(180deg) translateY(-20px);
}

.he-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    min-width: 350px;
    padding-top: 20px;
}

.he-card:hover .he-content {
    opacity: 1;
    transform: translateY(0);
}

.he-content h5 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.he-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    white-space: normal;
}

/* --- Testimonials --- */
.testimonial-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 4px 40px;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Testimonial nav */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-nav button {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-nav button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
}

/* --- Gallery --- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15,38,64,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* --- Inner Page Hero --- */
.inner-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.inner-hero h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.inner-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span { color: rgba(255,255,255,0.6); }

.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232,132,44,0.08);
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-section .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 20px;
    margin-left: 8px;
}

.cta-section .cta-phone a {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1.15rem;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
    height: 130px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    color: var(--text-white);
}
.footer-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}
.footer-social a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}
.footer-social a[aria-label="Twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}
.footer-social a[aria-label="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.footer h5 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* --- Contact Form --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27,58,92,0.08);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 4px;
    display: none;
}

.form-control.error { border-color: #EF4444; }

/* Form success */
.form-success {
    text-align: center;
    padding: 60px 30px;
    display: none;
}

.form-success.show { display: block; }

.form-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto 24px;
    animation: successPop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h3 { margin-bottom: 12px; color: #059669; }

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn-call {
    background: var(--accent-dark);
    animation: pulse-call 2s infinite;
}

.float-btn-whatsapp {
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
    animation-delay: 1s; /* Offset the animation slightly */
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 163, 13, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(101, 163, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(101, 163, 13, 0);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-btn-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: 10001;
    transition: width 0.1s;
}

/* --- About Split Section --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.about-image-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* --- Contact Info Cards --- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232,132,44,0.1), rgba(232,132,44,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 16px;
}

.contact-card h5 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Map --- */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- 404 Page --- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
}

.error-page h1 {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -20px;
}

.error-page h2 {
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Honeypot --- */
.hp-field { 
    position: absolute; 
    left: -9999px; 
    opacity: 0; 
    height: 0; 
    width: 0; 
    overflow: hidden;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal, .reveal-left, .reveal-right,
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }
    
    html { scroll-behavior: auto; }
}

/* --- Custom Glassmorphism Additions --- */
.section-dark, thead th, .table-header, .solid-complementary {
    background: #065f46 !important;
    border-bottom: 3px solid #047857 !important;
    color: #ffffff !important;
}

thead th {
    padding: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}


.footer {
    background: #065f46 !important;
    border-bottom: 3px solid #047857 !important;
}


/* Infinite Logo Marquee */
.logo-marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    gap: 40px;
}

.logo-marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 15s linear infinite;
    flex-shrink: 0;
}

.client-logo {
    max-height: 85px;
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 40px)); }
}

/* Fix mirrored phone icons */
.fa-phone-alt::before, .fa-phone::before { display: inline-block; transform: scaleX(-1); }

/* --- Wave Input Effect --- */
.wave-group {
  position: relative;
  margin-bottom: 24px;
}

.wave-group .input {
  font-size: 16px;
  padding: 14px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.wave-group .input:focus {
  outline: none;
  border-bottom-color: transparent;
}

.wave-group textarea.input {
  min-height: 120px;
  resize: vertical;
}

.wave-group select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.wave-group .label {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 14px;
  display: flex;
}

.wave-group .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * 0.05s);
}

.wave-group .input:focus ~ .label .label-char,
.wave-group .input:not(:placeholder-shown) ~ .label .label-char,
.wave-group .input.force-wave ~ .label .label-char {
  transform: translateY(-26px);
  font-size: 13px;
  color: var(--primary);
}

.wave-group .bar {
  position: relative;
  display: block;
  width: 100%;
}

.wave-group .bar:before,
.wave-group .bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: var(--primary);
  transition: 0.2s ease all;
}

.wave-group .bar:before { left: 50%; }
.wave-group .bar:after { right: 50%; }

.wave-group .input:focus ~ .bar:before,
.wave-group .input:focus ~ .bar:after { width: 50%; }

/* --- Advantage Section --- */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.advantage-card h5 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Contact Layout --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
