:root {
    /* Color Palette */
    --primary-color: #0c1e35;
    /* Deep Navy */
    --secondary-color: #f0f8ff;
    /* Ice Blue */
    --accent-color: #00c853;
    /* Call-to-Action Green */
    --accent-hover: #009624;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --gray-light: #f4f6f8;
    --gray-medium: #8898aa;

    /* Spacing */
    --section-padding: 4rem 1rem;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    /* Modern, clean font */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: inherit;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Page Header Overrides */
.page-header h1 {
    color: white !important;
}

.page-header p {
    color: #e2e8f0 !important;
}

/* Header & Navbar */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        /* Smaller font for mobile */
        white-space: nowrap;
        /* Prevent wrapping */
    }
}

/* Navbar Styles */
nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

nav a:hover {
    color: var(--accent-color);
}

/* Mega Menu Dropdown */
.dropdown {
    position: static;
    /* Changed from relative to allow full-width centering relative to Header */
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 98vw;
    /* Nearly full width */
    max-width: 1500px;
    /* Increased for 5 columns */
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    /* Ensure it starts exactly below header */
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    border-radius: 8px;
    padding: 2rem;
    border-top: 4px solid var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Bridge the gap */
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 Columns (Specialized added) */
    gap: 2rem;
    align-items: start;
}

/* Accordion Styles inside Mega Menu */
.mega-column details {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.mega-column summary {
    cursor: pointer;
    list-style: none;
    /* Remove default triangle */
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.mega-column summary::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: transform 0.2s;
}

.mega-column details[open] summary::after {
    transform: rotate(180deg);
}

.mega-column h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.mega-column ul {
    display: flex;
    /* Override nav ul flex */
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin-top: 0.5rem;
    align-items: flex-start;
    /* Left align items */
    max-height: 400px;
    overflow-y: auto;
    /* Scroll if too long */
}

/* Custom Scrollbar for list */
.mega-column ul::-webkit-scrollbar {
    width: 6px;
}

.mega-column ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mega-column ul::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.mega-column li {
    list-style: none;
    /* No dots */
    width: 100%;
}

.mega-column a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    padding: 2px 0;
}

.mega-column a:hover {
    color: var(--accent-color);
    background-color: transparent;
    /* Remove block hover bg */
}

.mega-column a::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.contact-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Header specific Call Button adjustment */
.contact-bar .btn-secondary {
    border-color: #000;
    color: #000;
}

.contact-bar .btn-secondary:hover {
    background-color: #000;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1002;
    /* Ensure it's above other elements */
}

@media (max-width: 768px) {

    /* Prevent Logo Squishing */
    .logo {
        font-size: 1.3rem;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: 70%;
        /* Prevent hitting hamburger */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Full Screen Mobile Menu Overlay */
    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        /* Fixed to viewport */
        top: 80px;
        /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        /* Fill rest of screen */
        background-color: white;
        padding: 1rem 1rem 4rem 1rem;
        /* Extra padding at bottom */
        box-shadow: none;
        /* Flat look */
        overflow-y: auto;
        /* Enable vertical scrolling */
        z-index: 9999;
    }

    /* Fix: Selector matches JS traversing logic (nav has .active class) */
    nav.active ul {
        display: flex;
    }

    /* Mobile Mega Menu Fixes */
    .dropdown {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .dropbtn {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .dropdown.active .dropdown-content {
        display: block !important;
        position: static;
        /* Flow naturally */
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        /* Slight contrast */
        padding: 1rem;
        margin-top: 0.5rem;
        opacity: 1;
        animation: none;
    }

    /* Stack Mega Grid Columns */
    .mega-grid {
        display: block;
    }

    .mega-column {
        width: 100%;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1rem;
    }

    .mega-column:last-child {
        border-bottom: none;
    }

    .mega-column details {
        border: none;
    }

    .mega-column summary {
        font-size: 1rem;
        color: var(--primary-color);
    }

    .mega-column ul {
        display: flex !important;
        flex-direction: column;
        padding-left: 0.5rem;
        max-height: none;
        overflow: visible;
    }

    .mega-column a {
        padding: 8px 0;
        /* Larger touch target */
        font-size: 0.95rem;
    }

    /* Adjust Contact Bar for Mobile */
    .contact-bar {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .contact-bar .btn,
    .contact-bar .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dark overlay for better text readability on all slides */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12, 30, 53, 0.5), rgba(12, 30, 53, 0.7));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero h2 {
    color: #e2e8f0;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero p {
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    display: block;
}

/* Service Areas */
.areas {
    padding: var(--section-padding);
    background-color: var(--gray-light);
}

.area-list {
    column-count: 3;
    column-gap: 2rem;
    margin-top: 2rem;
}

.area-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.area-list li a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-color: rgba(12, 30, 53, 0.2);
}

.area-list li a:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

.area-list li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.area-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Book Section */
.book-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: white;
}

.book-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.book-text {
    flex: 1;
}

.book-text h2 {
    color: white;
}

.book-text p {
    color: #a0aec0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li span {
    background-color: rgba(0, 200, 83, 0.2);
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.book-form-wrapper {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

/* Why Choose Us */
.features {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* SEO Content Section */
.seo-content {
    padding: var(--section-padding);
    background-color: white;
}

.seo-text-block {
    width: 100%;
    margin: 0 auto;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-text-block h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Service Details Layout */
.service-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.service-main-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-main-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: block;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--accent-color);
    color: white;
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

/* FAQs */
.faq-accordion {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    background: #f8fafc;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .service-details-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 9999;
    display: none;
    /* Hidden by default on desktop */
    animation: slideUp 0.5s ease-out;
}

.sticky-mobile-cta .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Show only on mobile/tablet */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    /* Hide the header call button if it duplicates functionality excessively, 
           or keep both. Let's keep the header one as a small link and this as the main CTA. */
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

.seo-text-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.seo-text-block p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-text-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Zig-Zag SEO Layout */
.seo-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.seo-row:last-child {
    margin-bottom: 0;
}

.seo-row.reverse {
    flex-direction: row-reverse;
}

.seo-text {
    flex: 1;
}

.seo-image-container {
    flex: 1;
}

.seo-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.seo-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {

    .seo-row,
    .seo-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .seo-img {
        height: auto;
        max-height: 300px;
    }
}

/* Global Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Weather Widget */
.weather-section {
    padding-bottom: 4rem;
    background-color: var(--gray-light);
    /* Seamless match with areas section */
}

.weather-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--gray-medium);
    transition: var(--transition);
}

.weather-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.weather-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

.weather-sub {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.weather-icon {
    font-size: 3rem;
    background: #f0f4f8;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Weather States */
.weather-card.clear {
    border-left-color: #00c853;
    /* Green */
}

.weather-card.clear .weather-icon {
    color: #00c853;
    background: #e8f5e9;
}

.weather-card.snow-alert {
    border-left-color: #d32f2f;
    /* Red */
    background: #fff5f5;
}

.weather-card.snow-alert .weather-icon {
    color: #d32f2f;
    background: #ffebee;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns as requested */
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 30, 53, 0.8);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablet */
    }
}

@media (max-width: 600px) {
    .weather-card {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-card .stars {
    color: #ffd700;
    /* Gold */
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-card .author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: right;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-about {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 0.9rem;
    text-decoration: underline;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links-list li,
.contact-info li {
    margin-bottom: 0.8rem;
}

.footer-links-list a,
.contact-info a {
    color: #cbd5e0;
    transition: var(--transition);
}

.footer-links-list a:hover,
.contact-info a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.contact-info strong {
    color: white;
    display: inline-block;
    width: 60px;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: #0a1829;
    position: relative;
    z-index: 10;
}

.copyright-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-bar p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #a0aec0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: white;
}

/* Snow Plow Animation */
.plow-animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
    overflow: hidden;
}

.plow-truck {
    position: absolute;
    bottom: 5px;
    left: -50px;
    /* Start off-screen */
    font-size: 2rem;
    animation: driveAcross 15s linear infinite;
    z-index: 20;
    transform: scaleX(-1);
    /* Flip emoji to face right if needed, tractor usually faces left default */
}

/* The pile of snow being pushed */
.snow-pile {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 20px;
    height: 15px;
    background: white;
    border-radius: 50% 50% 0 0;
    box-shadow: 10px 0 10px 5px white;
    opacity: 0.8;
    animation: pushSnow 15s linear infinite;
    z-index: 15;
}

@keyframes driveAcross {
    0% {
        left: -100px;
    }

    100% {
        left: 110%;
    }
}

@keyframes pushSnow {
    0% {
        left: -75px;
        width: 10px;
        opacity: 0.5;
    }

    50% {
        width: 40px;
        opacity: 0.9;
    }

    /* Snow pile grows */
    100% {
        left: calc(110% + 25px);
        width: 60px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .copyright-bar .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info strong {
        display: block;
        width: 100%;
        margin-bottom: 0.2rem;
    }

    /* Header adjustments */
    .header-container {
        height: 70px;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Reset Nav to act as a proper overlay */
    nav {
        display: block;
        /* Ensure container is block */
        position: fixed;
        top: 70px;
        /* Below header */
        left: 0;
        width: 100%;
        background: white;
        padding: 0;
        box-shadow: none;
        transform: translateY(-150%);
        /* Hidden by default */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        height: calc(100vh - 70px);
        /* Full height */
        overflow-y: auto;
        /* Scrollable */
    }

    nav.active {
        transform: translateY(0);
        /* Slide down */
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Remove gap, use padding */
        text-align: left;
        padding: 1rem;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--primary-color);
    }

    /* Reveal Mobile Only Link, Hide Desktop */
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Hide sticky CTA on small mobile header to save space */
    .contact-bar .btn {
        display: none;
    }

    .area-list {
        column-count: 2;
    }

    .book-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .area-list {
        column-count: 1;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Services Page New Styles */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 1rem;
}

.service-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.check-list a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.check-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Base utility classes for all sizes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

/* Legal Pages Styles */
.legal-content {
    padding: var(--section-padding);
    background-color: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.legal-text p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    position: relative;
    padding-left: 0.5rem;
}

.legal-text ul li::marker {
    color: var(--accent-color);
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--accent-hover);
}