/* Basic Reset & Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Visual Enhancement: Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark grey text */
    padding-top: 60px; /* Kept from previous adjustment, check final height */
    background-color: #fff; /* Ensure body background is white */
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* General layout classes */
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.content-section { padding: 50px 0; } /* Removed horizontal padding here, handled by .container */
.light-bg { background-color: #f8f9fa; } /* Light Grey Background */
/* Dark BG removed as per new color scheme */

.text-center { text-align: center; }

/* Two Column Layout (Still used for Benefits and Features) */
.two-column { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.two-column .column { flex: 1; min-width: 300px; }
.two-column .image-column img { border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* List Styles (used in Benefits, Features, FAQ) */
.focus-list { list-style: none; padding-left: 0; margin-bottom: 1.2em; }
.focus-list li { margin-bottom: 0.8em; padding-left: 25px; position: relative; color: #333; }
/* UPDATED: List Item Bullet Color (Burgundy Accent) */
.focus-list li::before { content: '✔'; position: absolute; left: 0; color: #800020; /* Burgundy Accent */ font-weight: bold; }

/* === STICKY NAVIGATION BAR STYLES === */
/* UPDATED: Background Color (Burgundy) */
.sticky-nav {
    background-color: #800020; /* Burgundy */
    color: #fff;
    padding: 5px 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-height: 50px; /* Ensure minimum height */
    display: flex; /* Use flexbox for sticky nav content */
    justify-content: space-between;
    align-items: center;
}

.sticky-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo & Name Area on Left */
.sticky-nav-logo-area {
   display: flex; /* Align logo and text */
   align-items: center; /* Vertically center items */
   gap: 10px; /* Space between logo and text */
   margin-right: auto; /* Push other items away */
   flex-shrink: 0;
   color: #fff; /* Ensure text color is white */
   text-decoration: none; /* Remove underline from link */
}

/* Logo Image Style */
.sticky-nav-logo {
   display: block;
   max-height: 40px;
   width: auto;
}

/* Logo Text Style */
.sticky-nav-logotext {
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap; /* Prevent wrapping */
}

/* Centered Dropdown Container (Menu on Desktop) */
.sticky-nav-center {
     display: flex; /* Display by default for desktop */
     justify-content: center;
     padding: 0 15px;
}

/* Dropdown Container (Hidden on Desktop, used for mobile menu styling) */
.nav-dropdown {
    position: relative;
    display: inline-block; /* Keep for consistency, but not strictly necessary for new mobile menu */
}

/* Dropdown Button (Original, hide on mobile) */
.dropdown-button {
    display: none; /* Hide original dropdown button */
}

/* Dropdown Content (The actual menu links) */
/* Default styles for desktop */
.dropdown-content {
    display: flex; /* Show by default for desktop */
    position: static; /* Static positioning for desktop */
    background-color: transparent; /* No background on desktop */
    min-width: auto;
    box-shadow: none;
    z-index: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transition: none; /* No transition on desktop */
    gap: 20px; /* Space out menu items on desktop */
}

.dropdown-content li a {
    color: white;
    padding: 0; /* Remove padding */
    text-decoration: none;
    display: inline-block; /* Display inline for desktop */
    font-size: 0.9em;
    white-space: nowrap;
}
.dropdown-content li a:hover {
    background-color: transparent; /* No background change on hover */
    opacity: 0.8; /* Dim slightly on hover */
}

/* NEW: Mobile Menu Toggle Button Styles */
.mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: transparent;
    border: none;
    color: #fff; /* White color for icon */
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    z-index: 1001; /* Above the menu content when open */
}


/* Actions on Right */
.sticky-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto; /* Push away from center */
}

.sticky-nav-button {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.sticky-nav-button:hover { opacity: 0.8; }
.sticky-nav-icon { height: 16px; width: auto; display: inline-block; vertical-align: middle; flex-shrink: 0; }
/* === END STICKY NAVIGATION BAR STYLES === */


/* === Header Styles === */
.site-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; border-bottom: 1px solid #eee; background-color: #fff; flex-wrap: wrap; gap: 20px; }

/* UPDATED: Header Logo Area Styling */
.site-header .logo-area {
    display: flex; /* Arrange logo and text side-by-side */
    align-items: center; /* Vertically align logo and text */
    gap: 15px; /* Space between logo and text */
    flex-shrink: 0;
    margin-bottom: 5px;
}

/* UPDATED: Header Logo Image Styling (3x size increase) */
.header-logo {
    display: block;
    max-height: 180px; /* Base size increased */
    width: auto;
}

.site-header .header-text {
    /* Contains the business name and tagline */
}


/* UPDATED: Business Name Color (Burgundy) */
.business-name {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #800020; /* Burgundy */
    font-size: 2.2em;
    font-weight: normal;
    margin-bottom: 0;
}
.tagline { font-family: Arial, Helvetica, sans-serif; color: #333; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85em; margin-top: 2px; }
.header-info { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.service-rating { display: flex; align-items: center; gap: 8px; font-weight: bold; font-size: 0.85em; margin-bottom: 5px; color: #333; /* Ensure color is dark on white */ }
.star-icon { width: 35px; height: auto; flex-shrink: 0; }
/* UPDATED: Book Button Styles (Burgundy) */
.button.book-button {
    font-family: Arial, Helvetica, sans-serif;
    border: 1.5px solid #800020; /* Burgundy Border */
    border-radius: 25px;
    padding: 10px 18px;
    background-color: #fff;
    color: #800020; /* Burgundy Text */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 5px;
    flex-shrink: 0;
}
/* UPDATED: Book Button Hover Styles (Burgundy) */
.button.book-button:hover {
    background-color: #800020; /* Burgundy Background */
    color: #fff; /* White Text */
}
.phone-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.phone-icon { width: 30px; height: auto; flex-shrink: 0; }
/* UPDATED: Phone Number Link Color (Burgundy) */
.phone-number {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #800020; /* Burgundy */
    font-size: 1.1em;
    font-weight: bold;
    white-space: nowrap;
}

/* Hero section div exists but has no specific styling unless an image is added */
.hero { max-width: 1100px; margin: 20px auto 0 auto; padding: 0 25px; }
/* If adding a background image to Hero, style here */
/* e.g., .hero { background-image: url('path/to/hero-bg.jpg'); background-size: cover; background-position: center; height: 400px; ... } */

/* === Content Section Specific Styles === */

/* Section: Pain Point & Solution (#solutions) */
/* Uses previous 'about-section' styles, updated */
/* UPDATED: Background Color */
.about-section { background-color: #ffffff; /* White Background */ color: #333; /* Dark text */ }
/* Child elements inherit or override color */
.about-section h2.main-heading { color: #333; }
/* UPDATED: Sub-heading color (Gold Accent) */
.about-section h3.sub-heading { font-size: 1.1em; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; color: #B8860B; /* Gold Accent */ }
.about-section p { color: #333; }

/* NEW: Style for the image placed directly in the content flow */
.content-image {
    max-width: 100%; /* Ensure it fits container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Make it a block element */
    margin: 20px auto; /* Add vertical margin and center it */
    border-radius: 8px; /* Keep rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Keep shadow */
}

/* Section: Benefits (#benefits) */
/* Styles inherited from content-section and light-bg */
/* UPDATED: Sub-heading color (Gold Accent) */
#benefits h3.sub-heading { color: #B8860B; /* Gold Accent */ }


/* Section: Reviews (#reviews) */
/* NEW Class for Reviews section, styled with Burgundy/Gold Gradient Background */
.reviews-section {
    background: linear-gradient(to right, #800020, #B8860B); /* Burgundy to Gold Gradient */
    color: #fff; /* White text on gradient background */
}
.reviews-section .main-heading, .reviews-section .section-heading { color: #fff; } /* White heading */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
/* UPDATED: Review Item Styles for Dark Background */
.review-item {
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white on gradient */
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border on gradient */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff; /* Ensure review text is white on gradient background */
}
.review-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.review-item blockquote { font-style: italic; margin-bottom: 15px; flex-grow: 1; font-size: 0.95em; line-height: 1.6; border: none; padding: 0; }
.review-item cite { font-weight: bold; margin-bottom: 10px; font-style: normal; display: block; }
/* UPDATED: Star color (Keep Gold) */
.review-stars { color: #FFD700; /* Gold */ font-size: 1.4em; margin: 0 auto; line-height: 1; }


/* Section: Features (Services) (#features) */
/* Uses previous 'repair-section' styles, updated */
/* UPDATED: Background Color */
.repair-section { background-color: #f8f9fa; /* Light Grey Background */ color: #333; }
.repair-section .section-heading { color: #333; }
/* UPDATED: Sub-heading color (Gold Accent) */
#features h3.sub-heading { color: #B8860B; /* Gold Accent */ }


/* Section: FAQ (#faq) */
/* Styles inherited from content-section and light-bg */
/* UPDATED: Sub-heading color (Gold Accent) */
#faq h3.sub-heading { color: #B8860B; /* Gold Accent */ }

.faq-list ul { list-style: disc; margin-left: 20px; margin-bottom: 1.5em;}
.faq-list li { margin-bottom: 0.8em; }
/* UPDATED: FAQ Link Color (Burgundy) */
.faq-list li a { color: #800020; /* Burgundy for links */ text-decoration: underline; }
.faq-list li a:hover { color: #600018; }
.faq-list .faq-item { margin-bottom: 20px; }
.faq-list .faq-item h4 { margin-bottom: 5px; color: #333; }
.faq-list .faq-item p { margin-bottom: 0; }


/* === Footer Styles === */
/* Simplified Footer */
footer { background-color: #ffffff; /* White Background */ color: #333; padding-top: 20px; padding-bottom: 30px; } /* Adjusted padding */

/* UPDATED: Footer Divider Color */
.footer-divider { border: none; height: 1px; background-color: #ccc; /* Light grey */ margin: 40px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; } /* Added margin-bottom */
.footer-column { flex: 1; min-width: 220px; padding: 0 10px; }
.footer-contact h4 { margin-bottom: 15px; font-size: 1.1em; }
.footer-contact p { margin-bottom: 8px; font-size: 0.9em; }
/* UPDATED: Footer Contact Links Color (Burgundy) */
.footer-contact a { color: #800020; /* Burgundy for links */ text-decoration: none; }
.footer-contact a:hover { opacity: 0.8; }
/* UPDATED: Footer Book Link Text Color (Gold) */
.footer-book-link { font-weight: bold; display: inline-block; margin-top: 10px; color: #B8860B; /* Gold for CTA link */ }
.footer-book-link:hover { opacity: 0.8; text-decoration: underline; }

.footer-booking { text-align: center; margin-top: 30px; }
/* UPDATED: Footer Book Button Styles (Burgundy) */
.footer-book-button {
    background-color: #800020; /* Burgundy Background */
    color: #fff; /* White Text */
    border: none; /* Removed border */
    padding: 12px 25px;
    display: inline-block;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold; /* Ensure button text is bold */
}
.footer-book-button:hover { background-color: #600018; } /* Slightly darker burgundy on hover */

.footer-social { text-align: right; }
.footer-social h4 { margin-bottom: 15px; font-size: 1.1em; }
.social-icons { display: flex; justify-content: flex-end; gap: 20px; }
/* Social icons should be dark or have good contrast on the white footer */
/* Removed filter as footer is white */
.social-icons a img { height: 28px; width: auto; transition: opacity 0.2s ease; filter: none; }
.social-icons a:hover img { opacity: 0.8; }

/* New style for legal links */
.footer-legal { text-align: center; font-size: 0.85em; color: #555; }
.footer-legal p { margin-bottom: 5px; }
/* UPDATED: Footer Legal Links Color (Burgundy) */
.footer-legal a { color: #800020; /* Burgundy for links */ margin: 0 5px; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }


/* === Media Queries === */

/* Desktop styles (min-width 769px) */
@media (min-width: 769px) {
    /* Ensure desktop menu is visible and toggle is hidden */
    .sticky-nav-center { display: flex; }
    .mobile-menu-toggle { display: none; }
     .dropdown-content {
         display: flex; /* Explicitly show menu links */
         position: static;
         flex-direction: row; /* Arrange links horizontally */
         background-color: transparent;
         box-shadow: none;
         opacity: 1;
         visibility: visible;
         gap: 20px; /* Space between desktop menu items */
     }

    /* Reset mobile menu styles */
    .dropdown-content li a { padding: 0; }
}


/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    body { padding-top: 55px; }
    .sticky-nav { padding: 5px 15px; }
    .sticky-nav-logo-area { gap: 8px; } /* Reduce gap */
    .sticky-nav-logo { max-height: 35px; }
    .sticky-nav-logotext { font-size: 1em; } /* Slightly smaller text */
    .dropdown-button { font-size: 0.85em; padding: 6px 10px; }
    .site-header { padding: 15px 15px; }
    .header-info { gap: 20px; }
    .business-name { font-size: 2em; }
    /* Updated header logo size for smaller desktop/tablet */
    .header-logo { max-height: 120px; } /* Adjust proportional to base size, ensure fit */
    .hero { padding: 0 15px; }
    .content-section { padding: 40px 0; } /* Reduced vertical padding */
     .container { padding: 0 15px; } /* Apply container padding */
    .content-section h2.main-heading, .section-heading { font-size: 2.5em; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-column { min-width: 200px; padding: 0 5px; }
    .footer-booking { margin-top: 20px; }
}

/* Mobile styles (max-width 768px) */
@media (max-width: 768px) {
    body { padding-top: 50px; }
    .sticky-nav { min-height: 45px; }
    .sticky-nav-logo-area { gap: 6px; } /* Reduce gap */
    .sticky-nav-logo { max-height: 30px; }
    /* HIDE LOGO TEXT ON MOBILE TO SAVE SPACE */
    .sticky-nav-logotext { display: none; }

    /* NEW: Mobile Menu Specific Styles */
    .sticky-nav-center { /* This is the menu content container */
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Position right below sticky nav */
        left: 0;
        width: 100%;
        background-color: #600018; /* Darker Burgundy background for mobile menu */
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        z-index: 999; /* Below the toggle button */
        flex-direction: column; /* Stack menu items vertically */
        padding: 10px 0; /* Add padding */
    }

    /* State when menu is active (shown) */
    .sticky-nav-center.active {
        display: flex;
    }

    .dropdown-content { /* The UL inside sticky-nav-center */
        flex-direction: column; /* Stack items vertically */
        gap: 0; /* Remove gap between items */
    }

    .dropdown-content li {
        width: 100%; /* Full width */
    }

    .dropdown-content li a {
        color: white;
        padding: 10px 25px; /* Add padding to links */
        display: block; /* Make links block-level */
        width: 100%; /* Full width links */
    }

    .dropdown-content li a:hover {
         background-color: rgba(255, 255, 255, 0.1); /* Hover effect for mobile menu items */
    }

    /* Show the mobile menu toggle button */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide the original dropdown button */
     .nav-dropdown { display: none; }


    .hero { padding: 0 10px; margin-top: 15px; }
    .two-column { gap: 30px; }
    /* Adjusted styling for two-columns on mobile to stack */
    .two-column .column { flex: 1 100%; } /* Columns stack */
    .two-column .image-column img { margin-bottom: 20px; } /* Add space below image when stacked */
    .repair-section .section-heading { font-size: 2.2em; margin-bottom: 25px; }

    .site-header { flex-direction: column; align-items: flex-start; padding: 15px 15px; gap: 15px; }
    .logo-area { margin-bottom: 0; width: 100%; justify-content: center; } /* Center logo area on mobile */
    .header-logo { max-height: 80px; } /* Smaller header logo on mobile, scaled up proportionally */
    .business-name { font-size: 1.8em; text-align: center; width: 100%; }
    .tagline { font-size: 0.8em; text-align: center; width: 100%; }
    .header-info { width: 100%; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 10px; margin-top: 0; }
    .service-rating { margin-bottom: 0; gap: 5px; font-size: 0.75em; }
    .service-rating span { display: none; } /* Hide text, show only stars */
    .star-icon { width: 30px; }
    .button.book-button { margin-bottom: 0; padding: 6px 10px; font-size: 0.7em; min-width: auto; }
    .phone-contact { margin-bottom: 0; gap: 5px; }
    .phone-icon { display: inline-block !important; width: 24px !important; height: auto; }
    .phone-number { font-size: 0.9em; }
    .content-section { padding: 30px 0; } /* Reduced vertical padding */
    .container { padding: 0 15px; } /* Apply container padding */
    .content-section h2.main-heading, .section-heading { font-size: 2.2em; }

    /* Reviews section Responsive */
    .reviews-section .section-heading { font-size: 2.2em; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Footer Responsive */
     footer .container { padding: 0 15px; } /* Apply container padding */
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .footer-column { padding: 0; min-width: 100%; }
    .footer-booking { margin-top: 0; }
    .footer-social { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-legal { margin-top: 20px; } /* Add space above legal links */
}

/* Mobile Sticky Nav (Further adjustments) */
@media (max-width: 600px) {
    body { padding-top: 50px; }
    .sticky-nav { padding: 5px 10px; }
    .sticky-nav-logo { max-height: 28px; }
    /* Logo text remains hidden from 768px down */
    .sticky-nav-actions { gap: 8px; }
    .sticky-nav-button { font-size: 0.75em; }
    .sticky-nav-icon { height: 15px; }

     /* Smaller mobile header logo */
     .site-header .header-logo { max-height: 60px; }
}

/* Very Small Screens */
@media (max-width: 400px) {
    body { padding-top: 45px; }
    .sticky-nav { min-height: 40px; }
    .sticky-nav-logo { max-height: 25px; }
    /* Logo text remains hidden */
    .sticky-nav-actions { gap: 5px; }
    .sticky-nav-button.call-button span { font-size: 0.8em; }

    .header-info { gap: 5px; }
    .button.book-button { padding: 5px 8px; font-size: 0.65em; }
    .phone-number { font-size: 0.85em; }
    .service-rating { font-size: 0.7em;}
    .star-icon { width: 28px; }
    .phone-icon { width: 22px !important; }
    .site-header .logo-area { gap: 10px; } /* Reduce gap */
    .header-logo { max-height: 45px; } /* Even smaller header logo */
    .business-name { font-size: 1.6em; text-align: center; width: 100%; }
    .tagline { font-size: 0.75em; text-align: center; width: 100%; }
    .hero { margin-top: 15px; padding: 0 5px; }
    .content-section h2.main-heading, .section-heading { font-size: 2em; }
    /* Reviews section Responsive */
    .reviews-section .section-heading { font-size: 2em; }
    .review-item { padding: 20px; }

    /* Footer Responsive */
     footer .container { padding: 0 5px; } /* Apply container padding */
    .footer-contact p { font-size: 0.85em; }
    .footer-book-button { padding: 10px 20px; font-size: 0.8em; }
    .social-icons a img { height: 25px; }
    .review-stars { font-size: 1.3em; }
}