:root {
    --primary-blue: #00376d;
    /* Darker blue from screenshot */
    --hover-blue: #002a54;
    --text-white: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-light: #f4f6f9;
    --card-bg: #f8f9fa;
    /* Slightly off-white card bg */
    --border-radius: 15px;
    /* More rounded */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Header */
.header {
    background: var(--text-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.3s;
}

/* Mobile header - reduce padding */
@media (max-width: 768px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }

    .header {
        padding: 0; /* No vertical padding */
        height: 50px; /* Fixed compact height */
        top: 0 !important;
        margin-top: 0 !important;
        display: flex;
        align-items: center; /* Vertically center content */
    }

    .header .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
        height: 100%; /* Fill header height */
        padding: 0 10px; /* Reduced side padding */
    }

    /* Book Now Button (Left) */
    .mobile-book-btn {
        display: inline-block;
        justify-self: start;
        background-color: var(--primary-blue);
        color: white;
        padding: 5px 12px; /* Smaller button */
        border-radius: 4px;
        font-size: 0.75rem; /* Smaller text */
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
    }

    /* Logo (Center) */
    .logo {
        justify-self: center;
        margin-right: 0;
    }

    .logo-image {
        height: 32px; /* Very compact logo */
        width: auto;
    }

    /* Hamburger Menu (Right) */
    .mobile-menu-toggle {
        display: block;
        justify-self: end;
        font-size: 1.3rem; /* Slightly smaller icon */
        color: var(--primary-blue);
        background: none;
        border: none;
        padding: 0.2rem; /* Less padding */
    }

    .header .nav,
    .header-cta {
        display: none;
    }
}

/* Default state for mobile menu toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none;
}

@media (min-width: 769px) {
    .mobile-book-btn {
        display: none;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .logo {
        display: flex;
        align-items: center;
        margin-right: 3rem;
    }
    
    .logo-image {
        height: 60px; /* Default desktop size, ensure this matches current if needed, or remove if set elsewhere */
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ... existing styles ... */


/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    animation: fadeIn 0.3s ease;
    padding: 2rem;
}

.mobile-nav.active {
    display: flex !important;
}

.mobile-nav a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #8AB4F8;
    background: rgba(138, 180, 248, 0.1);
    transform: scale(1.05);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Helper Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
}

/* Page Title Banner (Services Specific) */
.page-title-banner {
    background-color: var(--primary-blue);
    color: var(--text-white);
    text-align: center;
    padding: 3rem 1rem;
}

.page-title-banner h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.header-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 6px;
}

/* Breadcrumb */
.breadcrumb-bar {
    background-color: var(--text-white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #888;
}

/* Services Grid */
.services-section {
    padding: 4rem 0;
    background-color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 250px;
}

.btn {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pill {
    background-color: #eef2f6;
    /* Very light blue/gray for button bg */
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: auto;
    /* Push to bottom */
}

.btn-pill:hover {
    background-color: #e0e6ed;
}

.btn-white {
    background-color: white;
    color: var(--primary-blue);
    border: 1px solid white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background-color: #f0f0f0;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Bottom CTA */
.bottom-cta {
    background-color: var(--primary-blue);
    text-align: center;
    padding: 4rem 1rem;
    color: white;
}

.bottom-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bottom-cta p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cta-btn {
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
}

/* Trust Footer Bar */
.trust-bar {
    background-color: #f1f4f8;
    /* Light gray footer bar */
    padding: 15px 0;
    text-align: center;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

.separator {
    margin: 0 10px;
    color: var(--primary-blue);
}

.trust-bar i {
    margin-right: 5px;
}

/* Mobile Nav Mockup */
.mobile-nav {
    display: none;
    background-color: var(--primary-blue);
    color: white;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-title {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Main Footer */
.main-footer {
    background: #f1f1f1;
    padding: 3rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-col h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .mobile-nav {
        display: block;
        /* Show sticky header on mobile */
    }

    body {
        padding-top: 60px;
        /* Space for sticky header */
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .header .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding: 5rem 0;
    /* Subtle premium gradient background */
    background: linear-gradient(180deg, var(--bg-light) 0%, #eef5fc 100%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    /* More modern radius */
    padding: 0;
    text-align: center;
    width: 320px;
    /* Slightly wider */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid white;
    /* Cleaner look */
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    background: transparent;
    margin: 0;
    padding: 2.5rem 1rem 0.5rem;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    border-bottom: none;
}

/* Most Popular Card Styling */
.pricing-card.highlight {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 55, 109, 0.15);
}

.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 55, 109, 0.2);
}

.pricing-card.highlight h3 {
    background: var(--primary-blue);
    color: white;
    padding-top: 3rem;
    padding-bottom: 1rem;
    border-radius: 10px 10px 0 0;
    /* Rounded top matches card */
}

/* The Most Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #0056b3, #00376d);
    /* Premium gradient */
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 20;
    border: 2px solid white;
}

/* Correct positioning for highlight card badge */
.pricing-card.highlight .popular-badge {
    top: -15px;
}

.price-block {
    padding: 1.5rem 1rem 2rem;
}

.pricing-card.highlight .price-block {
    background: white;
    padding-top: 2.5rem;
}

.starting-at {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price {
    display: block;
    font-size: 3.8rem;
    /* Larger price */
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-features {
    list-style: none;
    padding: 0 2rem 2.5rem;
    text-align: left;
    margin-bottom: auto;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    color: #444;
    line-height: 1.5;
}

/* Premium Checkmark Icon */
.pricing-features li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
    /* Green check for positive vibe */
    font-size: 1rem;
    top: 2px;
}

/* Buttons inside cards */
.btn-blue-block {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 16px;
    margin: 1.5rem 2rem 2rem;
    /* More margin */
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    transition: all 0.3s;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 55, 109, 0.2);
}

.btn-blue-block:hover {
    background: var(--hover-blue);
    box-shadow: 0 6px 20px rgba(0, 55, 109, 0.3);
    transform: translateY(-2px);
}

/* Highlight card button */
.pricing-card.highlight .btn-blue-block {
    background: linear-gradient(90deg, #00376d, #002a54);
}

/* Add-ons Section */
.addons-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 20px;
}

.addons-section h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #222;
    font-weight: 800;
}

.addons-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Grid layout for addons */
    gap: 15px;
}

.addons-list li {
    position: relative;
    padding-left: 25px;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
}

.addons-list li::before {
    content: "\f067";
    /* Plus icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.9rem;
    top: 4px;
}

.addons-note,
.addons-disclaimer {
    color: #666;
}

/* Bottom CTA Banner (Dark Blue) */
.bottom-cta-banner {
    background: linear-gradient(135deg, #0f3d6d 0%, #051b3b 100%);
    /* Deep rich gradient */
    padding: 4rem 1rem;
    text-align: center;
    color: white;
    margin: 4rem 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bottom-cta-banner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.bottom-cta-banner p {
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        margin-top: 4rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .pricing-card.highlight {
        transform: scale(1);
        margin-top: 10px;
    }

    .pricing-card.highlight:hover {
        transform: none;
    }

    .bottom-cta-banner {
        margin: 2rem 0;
        border-radius: 0;
        padding: 3rem 1rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-outline-white {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .header .nav {
        display: none;
        /* Ensure header nav is hidden on mobile */
    }
}

/* Booking Page Styles */
.booking-header {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.booking-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.booking-header .small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Booking Layout */
.booking-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.booking-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: #555;
    background: white;
    position: relative;
    border-right: 1px solid #eee;
}

.step.active {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.booking-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.booking-form-area {
    flex: 2;
}

.booking-sidebar {
    flex: 1;
    max-width: 300px;
}

/* Step Headers */
.form-step h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

/* Service Selection Grid */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.selection-card {
    display: block;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.selection-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    min-height: 140px;
    /* Ensure uniform height */
}

/* Fix for icons */
.card-content img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.card-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.check-mark {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Selected State */
.selection-card input:checked+.card-content {
    border: 2px solid var(--primary-blue);
    background: #f0f7ff;
}

.selection-card input:checked+.card-content .check-mark {
    display: block;
}

/* Calendar & Time */
.date-time-wrapper {
    margin-bottom: 2rem;
}

.calendar-visual {
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    max-width: 400px;
    /* Constrain width */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 8px;
}

.day-name {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.day {
    padding: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    color: #333;
}

.day:hover:not(.faded) {
    background: #f0f0f0;
}

.day.active {
    background: var(--primary-blue);
    color: white;
}

.day.faded {
    color: #ccc;
}

.time-slot-selection label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.9rem;
}

.slot-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    max-width: 400px;
}

.slot-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}

.slot-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Form Fields */
.details-form {
    margin-bottom: 2rem;
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.col-half {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    /* Critical for layout */
}

.form-input.area {
    min-height: 80px;
    resize: vertical;
}

/* Sidebar */
.summary-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    color: #333;
}

.summary-item {
    margin-bottom: 1.2rem;
}

.summary-item span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.summary-item p {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Actions in Form */
.booking-footer {
    max-width: 400px;
}

.no-payment-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 14px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.btn-block:hover {
    background: var(--hover-blue);
}

.small-text-faded {
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-wrapper {
        flex-direction: column-reverse;
    }

    .booking-sidebar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .service-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slot-buttons,
    .booking-footer,
    .calendar-visual {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Gallery Page Styles */
.gallery-header {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.gallery-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.btn-outline-white-header {
    border: 2px solid white;
    padding: 10px 24px;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-white-header:hover {
    background: white;
    color: var(--primary-blue);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.image-pair {
    display: flex;
    height: 300px;
    /* Fixed height for consistency */
}

.img-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover .img-container img {
    transform: scale(1.05);
}

.img-container .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 55, 109, 0.8), transparent);
    color: white;
    text-align: center;
    padding: 10px 5px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

/* --- NEW HOME PAGE STYLES --- */

/* Split Hero Section */
.hero-split {
    position: relative;
    width: 100%;
    height: 600px;
    /* CSS Trick for Split Background using existing assets */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%),
        url('assets/gallery_driveway_before.png'),
        url('assets/gallery_driveway_after.png');
    background-size: 100% 100%, 50% 100%, 50% 100%;
    background-position: center, left center, right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Add a white divider line in the middle */
.hero-split::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero-overlay {
    /* Gradient overlay handles the text contrast */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-split {
    width: 100%;
}

.hero-text-box {
    max-width: 600px;
    color: white;
    padding-left: 20px;
    /* Ensure text is readable over the split */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text-box h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Trust Bar Floating */
.trust-bar-floating {
    position: absolute;
    bottom: -30px;
    /* Overlap nicely */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 50px;
    border-radius: 100px;
    display: flex;
    gap: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    width: max-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.95rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #333;
    padding-top: 2rem;
    /* Spacing for floating bar */
}

/* Service Card Updates */
.services-section {
    padding-top: 5rem;
    /* Extra padding for floating bar */
    padding-bottom: 4rem;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-pill-sm {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
    display: inline-block;
}

.btn-pill-sm:hover {
    background-color: var(--hover-blue);
}

/* Before / After Preview */
.before-after-preview {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
}

.ba-preview-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.ba-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 400px;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.ba-label.left {
    left: 15px;
}

.ba-label.right {
    right: 15px;
}

.ba-divider {
    color: var(--primary-blue);
    font-size: 2rem;
    background: #f0f8ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.center-btn-wrapper {
    margin-top: 2rem;
}

.btn-primary-pill {
    background-color: var(--primary-blue);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 81, 255, 0.3);
}

.btn-primary-pill:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: #f9f9f9;
    text-align: center;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 81, 255, 0.2);
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Reviews */
.reviews-section {
    padding: 5rem 0;
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #fcfcfc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: left;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Bottom CTA Blue */
.bottom-cta-blue {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.bottom-cta-blue h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-white-pill {
    background: white;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white-pill:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-link-white {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.btn-link-white:hover {
    opacity: 0.8;
}

/* Mobile Responsiveness for new sections */
@media (max-width: 768px) {
    .trust-bar-floating {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        border-radius: 0;
        margin-top: -2px;
        /* Connect to hero */
    }

    .hero-split {
        background-size: cover !important;
        /* Reset split on mobile for simplicity or keep it */
        /* For mobile, maybe just show the clean side? Or darker overlay */
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/gallery_driveway_after.png');
        height: 500px;
    }

    .hero-text-box h1 {
        font-size: 2.5rem;
    }

    .ba-preview-grid {
        flex-direction: column;
    }

    .ba-card {
        width: 100%;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }
}

/* --- HOW IT WORKS: PREMIUM ANIMATED --- */
/* --- HOW IT WORKS: PREMIUM CLONE --- */
/* --- HOW IT WORKS: PREMIUM ANIMATED --- */
.how-it-works {
    padding: 6rem 0;
    background: #f4f6f9; /* Slight grey for contrast with white cards */
    text-align: center;
    position: relative;
    overflow: hidden; 
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 4rem auto 3rem;
    position: relative;
}

/* The Connector Line (Desktop) */
.steps-connector-bar {
    position: absolute;
    top: 50%; /* Adjust based on card height */
    left: 15%;
    right: 15%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.steps-connector-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-blue);
    /* Animate width when .visible is added to parent section */
    transition: width 1.5s ease-out;
}

.how-it-works.visible .steps-connector-bar::after {
    width: 100%;
}

/* Step Item Container */
.step-item {
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Icon above Card */
.step-icon-floating {
    width: 80px;
    height: 80px;
    margin: 0 auto -40px; /* Pull into card */
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item:hover .step-icon-floating {
    transform: scale(1.1) translateY(-10px);
}

/* The Card */
.step-card {
    background: white;
    padding: 60px 20px 30px; /* Top padding clears the icon */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.step-item:hover .step-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-card h4 {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* MICRO ANIMATIONS */

/* 1. Pop/Bounce (Calendar) */
.step-item.visible .icon-pop i {
    animation: popBounce 0.8s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
    animation-delay: 0.3s;
}
@keyframes popBounce {
    0% { transform: scale(0.5); opacity: 0; }
    40% { transform: scale(1.2); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* 2. Rotate/Sweep (Washer) */
.step-item.visible .icon-rotate i {
    animation: sweepRotate 1s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes sweepRotate {
    0% { transform: rotate(-45deg); opacity: 0; }
    100% { transform: rotate(0); opacity: 1; }
}

/* 3. Sparkle (House) */
.step-item.visible .icon-sparkle i {
    animation: sparkleShine 1.5s ease-in-out forwards;
    animation-delay: 0.7s;
}
@keyframes sparkleShine {
    0% { filter: brightness(1) drop-shadow(0 0 0 gold); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px gold); transform: scale(1.1); }
    100% { filter: brightness(1) drop-shadow(0 0 0 gold); transform: scale(1); }
}

/* CTA */
.how-it-works-cta {
    margin-top: 40px;
    opacity: 0;
    transition: opacity 0.5s 1s; /* Delay 1s */
}
.how-it-works-cta.visible { opacity: 1; }

.btn-primary-pulsing {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    animation: pulseBlue 3s infinite;
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(0, 81, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 81, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 81, 255, 0); }
}

/* Override Mobile Styles for New Layout */
@media (max-width: 768px) {
    .steps-connector-bar {
        /* Vertical line on mobile */
        width: 3px;
        height: 100%;
        left: 50%;
        top: 0;
        right: auto;
        transform: translateX(-50%);
    }

    .steps-connector-bar::after {
        width: 100%;
        height: 0%;
        transition: height 1.5s ease-out;
    }
    
    .how-it-works.visible .steps-connector-bar::after {
        height: 100%;
    }
    
    .step-icon-floating {
        margin-bottom: -30px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 60px;
    }
}


.hiw-mobile-item {
    text-align: center;
}

.hiw-mobile-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.hiw-mobile-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hiw-mobile-item p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 10px;
}

.hiw-mobile-connector-line {
    height: 1px;
    width: 80%;
    background-color: #eee;
    margin: 0 auto;
}

.mobile-cta-wrapper {
    margin-top: 1rem;
}

.btn-primary-block {
    display: block;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

/* --- SERVICES PAGE STYLES --- */

.page-hero-blue {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.page-hero-blue h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.page-hero-blue p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page-section {
    padding: 4rem 0;
    background-color: #fff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-page-card {
    background: #f8f9fa;
    /* Light grey/blue tint card */
    border-radius: 12px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sp-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    /* Outline style implicitly via font-awesome */
    margin-bottom: 1.5rem;
    height: 60px;
}

.sp-icon i {
    /* Ensure specific look if needed */
}

.service-page-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.service-page-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Pushes button down */
}

.btn-pill-grey {
    background-color: #e9ecef;
    color: var(--primary-blue);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-pill-grey:hover {
    background-color: #dee2e6;
    color: var(--hover-blue);
}

/* Responsive Services Page */
@media (max-width: 900px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-hero-blue {
        padding: 3rem 1rem;
    }

    .page-hero-blue h1 {
        font-size: 1.8rem;
    }
}

/* --- REVIEWS PAGE STYLES --- */
.reviews-page-header {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.reviews-page-header .container {
    padding-top: 10px;
    position: relative;
    max-width: 900px;
}

.reviews-page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.reviews-page-header p {
    color: #e0e0e0;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.reviews-page-header .btn-white-pill {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.reviews-list-section {
    padding: 4rem 0;
    background-color: #fcfcfc;
}

.review-list-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.review-avatar {
    flex-shrink: 0;
    margin-top: 5px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ddd;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content-wrapper {
    flex-grow: 1;
    max-width: 100%;
}

.review-bubble {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 18px;
    border-top-left-radius: 4px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.review-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 20px solid #dbeafe;
    border-left: 10px solid transparent;
}

.review-header {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.review-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #111;
    margin-right: 8px;
}

.review-stars {
    display: inline-block;
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-bubble p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.review-time {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: right;
}

.bottom-cta-banner {
    background-color: #00376d;
    padding: 4rem 1rem;
    margin: 4rem 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

@media (max-width: 600px) {
    .reviews-page-header .btn-white-pill {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 1rem;
        display: inline-block;
    }

    .review-item {
        gap: 10px;
    }

    .review-bubble {
        padding: 1rem;
    }
}

/* --- LOGO STYLES (Desktop + Mobile Responsive) --- */
:root {
    --logo-navy: #002D58;
    --logo-blue: #8AB4F8;
}

.logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--logo-navy);
}

.logo-lockup:hover {
    opacity: 0.95;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    gap: 6px;
    line-height: 1.1;
    align-items: baseline;
    color: var(--logo-navy);
}

.logo-text span {
    display: block;
}

.text-aa {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    color: var(--logo-navy);
}

.text-power {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
    color: var(--logo-navy);
}

/* Mobile Logo: Stacked Layout */
@media (max-width: 768px) {
    .logo-lockup {
        gap: 10px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-text {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .text-aa {
        font-size: 1.8rem;
        line-height: 1;
    }

    .text-power {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0;
    }
}

/* ========================================
   HOW IT WORKS - ANIMATIONS & IMPROVEMENTS
   ======================================== */

/* Scroll Reveal Animation for Cards */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Bounce Animation */
@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Icon Pulse Animation */
@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Progressive Line Drawing */
@keyframes drawLine {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Glow effect for badges */
@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    }
}

/* Apply animations to step groups - with stagger effect */
.hiw-step-group {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out forwards;
}

.hiw-step-group:nth-child(1) {
    animation-delay: 0.2s;
}

.hiw-step-group:nth-child(2) {
    animation-delay: 0.4s;
}

.hiw-step-group:nth-child(3) {
    animation-delay: 0.6s;
}

/* Icon animations on hover */
.hiw-icon-wrapper {
    transition: all 0.3s ease;
}

.hiw-icon-wrapper:hover {
    animation: iconBounce 0.6s ease infinite;
    color: #1d4ed8;
}

.hiw-step-group:nth-child(1) .hiw-icon-wrapper i {
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hiw-step-group:nth-child(2) .hiw-icon-wrapper i {
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 0.6s;
}

.hiw-step-group:nth-child(3) .hiw-icon-wrapper i {
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 0.9s;
}

/* Enhanced badge with glow */
.hiw-badge {
    animation: badgeGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hiw-badge:hover {
    transform: scale(1.15);
}

/* Progressive line drawing animation */
.hiw-line {
    overflow: hidden;
}

.hiw-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), #60a5fa);
    animation: drawLine 1.5s ease-out forwards;
}

.hiw-step-group:nth-child(1) .hiw-line::before {
    animation-delay: 0.8s;
}

.hiw-step-group:nth-child(2) .hiw-line::before {
    animation-delay: 1.2s;
}

/* Enhanced card hover effects */
.hiw-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hiw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.hiw-card:hover::before {
    left: 100%;
}

.hiw-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Mobile animations */
.hiw-mobile-item {
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
}

.hiw-mobile-item:nth-child(1) {
    animation-delay: 0.2s;
}

.hiw-mobile-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hiw-mobile-item:nth-child(3) {
    animation-delay: 0.6s;
}

.hiw-mobile-icon {
    transition: all 0.3s ease;
}

.hiw-mobile-item:hover .hiw-mobile-icon {
    transform: scale(1.2) rotate(5deg);
    color: #1d4ed8;
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .hiw-step-group,
    .hiw-mobile-item,
    .hiw-icon-wrapper,
    .hiw-badge,
    .hiw-card {
        animation: none !important;
        transition: none !important;
    }

    .hiw-step-group,
    .hiw-mobile-item {
        opacity: 1;
    }
}

/* ========================================
   MOBILE FIX: Hero & Trust Bar
   ======================================== */
@media (max-width: 768px) {
    .hero-split {
        height: auto !important;
        min-height: 450px;
        padding: 2.5rem 1rem 4rem 1rem !important;
    }

    .hero-split::after {
        display: none !important;
    }

    .hero-text-box h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-text-box p {
        font-size: 1rem !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .trust-bar-floating {
        position: static !important;
        transform: none !important;
        margin: 2rem auto 0 !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 25px 20px !important;
        border-radius: 16px !important;
        width: calc(100% - 2rem) !important;
        max-width: 350px !important;
    }

    .trust-item {
        justify-content: center;
    }

    /* Header mobile fixes */
    .header .container {
        gap: 1rem;
    }

    .logo {
        margin-right: 0;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block !important;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Page Header */
.contact-page-header {
    background-color: #002D58;
    color: white;
    padding: 3rem 0;
}

.contact-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Content Section */
.contact-content-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quote Form Card */
.quote-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quote-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #002D58;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-navy-full {
    width: 100%;
    background-color: #002D58;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-navy-full:hover {
    background-color: #001d3d;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card,
.service-areas-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-card h3,
.service-areas-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #222;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.25rem;
    color: #002D58;
    margin-top: 0.25rem;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
}

.info-text span {
    font-size: 0.95rem;
    color: #555;
}

.service-areas-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-areas-link {
    color: #002D58;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-areas-link:hover {
    color: #001d3d;
    text-decoration: underline;
}

/* Contact Trust Bar */
.contact-trust-bar {
    background-color: #002D58;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.contact-trust-bar p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Mobile Book CTA */
.mobile-book-cta {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.mobile-book-cta .btn-navy-full {
    display: block;
}

.btn-white-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background-color: white;
    color: #002D58;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-page-header {
        padding: 2rem 0;
    }

    .contact-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-page-header h1 {
        font-size: 1.75rem;
    }

    .contact-page-header p {
        font-size: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quote-form-card {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .info-card,
    .service-areas-card {
        padding: 1.5rem;
    }

    .mobile-book-cta {
        display: block;
    }
}

/* ========================================
   FOOTER FIX FOR CONTACT PAGE
   ======================================== */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #002D58;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #002D58;
}

.footer-col p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-col .btn {
    display: inline-block;
    margin-top: 0.5rem;
}

/* Footer mobile responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }
}

/* ========================================
   NEW CONTACT PAGE FOOTER DESIGN
   ======================================== */

/* Footer Trust Bar (Top Section) */
.footer-trust-bar {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
}

.trust-items-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #002D58;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge i {
    font-size: 1.1rem;
}

/* Main Footer Content */
.footer-main {
    background-color: #ffffff;
    padding: 3rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand h3 {
    color: #002D58;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: #002D58;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #002D58;
}

.footer-contact p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-cta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .trust-items-row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-cta {
        justify-content: center;
    }

    .footer-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   LOGO IMAGE STYLING
   ======================================== */
.logo-image {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-lockup {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Desktop logo adjustments */
@media (min-width: 769px) {
    .logo-image {
        height: 55px;
    }
}

/* Mobile logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
}

/* ========================================
   LOGO STYLING - TRANSPARENT & ANIMATED
   ======================================== */
.logo-image {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Remove beige background - blend with header */
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Subtle breathing animation */
    animation: logoBreath 3s ease-in-out infinite;
}

/* Animated breathing effect for logo */
@keyframes logoBreath {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    }
}

.logo-lockup {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* Add pulsing water effect overlay */
.logo-lockup::before {
    content: '';
    position: absolute;
    left: 8%;
    top: 15%;
    width: 25%;
    height: 30%;
    background: radial-gradient(circle, rgba(138, 180, 248, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: waterPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* Water splash pulse animation */
@keyframes waterPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

/* Desktop logo adjustments */
@media (min-width: 769px) {
    .logo-image {
        height: 55px;
    }
}

/* Mobile logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }

    .logo-lockup::before {
        left: 10%;
        top: 18%;
        width: 20%;
        height: 25%;
    }
}

/* Accessibility: Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .logo-image,
    .logo-lockup::before {
        animation: none !important;
    }
    }
}

/* ========================================
   TOAST NOTIFICATIONS
   ========================================= */
#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 4px solid #3b82f6; /* Default Blue */
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #22c55e;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #22c55e;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-message {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    #notification-container {
        bottom: 20px;
        left: 20px;
        right: 20px;
        align-items: center;
    }
    
    .toast {
        width: 100%;
        max-width: none;
        transform: translateY(100%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}