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

/* Variables */
:root {
    --primary-blue: #1E40AF;
    --primary-blue-light: #3B82F6;
    --primary-green: #10B981;
    --primary-green-hover: #059669;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-blue:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Modern Header */
/* Modern Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav-wrapper {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.brand-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.brand-logo .logo-icon {
    color: var(--primary-green);
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-green);
}
.nav-actions {
    display: flex;
    align-items: center;
}
/* Footer */
.site-footer {
    background: var(--dark-green);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-col h3 {
    margin-bottom: 20px;
    color: var(--secondary-green);
    font-size: 1.2em;
}
.footer-col p {
    color: #e0e0e0;
    margin-bottom: 12px;
}
.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {

    .header-top-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

}

/* Layout & Sections */
.section {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--light-green);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    color: var(--primary-green);
    font-size: 2.2em;
    margin-bottom: 10px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.align-center {
    align-items: center;
}

/* Hero Section */
}

/* Cards & Elements */
.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.card h3 {
    margin-bottom: 15px;
    color: var(--dark-green);
}
.card p {
    color: #666;
    margin-bottom: 20px;
}
.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.btn-outline:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Feature List */
.feature-list {
    list-style: none;
}
.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2em;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2em;
}
.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.author {
    font-weight: bold;
    color: var(--dark-green);
}

/* Form Styles */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(56, 124, 83, 0.1);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* Multi-step Form */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
}
.progress-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.85em;
    color: #888;
    background: #f1f1f1;
    transition: all 0.3s ease;
}
.progress-step.active {
    background: var(--primary-green);
    color: #fff;
    font-weight: bold;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}
.step-actions .btn {
    flex: 1;
    text-align: center;
}
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.alert-success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}
.alert-error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ffcdd2;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Thank You Page */
.text-center { text-align: center; }
.text-pink { color: #e91e63; }
.success-icon {
    width: 60px; height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5em;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(56, 124, 83, 0.3);
}
.ty-title { font-size: 2.2em; margin-bottom: 10px; color: #1a237e; font-weight: 900;}
.ty-subtitle { font-size: 1.1em; color: #555; margin-bottom: 30px; }

.ty-notice {
    background: #fffdf5;
    border: 1px solid #ffe082;
    border-left: 5px solid #ffb300;
    padding: 20px;
    border-radius: 8px;
    display: flex; gap: 15px;
    margin-bottom: 30px;
}
.notice-icon { font-size: 1.5em; margin-top: 2px;}
.notice-text strong { color: #b07d00; display: block; margin-bottom: 5px; font-size: 1.05em;}
.notice-text p { color: #666; font-size: 0.95em; margin: 0; line-height: 1.5;}

.ty-summary {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fdfdfd;
    margin-bottom: 30px;
    padding: 20px;
}
.summary-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700; color: #777; font-size: 0.9em;
}
.badge-green {
    background: #e8f5e9; color: #2e7d32;
    padding: 6px 12px; border-radius: 20px; font-size: 0.85em; font-weight: bold;
}
.summary-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.summary-item {
    background: #fff; border: 1px solid #eaeaea;
    padding: 15px; border-radius: 8px;
}
.summary-item label {
    font-size: 0.75em; color: #999; font-weight: bold;
    text-transform: uppercase; display: block; margin-bottom: 5px;
}
.summary-item .value { font-weight: 700; color: #222; font-size: 1.05em;}

.ty-action-box {
    border: 2px dashed #f8bbd0;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    background: #fffafb;
}
.action-title { color: #1a237e; margin-bottom: 10px; font-weight: 800;}
.action-desc { color: #666; font-size: 0.95em; margin-bottom: 25px; line-height: 1.5;}
.btn-full { display: block; width: 100%; margin-bottom: 15px; font-size: 1.1em; padding: 15px; }
.action-buttons { display: flex; gap: 15px; }
.btn-half { flex: 1; text-align: center; padding: 12px; font-weight: 600; border-radius: 8px;}
.btn-light { background: #f0f2f5; color: #333; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-light:hover { background: #e4e6e9; }
@media (max-width: 600px) {
    .summary-grid { grid-template-columns: 1fr; }
    .action-buttons { flex-direction: column; }
}

/* Dropdown Menu */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; position: absolute; background-color: #fff;
    min-width: 220px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100; border-radius: 8px; overflow: hidden; top: 100%; left: 0;
}
.dropdown-content a {
    color: #444; padding: 12px 16px; text-decoration: none; display: block;
    border-bottom: 1px solid #f1f1f1;
}
.dropdown-content a:hover { background-color: #f9f9f9; color: var(--primary-green); font-weight: 500;}
.dropdown:hover .dropdown-content, .dropdown.active .dropdown-content { display: block; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite ease-in-out;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hamburger Menu & Mobile Nav */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    position: relative;
}
.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s linear;
}
.hamburger.toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.toggle span:nth-child(2) { opacity: 0; }
.hamburger.toggle span:nth-child(3) { transform: rotate(-45deg) translate(8px, -10px); }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 70%;
        height: 100vh;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 100;
        align-items: flex-start;
        padding-left: 30px;
        gap: 20px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border-left: 2px solid var(--primary-green);
        padding-left: 10px;
        margin-top: 10px;
        border-radius: 0;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
}

/* How It Works */
.step-card {
    text-align: center;
    padding: 30px 20px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(56, 124, 83, 0.3);
}

/* Areas We Serve */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.area-tag {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--dark-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.area-tag:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content p {
    padding-bottom: 20px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
.faq-icon {
    font-size: 1.5em;
    color: var(--primary-green);
    transition: transform 0.3s;
}
.faq-item.active .faq-content {
    max-height: 300px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    .hero-actions {
        justify-content: center;
    }
}
/* 2026 Modern Hero Section */
.hero-modern {
    background-color: #F8FAFC; /* Light icy blue background */
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}
.top-left {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(255,255,255,0) 70%);
}
.bottom-right {
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(255,255,255,0) 70%);
}
.floating-icon {
    position: absolute;
    color: var(--primary-green);
    font-size: 24px;
    z-index: 1;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}
.icon-1 { top: 20%; left: 10%; color: var(--primary-blue); }
.icon-2 { top: 60%; right: 40%; font-size: 16px; }
.icon-3 { bottom: 20%; left: 30%; color: var(--primary-blue-light); font-size: 30px; }

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green-hover);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.badge-icon {
    font-size: 16px;
    margin-right: 8px;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}
.highlight-green {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}
.swoosh {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
}

.hero-subtitle-modern {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
}

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

.hero-image-modern {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-blob-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background: var(--primary-blue);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}
.cutout-img {
    width: 100%;
    max-width: 450px;
    z-index: 2;
    object-fit: cover;
}
.floating-trust-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}
.trust-stars {
    font-size: 16px;
    margin-bottom: 5px;
}
.trust-text {
    font-size: 13px;
    color: var(--text-light);
}
.trust-text strong {
    color: var(--text-dark);
    font-size: 16px;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero-title-modern { font-size: 3rem; }
    .image-blob-bg { width: 100%; height: 100%; }
    .floating-trust-card { left: 10px; bottom: 10px; }
}
@media (max-width: 768px) {
    .hero-modern { padding: 60px 0 80px; text-align: center; }
    .hero-subtitle-modern { margin: 0 auto 30px; }
    .hero-actions-modern { justify-content: center; }
    .swoosh { display: none; }
    .image-blob-bg { margin-top: 40px; }
}

/* Modern About Us */
.about-modern {
    padding: 100px 0;
    background-color: var(--white);
}
.about-images {
    position: relative;
    padding-right: 20px;
}
.about-images img {
    object-fit: cover;
    height: 100%;
}

/* Modern Services */
.services-modern {
    padding: 100px 0;
}
.service-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 64, 175, 0.1);
}
.service-card-modern.highlighted:hover {
    transform: translateY(-15px);
    border-color: transparent;
}
.service-link {
    transition: all 0.3s ease;
}
.service-card-modern:not(.highlighted) .service-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* =========================================
   PHASE 3: MOBILE UX OVERHAUL
   ========================================= */

/* Mobile Bottom Sticky Bar */
.mobile-bottom-bar {
    display: none;
}

/* WhatsApp Widget Overrides */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    /* Hide top bar and header button */
    .top-bar { display: none; }
    .nav-actions { display: none; }
    
    .navbar { padding: 15px 0; }
    
    /* Hamburger Animation */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 10px;
        transition: all 0.3s ease;
        transform-origin: left;
    }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

    /* Slide-in Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li a {
        font-size: 1.2rem;
    }

    /* Mobile Bottom Sticky Bar */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: var(--white);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 998;
    }
    .bottom-bar-btn {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        color: var(--white);
    }
    .call-btn {
        background-color: var(--primary-blue);
    }
    .book-btn {
        background-color: var(--primary-green);
    }
    
    /* Pad the body so content isn't hidden behind the sticky bar */
    body {
        padding-bottom: 70px;
    }
    
    /* Bump WhatsApp widget above the sticky bar */
    .floating-whatsapp {
        bottom: 90px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Phase 4 overrides */
@media (max-width: 768px) {
    .nav-links {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding-top: 100px !important;
        padding-left: 40px !important;
        gap: 30px !important;
    }
}
/* Chevron animation */
.chevron {
    transition: transform 0.3s ease;
}
.dropdown:hover .chevron, .dropdown.active .chevron {
    transform: rotate(180deg);
}

/* Force mobile dropdown layout fix */
@media (max-width: 768px) {
    .dropdown {
        display: block !important;
        width: 100%;
    }
    .dropdown-content {
        position: relative !important; top: auto !important; left: auto !important;
        display: none;
        width: 100%;
        margin-top: 10px;
        background: transparent !important;
        box-shadow: none !important;
    }
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    .dropdown-content a {
        padding: 10px 15px !important;
        border-bottom: none !important;
    }
}

/* Global Booking Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.booking-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}
.booking-modal-overlay.active .booking-modal-content {
    transform: translateY(0) scale(1);
}
.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}
.booking-modal-close:hover {
    color: var(--primary-green);
}

/* Modern Form Overrides (2026) */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    background-color: var(--light-bg) !important;
    transition: all 0.3s ease !important;
    color: var(--text-dark) !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--primary-green) !important;
    background-color: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}
.form-group label {
    font-size: 14px !important;
    color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    display: block !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   PHASE 7: MODERN TESTIMONIALS & DARK FOOTER
   ========================================================================== */

/* Modern Testimonials */
.testimonials-section { background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); padding: 80px 0; }
.modern-testimonial { 
    background: #ffffff; 
    border-radius: 16px; 
    padding: 35px 25px; 
    box-shadow: 0 10px 30px -10px rgba(30, 64, 175, 0.1); 
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    z-index: 1;
}
.modern-testimonial:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(30, 64, 175, 0.15); }
.modern-testimonial::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 80px;
    color: rgba(16, 185, 129, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
}
.testimonial-stars { color: #fbbf24; font-size: 20px; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-dark); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary-blue); font-size: 1.1rem; }
.testimonial-badge { font-size: 0.85rem; color: var(--primary-green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; display: block; }

/* Dark Premium Footer */
.site-footer { 
    background: var(--primary-blue); 
    color: #f8fafc; 
    padding: 70px 0 30px; 
    position: relative; 
    border-top: 4px solid var(--primary-green);
}
.site-footer h3 { color: #ffffff; font-size: 1.25rem; margin-bottom: 20px; font-weight: 700; }
.site-footer p { color: #cbd5e1; line-height: 1.7; font-size: 0.95rem; }
.site-footer a { color: #93c5fd; text-decoration: none; transition: color 0.2s; display: block; margin-bottom: 12px; }
.site-footer a:hover { color: #ffffff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
.footer-contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-green); margin-top: 3px; }
.footer-contact-item p { margin: 0; }
.footer-contact-item a { display: inline-block; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 25px; text-align: center; }
.footer-bottom p { color: #94a3b8; font-size: 0.9rem; }
