:root {
    --navy: #062B6F;
    --navy-light: #0d3885;
    --teal: #14B8A6;
    --teal-hover: #119a8b;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
    --border-radius: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--teal);
    color: white;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover, .btn-primary:active {
    background-color: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 184, 166, 0.4);
}

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

.btn-outline:hover, .btn-outline:active {
    border-color: var(--navy);
    background-color: rgba(6, 43, 111, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 56px;
}

.desktop-nav {
    display: none;
    gap: 36px;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:hover {
    color: var(--teal);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-icon-btn, .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border: none;
    font-size: 18px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    width: 32px;
    height: 32px;
    font-size: 14px; 
}

.mobile-icon-btn:active, .mobile-menu-btn:active {
    transform: scale(0.95);
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
    .nav-actions {
        display: flex;
    }
    .mobile-header-actions {
        display: none;
    }
    .nav-container {
        height: 80px;
    }
    .logo img {
        height: 56px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-logo {
    height: 46px;
}

.close-menu-btn {
    background: var(--bg-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 12px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 16px;
    background-color: var(--bg-light);
    color: var(--navy);
    transition: var(--transition);
}

.mobile-nav-link .icon-wrap {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    box-shadow: var(--shadow-sm);
    font-size: 15px;
}

.mobile-nav-link:active {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--teal);
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background-color: var(--bg-white);
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: flex-end; 
    justify-content: center;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 500px;
    border-radius: 32px 32px 0 0;
    padding: 32px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .modal-overlay {
        align-items: center;
    }
    .modal-content {
        border-radius: 24px;
        padding: 40px;
        transform: scale(0.95);
        opacity: 0;
    }
    .modal-overlay.active .modal-content {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
}

.close-modal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--teal);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

/* NEW APP-STYLE BENTO HERO SECTION */
.hero {
    padding: 100px 0 60px;
    background-color: var(--bg-white);
}

.hero-container {
    padding: 0 16px; 
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 24px;
    }
}

.hero-card {
    position: relative;
    width: 100%;
    min-height: 550px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 43, 111, 0.3) 0%, rgba(6, 43, 111, 0.85) 100%);
    z-index: 1;
}

.hero-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-card-content h1 {
    color: white;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-card-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

.badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Booking Bar in Hero */
.hero-booking-bar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.booking-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    color: white;
    font-weight: 600;
    flex: 1;
}

.booking-input i {
    color: var(--teal);
    font-size: 18px;
}

.hero-booking-bar .btn {
    margin-left: auto;
    white-space: nowrap;
}

.trust-indicators-center {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-indicators-center .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.trust-indicators-center .trust-item i {
    color: var(--teal);
}

@media (min-width: 768px) {
    .hero-card {
        min-height: 650px;
        padding: 60px;
    }
    .hero-card-content h1 {
        font-size: 64px;
    }
    .hero-card-content p {
        font-size: 18px;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -40px; 
    padding: 0 16px;
}

@media (min-width: 768px) {
    .stats-section {
        margin-top: -60px;
        padding: 0 24px;
    }
}

.stats-container {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
    gap: 24px;
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px;
    }
}

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

.stat-box h3 {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-box p {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--bg-white);
}

.service-image {
    position: relative;
    padding-top: 65%;
    background: var(--border);
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
}

.placeholder-img i {
    font-size: 48px;
    opacity: 0.3;
}

.placeholder-img span {
    font-size: 14px;
    font-weight: 700;
}

.service-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    padding: 12px;
    border: 1px solid var(--border);
}

.service-icon img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content {
    padding: 40px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    flex: 1;
}

/* Before & After Gallery */
.before-after {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    background: var(--border);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.img-compare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.label-before, .label-after {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(0,0,0,0.7);
    color: white;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: #e2e8f0;
    gap: 16px;
}

.placeholder-gallery i {
    font-size: 56px;
    opacity: 0.3;
}
.placeholder-gallery p {
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.step-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--bg-white);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(6, 43, 111, 0.3);
}

.step-icon {
    font-size: 48px;
    color: var(--teal);
    margin-bottom: 24px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--navy);
    color: white;
    border-radius: 0;
}

@media (min-width: 992px) {
    .features {
        margin: 40px 24px;
        border-radius: 32px;
    }
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

@media (min-width: 992px) {
    .features-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--teal);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--teal);
    color: white;
    transform: rotate(10deg);
}

.feature-item h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* SEO Areas */
.seo-areas {
    padding: 80px 0;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border);
}

.areas-grid {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 640px) {
    .area-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .area-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

.area-list li {
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
}

.area-list li::before {
    content: '•';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-main);
    font-style: italic;
    margin: 20px 0;
    line-height: 1.7;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.customer-details strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
}

.customer-details span {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}


/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

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

@media (min-width: 640px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    height: 44px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
    border: 1px solid var(--border);
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--teal);
    color: white;
    border-color: var(--teal);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--teal);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-contact p a {
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--teal);
}

.footer-contact i {
    color: var(--teal);
    margin-top: 4px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 15px;
}

/* Bottom Mobile Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
    z-index: 1000;
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom, 10px);
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    flex: 1;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--teal);
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .nav-fab {
    width: 48px;
    height: 48px;
    background-color: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    margin-bottom: 4px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
    transition: var(--transition);
}

.mobile-bottom-nav .nav-item:active .nav-fab {
    transform: scale(0.95);
    background-color: var(--teal-hover);
}

.mobile-bottom-nav .nav-fab i {
    font-size: 20px;
}

/* MODERN HERO OVERRIDES */
.hero-modern { position: relative; padding-top: 150px; padding-bottom: 120px; background-color: var(--navy); overflow: hidden; }
@media (min-width: 992px) { .hero-modern { min-height: 85vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 120px; } }

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(6, 43, 111, 0.95) 0%, rgba(6, 43, 111, 0.7) 50%, rgba(20, 184, 166, 0.4) 100%); }

.hero-content-modern { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 992px) { .hero-content-modern { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; } }

.hero-text-area { color: white; display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 992px) { .hero-text-area { align-items: flex-start; text-align: left; } }

.premium-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 24px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
@media (min-width: 992px) { .premium-badge { font-size: 14px; } }

.pulse-dot { width: 8px; height: 8px; background-color: var(--teal); border-radius: 50%; box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); } 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); } }

.hero-title { font-size: 34px; line-height: 1.2; margin-bottom: 16px; letter-spacing: -1px; color: white; }
@media (min-width: 768px) { .hero-title { font-size: 64px; letter-spacing: -1.5px; margin-bottom: 20px; } }
.hero-title span { color: var(--teal); }

.hero-subtitle { font-size: 15px; color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; max-width: 500px; line-height: 1.6; }
@media (min-width: 768px) { .hero-subtitle { font-size: 17px; margin-bottom: 40px; } }

.hero-action-box { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 12px; border-radius: 20px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); width: 100%; }
@media (min-width: 640px) { .hero-action-box { flex-direction: row; align-items: center; max-width: 550px; border-radius: 60px; padding: 8px 8px 8px 24px; margin-bottom: 20px; } }

.hero-phone-highlight { display: flex; align-items: center; justify-content: center; gap: 12px; background: rgba(20, 184, 166, 0.15); border: 1px solid rgba(20, 184, 166, 0.4); padding: 12px 24px; border-radius: 50px; font-size: 18px; font-weight: 800; color: white; margin-bottom: 30px; width: 100%; max-width: 320px; backdrop-filter: blur(10px); }
@media (min-width: 640px) { .hero-phone-highlight { justify-content: flex-start; display: inline-flex; width: auto; font-size: 22px; padding: 12px 30px; margin-bottom: 40px; } }
.hero-phone-highlight i { color: var(--teal); font-size: 20px; }
@media (min-width: 640px) { .hero-phone-highlight i { font-size: 24px; } }
.hero-phone-highlight a { color: white; text-decoration: none; transition: var(--transition); }
.hero-phone-highlight a:hover { color: var(--teal); }

.location-chip { display: flex; align-items: center; justify-content: center; gap: 8px; color: white; font-weight: 600; padding: 8px 0; }
@media (min-width: 640px) { .location-chip { padding: 0; flex: 1; justify-content: flex-start; } }
.location-chip i { color: var(--teal); font-size: 20px; }

.shadow-pulse { animation: shadowPulse 2s infinite; }
@keyframes shadowPulse { 0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(20, 184, 166, 0); } 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); } }

.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
@media (min-width: 992px) { .hero-trust { justify-content: flex-start; gap: 16px; } }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
@media (min-width: 768px) { .trust-pill { font-size: 14px; gap: 8px; } }
.trust-pill i { color: #FBBF24; }

.glass-card { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 16px; padding: 16px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transform: translateY(0); margin-top: 10px; max-width: 400px; margin-left: auto; margin-right: auto; width: 100%; transition: transform 0.3s ease; }
@media (min-width: 992px) { .glass-card { margin-top: 0; padding: 24px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); margin-left: 0; margin-right: 0; max-width: none; } }
.glass-card:hover { transform: translateY(-5px); }
@media (min-width: 992px) { .glass-card:hover { transform: translateY(-10px); } }

.glass-card-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; color: white; }
@media (min-width: 992px) { .glass-card-header { justify-content: flex-start; margin-bottom: 20px; gap: 12px; } }
.glass-card-header i { color: #FBBF24; font-size: 18px; }
@media (min-width: 992px) { .glass-card-header i { font-size: 20px; } }
.glass-card-header h4 { color: white; font-size: 16px; margin: 0; }
@media (min-width: 992px) { .glass-card-header h4 { font-size: 18px; } }

.popular-services-list { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 992px) { .popular-services-list { gap: 12px; } }

.pop-service { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.95); padding: 10px 12px; border-radius: 12px; cursor: pointer; transition: var(--transition); }
@media (min-width: 992px) { .pop-service { padding: 12px 16px; border-radius: 16px; gap: 16px; } }
.pop-service:hover { background: white; transform: translateX(5px); }

.pop-service img { width: 30px; height: 30px; object-fit: contain; background: var(--bg-light); border-radius: 8px; padding: 4px; }
@media (min-width: 992px) { .pop-service img { width: 36px; height: 36px; border-radius: 10px; padding: 6px; } }

.pop-service span { flex: 1; font-weight: 700; color: var(--navy); font-size: 14px; }
@media (min-width: 992px) { .pop-service span { font-size: 15px; } }

.pop-service i { color: var(--teal); font-size: 14px; }

.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 5; }
.hero-wave svg { display: block; width: 100%; height: 40px; }
@media (min-width: 768px) { .hero-wave svg { height: 120px; } }

.stats-section { margin-top: -20px !important; position: relative; z-index: 10; padding-top: 0; }
@media (min-width: 768px) { .stats-section { margin-top: -60px !important; } }

.hero { display: none !important; }
