/* 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; /* Adjust as needed based on final sticky nav 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; }
.light-bg { background-color: #f8f9fa; } /* Light Grey Background */

.text-center { text-align: center; }

/* Two Column Layout */
.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 (Light Purple Accent) */
.focus-list li::before { content: '✔'; position: absolute; left: 0; color: #A082D4; /* Light Purple Accent */ font-weight: bold; }

/* === STICKY NAVIGATION BAR STYLES === */
/* UPDATED: Background Color (Light Purple) */
.sticky-nav {
    background-color: #A082D4; /* Light Purple */
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sticky-nav-logo-area {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-right: auto;
   flex-shrink: 0;
   color: #fff;
   text-decoration: none;
}

.sticky-nav-logo {
   display: block;
   max-height: 40px;
   width: auto;
}

.sticky-nav-logotext {
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
}

.sticky-nav-center {
     display: flex;
     justify-content: center;
     padding: 0 15px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    display: none;
}

.dropdown-content {
    display: flex;
    position: static;
    background-color: transparent;
    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;
    gap: 20px;
}

.dropdown-content li a {
    color: white;
    padding: 0;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    white-space: nowrap;
}
.dropdown-content li a:hover {
    background-color: transparent;
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.sticky-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.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; }

/* === 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: Logo Area Layout (Vertical Stack) */
.site-header .logo-area {
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center; /* Center items horizontally */
    gap: 5px; /* Reduced gap for vertical stacking */
    flex-shrink: 0;
    margin-bottom: 0; /* Remove bottom margin, let header gap handle spacing */
    text-align: center; /* Center the text block */
}

.header-logo {
    display: block;
    max-height: 120px; /* Adjusted base size for vertical layout */
    width: auto;
    margin: 0 auto; /* Ensure logo is centered */
}

.site-header .header-text {
    /* Text alignment is handled by .logo-area text-align: center */
}

/* UPDATED: Business Name Color (Light Purple) */
.business-name {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #A082D4; /* Light Purple */
    font-size: 2.0em; /* Slightly adjusted size */
    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; }
.star-icon { width: 35px; height: auto; flex-shrink: 0; }

/* UPDATED: Book Button Styles (Light Purple) */
.button.book-button {
    font-family: Arial, Helvetica, sans-serif;
    border: 1.5px solid #A082D4; /* Light Purple Border */
    border-radius: 25px;
    padding: 10px 18px;
    background-color: #fff;
    color: #A082D4; /* Light Purple 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; /* Spacing for desktop */
    flex-shrink: 0;
}
/* UPDATED: Book Button Hover Styles (Light Purple) */
.button.book-button:hover {
    background-color: #A082D4; /* Light Purple Background */
    color: #fff; /* White Text */
}
/* .phone-contact adjusted in mobile query */
.phone-icon { width: 30px; height: auto; flex-shrink: 0; }
/* UPDATED: Phone Number Link Color (Light Purple) */
.phone-number { /* This styles the <a> tag */
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #A082D4; /* Light Purple */
    font-size: 1.1em; /* Base size */
    font-weight: bold;
    white-space: nowrap;
    display: inline-flex; /* Align icon and text */
    align-items: center;
    gap: 5px; /* Gap between icon and text for desktop */
    text-decoration: none; /* Ensure no underline on link */
}
.phone-number-text {
   /* No specific desktop styles needed */
}


.hero { max-width: 1100px; margin: 20px auto 0 auto; padding: 0 25px; }

/* === Content Section Specific Styles === */
.about-section { background-color: #ffffff; color: #333; }
.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: #D4AF37; /* Gold Accent */ }
.about-section p { color: #333; }

.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Section: Benefits */
/* Styles inherited from content-section and light-bg */
/* UPDATED: Sub-heading color (Gold Accent) */
#benefits h3.sub-heading { color: #D4AF37; /* Gold Accent */ }

/* Section: Reviews */
/* UPDATED: Reviews section with Light Purple/Gold Gradient Background */
.reviews-section {
    background: linear-gradient(to right, #A082D4, #D4AF37); /* Light Purple to Gold Gradient */
    color: #fff;
}
.reviews-section .main-heading, .reviews-section .section-heading { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.review-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}
.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; }
/* Star color (Keep Bright Gold) */
.review-stars { color: #FFD700; /* Bright Gold */ font-size: 1.4em; margin: 0 auto; line-height: 1; }

/* Section: Features */
.repair-section { background-color: #f8f9fa; color: #333; } /* This class is used by #features */
.repair-section .section-heading { color: #333; }
/* UPDATED: Sub-heading color (Gold Accent) */
#features h3.sub-heading, #features h4 { color: #D4AF37; /* Gold Accent for primary list item headings */ }
#features .focus-list > li > h4 { /* More specific selector for the main service category headings */
    font-size: 1.2em; /* Slightly larger for category titles */
    margin-bottom: 0.8em;
    padding-left: 0; /* Remove padding if ::before is not used for these h4 */
    position: static; /* Reset from .focus-list li */
}
#features .focus-list > li > h4::before {
    content: none; /* Remove checkmark from category titles */
}

/* Section: FAQ */
/* Styles inherited from content-section and light-bg */
/* UPDATED: Sub-heading color (Gold Accent) */
#faq h3.sub-heading { color: #D4AF37; /* 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 (Light Purple) */
.faq-list li a { color: #A082D4; /* Light Purple for links */ text-decoration: underline; }
.faq-list li a:hover { color: #8A6EB8; } /* Darker Light Purple */
.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; }

/* NEW: Price List Styling */
.price-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2em;
    margin-top: 0.5em; /* Space below category h4 */
}
.price-list li {
    margin-bottom: 0.6em; /* Closer spacing for price items */
    padding-left: 0; /* No bullet icon needed here */
    position: static; /* Remove absolute positioning from .focus-list li */
    color: #333; /* Dark text color */
    display: flex; /* Align item and price */
    justify-content: space-between; /* Put price on the right */
    border-bottom: 1px dashed #ddd; /* Subtle separator */
    padding-bottom: 0.6em;
    font-size: 0.95em;
}
.price-list li:last-child {
    border-bottom: none;
}
.price-list li::before {
    content: none; /* Remove the checkmark bullet */
}
.price-list h5 { /* For sub-categories like "Waxing" */
    margin-top: 1em;
    margin-bottom: 0.7em;
    color: #D4AF37; /* Gold Accent for sub-category headings */
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3em;
}
.price-list ul { /* Styling for nested lists like Waxing items */
    margin-top: 0.5em;
    padding-left: 15px; /* Indent nested lists */
    list-style: none; /* No bullets for service items */
}
 .price-list ul li { /* Individual service items within a sub-category */
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    font-size: 0.9em;
 }
 .price-list ul li:last-child {
    border-bottom: none;
 }

/* === Footer Styles === */
footer { background-color: #ffffff; color: #333; padding-top: 20px; padding-bottom: 30px; }
.footer-divider { border: none; height: 1px; background-color: #ccc; margin: 40px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; }
.footer-column { flex: 1; min-width: 220px; padding: 0 10px; }
.footer-contact h4 { margin-bottom: 15px; font-size: 1.1em; color: #A082D4; /* Light Purple for footer headings */ }
.footer-contact p { margin-bottom: 8px; font-size: 0.9em; }
/* UPDATED: Footer Contact Links Color (Light Purple) */
.footer-contact a { color: #A082D4; text-decoration: none; }
.footer-contact a:hover { opacity: 0.8; }
/* UPDATED: Footer Book Link Text Color (Gold Accent) */
.footer-book-link { font-weight: bold; display: inline-block; margin-top: 10px; color: #D4AF37; }
.footer-book-link:hover { opacity: 0.8; text-decoration: underline; }

.footer-booking { text-align: center; margin-top: 30px; }
/* UPDATED: Footer Book Button Styles (Light Purple) */
.footer-book-button {
    background-color: #A082D4; /* Light Purple Background */
    color: #fff; /* White Text */
    border: none;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}
.footer-book-button:hover { background-color: #8A6EB8; } /* Darker Light Purple on hover */

.footer-social { text-align: right; }
.footer-social h4 { margin-bottom: 15px; font-size: 1.1em; color: #A082D4; /* Light Purple for footer headings */ }
.social-icons { display: flex; justify-content: flex-end; gap: 20px; }
.social-icons a img { height: 28px; width: auto; transition: opacity 0.2s ease; filter: none; /* Ensure no filter on light background */ }
.social-icons a:hover img { opacity: 0.8; }

.footer-legal { text-align: center; font-size: 0.85em; color: #555; }
.footer-legal p { margin-bottom: 5px; }
/* UPDATED: Footer Legal Links Color (Light Purple) */
.footer-legal a { color: #A082D4; 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;
         position: static;
         flex-direction: row;
         background-color: transparent;
         box-shadow: none;
         opacity: 1;
         visibility: visible;
         gap: 20px;
     }
    .dropdown-content li a { padding: 0; }

    /* Base Header Styles apply (vertical stack) */
    .site-header { align-items: center; /* Keep center alignment */ justify-content: space-between; }
    .header-info { width: auto; flex-wrap: wrap; justify-content: flex-end; gap: 25px; border-top: none; padding-top: 0; margin-top: 0;}
    .service-rating span { display: inline; } /* Show rating text on desktop */
    .button.book-button, .phone-contact, .service-rating { margin-bottom: 5px; } /* Restore bottom margin */
    .phone-number { font-size: 1.1em; gap: 5px; /* Ensure gap */ }
    .phone-number-text { display: inline; } /* Ensure phone text is visible */
}


/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    body { padding-top: 55px; }
    .sticky-nav { padding: 5px 15px; }
    .sticky-nav-logo-area { gap: 8px; }
    .sticky-nav-logo { max-height: 35px; }
    .sticky-nav-logotext { font-size: 1em; }
    .site-header { padding: 15px 15px; }
    .business-name { font-size: 2em; }
    .header-logo { max-height: 100px; } /* Adjust logo size */
    .hero { padding: 0 15px; }
    .content-section { padding: 40px 0; }
     .container { padding: 0 15px; }
    .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; }
    .sticky-nav-logo { max-height: 30px; }
    .sticky-nav-logotext { display: none; } /* Hide logo text on mobile */

    /* Mobile Menu */
    .sticky-nav-center {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Position right below sticky nav */
        left: 0;
        width: 100%;
        background-color: #8A6EB8; /* Darker Light Purple background for mobile menu */
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        z-index: 999;
        flex-direction: column;
        padding: 10px 0;
    }
    .sticky-nav-center.active { display: flex; } /* State when menu is active */
    .dropdown-content { flex-direction: column; gap: 0; width: 100%; }
    .dropdown-content li { width: 100%; }
    .dropdown-content li a {
        color: white;
        padding: 10px 25px;
        display: block;
        width: 100%;
    }
    .dropdown-content li a:hover { background-color: rgba(255, 255, 255, 0.1); }
    .mobile-menu-toggle { display: block; } /* Show hamburger */
    .nav-dropdown { display: none; } /* Hide original desktop dropdown structure */

    .hero { padding: 0 10px; margin-top: 15px; }
    .two-column { gap: 30px; }
    .two-column .column { flex: 1 1 100%; } /* Stack columns */
    .two-column .image-column img { margin-bottom: 20px; }
    .repair-section .section-heading { font-size: 2.2em; margin-bottom: 25px; } /* #features */

    /* --- MOBILE HEADER BASE (768px) --- */
    .site-header {
        flex-direction: column; /* Stack logo area and info area */
        align-items: center; /* Center align items */
        padding: 15px 15px;
        gap: 20px; /* Gap between logo area and info area */
    }
    /* .logo-area styles already set flex-direction: column, align-items: center */
    .header-logo {
        max-height: 70px;
        /* margin: 0 auto; already set */
    }
    /* .header-text styles already set */
    .business-name {
        font-size: 1.8em;
        /* text-align: center; width: 100%; already set */
    }
    .tagline {
        font-size: 0.8em;
        /* text-align: center; width: 100%; already set */
    }
    /* --- HEADER INFO AREA (768px and down) --- */
    .header-info {
        width: 100%;
        flex-wrap: nowrap; /* Keep items in a row */
        justify-content: space-between; /* Distribute space between items */
        align-items: center;
        gap: 10px; /* Reduced gap */
        margin-top: 0;
        border-top: 1px solid #eee; /* Separator line */
        padding-top: 15px;
    }
    .service-rating { margin-bottom: 0; gap: 5px; font-size: 0.75em; }
    .service-rating span { display: none; } /* Hide rating text */
    .star-icon { width: 30px; }
    .button.book-button { margin-bottom: 0; padding: 8px 12px; font-size: 0.75em; min-width: auto; }
    .phone-contact { margin-bottom: 0; } /* Div containing the link */
    .phone-number { font-size: 1em; /* Adjust size of the link/icon container */ gap: 0; /* No gap needed */ }
    .phone-icon { display: inline-block !important; width: 24px !important; height: auto; }
    /* HIDE PHONE NUMBER TEXT ON MOBILE */
    .phone-number-text { display: none; }
    /* --- END MOBILE HEADER BASE --- */


    .content-section { padding: 30px 0; }
    .container { padding: 0 15px; }
    .content-section h2.main-heading, .section-heading { font-size: 2.2em; }

    /* Reviews and Features Responsive */
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
    #features .focus-list > li > h4 { font-size: 1.1em; } /* Adjust feature category heading */
    .price-list li { font-size: 0.9em; }
    .price-list ul li { font-size: 0.85em; }

    /* Footer Responsive */
    footer .container { padding: 0 15px; }
    .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; }
}

/* 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 */
    .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 - Header Info Stays Horizontal */
@media (max-width: 480px) {
    .site-header { gap: 15px; } /* Adjust gap */
    .header-info {
        /* REMOVED flex-direction: column; */
        /* Items remain in a row, inheriting from 768px rule */
        gap: 8px; /* Further reduce gap */
        padding-top: 10px;
        border-top: 1px solid #eee; /* Keep separator line */
    }
    .button.book-button { padding: 6px 10px; font-size: 0.7em; } /* Adjust button size */
    .star-icon { width: 28px; }
    .phone-icon { width: 22px !important; }

    .business-name { font-size: 1.6em; }
    .tagline { font-size: 0.75em; }
    .header-logo { max-height: 55px; }
}


/* Even Smaller Screens (Refinements) */
@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; } /* Can adjust specific button text */

    /* Header info items remain horizontal, adjust sizes */
    .header-info { gap: 5px; } /* Tighten gap further */
    .button.book-button { font-size: 0.65em; padding: 5px 8px; }
    /* Phone number text is hidden, no style needed */
    .service-rating { font-size: 0.7em;} /* Rating text already hidden */
    .star-icon { width: 25px; } /* Slightly smaller star */
    .phone-icon { width: 20px !important; } /* Slightly smaller phone */
    .header-logo { max-height: 50px; }

    .hero { margin-top: 15px; padding: 0 5px; }
    .content-section h2.main-heading, .section-heading { font-size: 2em; }
    .review-item { padding: 20px; }

    /* Footer Responsive */
    footer .container { padding: 0 5px; }
    .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; }
}