/* Basic Reset & Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Visual Enhancement: Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: 100%; /* Base font size for rem units */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark grey text */
    padding-top: 60px; /* Initial sticky nav height */
    background-color: #fff;
    -webkit-font-smoothing: antialiased; /* Smoother fonts on WebKit */
    -moz-osx-font-smoothing: grayscale; /* Smoother fonts on Firefox */
}

img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

a {
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* General layout classes */
.container {
    width: 90%; /* Use percentage for better fluidity */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent padding */
}
.content-section { padding: 40px 0; }
.light-bg { background-color: #f8f9fa; }
.text-center { text-align: center; }

/* Headings */
.main-heading, .section-heading {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}
.main-heading { font-size: 2.2rem; }
.section-heading { font-size: 2rem; }


/* Two Column Layout */
.two-column { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.two-column .column { flex: 1; min-width: 280px; }
.two-column .image-column img { border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* List Styles */
.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; font-size: 0.95rem;}
.focus-list li::before { content: '✔'; position: absolute; left: 0; color: #D90429; font-weight: bold; }

/* === STICKY NAVIGATION BAR STYLES === */
.sticky-nav {
    background: linear-gradient(to right, #D90429, #2A9D8F);
    color: #fff;
    padding: 5px 0;
    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: center;
    align-items: center;
}

.sticky-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 15px;
    height: 100%;
}

.sticky-nav-logo-area {
   display: flex;
   align-items: center;
   margin-right: auto;
   flex-shrink: 0;
   color: #fff;
   text-decoration: none;
}

.sticky-nav-logo {
   display: block;
   max-height: 35px;
   width: auto;
   border-radius: 6px;
}

.sticky-nav-center {
     display: flex;
     justify-content: center;
     padding: 0 10px;
}

.dropdown-content {
    display: flex;
    position: static;
    background-color: transparent;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.dropdown-content li a {
    color: white;
    padding: 5px 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 4px;
}
.dropdown-content li a:hover {
    background-color: rgba(255,255,255,0.15);
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.sticky-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 15px;
}

.sticky-nav-button {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}
.sticky-nav-button:hover {
    background-color: rgba(255,255,255,0.15);
    opacity: 1;
}
.sticky-nav-icon { height: 14px; width: auto; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* === Header Styles === */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 25px 0; /* Increased padding for more space when stacked */
}

.site-header .container {
    display: flex;
    flex-direction: column; /* Stack logo-area and header-info */
    align-items: center;   /* Center these stacked blocks */
    gap: 20px;             /* Gap between logo-area and header-info */
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center logo and tagline within its block */
    gap: 8px;
    text-align: center;
    /* order: 1; /* Not strictly needed if HTML order is logo then info */
}

.header-logo {
    display: block;
    max-height: 120px; /* Adjust as needed */
    width: auto;
    border-radius: 10px; /* Rounded corners for the logo image */
}

.header-text {
    text-align: center;
}

.tagline {
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: 0;
}

.header-info {
    display: flex;
    flex-direction: column; /* Stack info items on mobile by default */
    align-items: center;   /* Center info items on mobile by default */
    gap: 15px;
    /* order: 2; /* Not strictly needed if HTML order is logo then info */
    width: 100%; /* For proper centering of items on mobile */
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 0.8rem;
    color: #333;
}
.star-icon { width: 30px; height: auto; flex-shrink: 0; }

.button.book-button {
    border: 1.5px solid #D90429;
    border-radius: 25px;
    padding: 8px 15px;
    background-color: #fff;
    color: #D90429;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.button.book-button:hover {
    background-color: #D90429;
    color: #fff;
}

.phone-contact { display: flex; align-items: center; gap: 6px; }
.phone-icon { width: 26px; height: auto; flex-shrink: 0; }
.phone-number {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #D90429;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}

/* === Hero Section Styles === */
.hero {
    padding: 30px 0;
    text-align: center;
}
.hero-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-image {
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* === Content Section Specific Styles === */
.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);
}

#benefits .sub-heading { color: #B8860B; }

.reviews-section {
    background: linear-gradient(to right, #D90429, #2A9D8F);
    color: #fff;
}
.reviews-section .main-heading, .reviews-section .section-heading { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-bottom: 30px; }
.review-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}
.review-item:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); }
.review-item blockquote { font-style: italic; margin-bottom: 15px; flex-grow: 1; font-size: 0.9rem; line-height: 1.6; border: none; padding: 0; }
.review-item cite { font-weight: bold; margin-bottom: 10px; font-style: normal; display: block; font-size: 0.85rem; }
.review-stars { color: #FFD700; font-size: 1.3rem; margin: 0 auto; line-height: 1; }

.repair-section { background-color: #f8f9fa; color: #333; }
#features .sub-heading { color: #B8860B; }
#faq .sub-heading { color: #B8860B; }

.faq-list { font-size: 0.95rem; }
.faq-list ul { list-style: disc; margin-left: 20px; margin-bottom: 1.5em;}
.faq-list li { margin-bottom: 0.8em; }
.faq-list li a { color: #D90429; text-decoration: underline; }
.faq-list li a:hover { color: #B30322; }

/* === Footer Styles === */
footer { background-color: #ffffff; color: #333; padding-top: 20px; padding-bottom: 30px; font-size: 0.9rem;}
.footer-divider { border: none; height: 1px; background-color: #ddd; margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 25px; margin-bottom: 25px; }
.footer-column { flex: 1; min-width: 250px; padding: 0 10px; }
.footer-contact h4 { margin-bottom: 12px; font-size: 1.05rem; }
.footer-contact p { margin-bottom: 6px; font-size: 0.85rem; }
.footer-contact a { color: #D90429; text-decoration: none; }
.footer-contact a:hover { opacity: 0.8; }
.footer-book-link { font-weight: bold; display: inline-block; margin-top: 8px; color: #B8860B; }
.footer-book-link:hover { opacity: 0.8; text-decoration: underline; }

.footer-booking { text-align: center; margin-top: 20px; }
.footer-book-button {
    background-color: #D90429;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 25px;
}
.footer-book-button:hover { background-color: #B30322; }

.footer-social { text-align: right; }
.footer-social h4 { margin-bottom: 12px; font-size: 1.05rem; }
.social-icons { display: flex; justify-content: flex-end; gap: 15px; }
.social-icons a img { height: 26px; width: auto; transition: opacity 0.2s ease; }
.social-icons a:hover img { opacity: 0.7; }

.footer-legal { text-align: center; font-size: 0.8rem; color: #555; }
.footer-legal p { margin-bottom: 5px; }
.footer-legal a { color: #D90429; margin: 0 5px; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* === Media Queries for Responsiveness === */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container { width: 95%; padding: 0 20px; }
    .main-heading { font-size: 2.5rem; }
    .section-heading { font-size: 2.2rem; }
    .hero-heading { font-size: 2.4rem; }
    .hero-text { font-size: 1.05rem; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-column { min-width: 220px; }

    /* For .site-header .container, it's already column and centered from base styles */
    /* .header-info items (star, button, phone) can form a row */
    .header-info {
        flex-direction: row; /* Arrange items within header-info in a row */
        justify-content: center; /* Center this row of items */
        align-items: center;
        flex-wrap: wrap; /* Allow wrapping if needed */
        width: auto; /* Allow natural width for the row of items */
    }
    .header-logo { max-height: 140px; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    body { padding-top: 55px; }
    .sticky-nav { min-height: 55px; }
    .sticky-nav-logo { max-height: 40px; }
    .sticky-nav-center { display: flex; }
    .mobile-menu-toggle { display: none; }
    .dropdown-content { flex-direction: row; gap: 20px; }
    .dropdown-content li a { font-size: 0.9rem; padding: 8px 12px; }
    .sticky-nav-actions { gap: 12px; }
    .sticky-nav-button { font-size: 0.85rem; padding: 8px 12px; }
    .sticky-nav-icon { height: 16px; }

    /* .site-header .container remains column and centered */
    .logo-area {
        /* No change needed, already centered by parent */
    }
    .header-logo { max-height: 150px; } /* Slightly larger logo */
    .tagline { font-size: 0.85rem; }

    .header-info {
        /* Already flex-direction: row from 576px breakpoint */
        gap: 20px; /* Adjust gap for slightly larger screens */
    }
    .service-rating span { display: inline; } /* Show "TOP RATED SERVICE" text */

    .button.book-button { font-size: 0.8rem; padding: 10px 18px;}
    .phone-number { font-size: 1.1rem; }

    .hero { padding: 40px 0; }
    .hero-heading { font-size: 2.8rem; }
    .hero-text { font-size: 1.1rem; }

    .content-section { padding: 50px 0; }
    .two-column .column { min-width: 300px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }

    .footer-booking { margin-top: 0; }
    .footer-social { text-align: right; }
    .social-icons { justify-content: flex-end; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    body { padding-top: 60px; }
    .sticky-nav { min-height: 60px; }
    .main-heading { font-size: 2.8rem; }
    .section-heading { font-size: 2.5rem; }
    .hero-heading { font-size: 3.2rem; }
    .hero-text { font-size: 1.15rem; max-width: 850px; }
    .header-logo { max-height: 180px; } /* Larger logo for desktop */
    .focus-list li { font-size: 1rem;}
    .header-info { gap: 25px; }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body { padding-top: 50px; }
    .sticky-nav { min-height: 50px; }
    .sticky-nav-logo { max-height: 30px; }
    .sticky-nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #B30322;
        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; }
    .dropdown-content { flex-direction: column; gap: 0; width: 100%; }
    .dropdown-content li { width: 100%; text-align: center; }
    .dropdown-content li a {
        color: white;
        padding: 12px 25px;
        display: block;
        width: 100%;
        font-size: 1rem;
    }
    .dropdown-content li a:hover { background-color: rgba(255, 255, 255, 0.1); }
    .mobile-menu-toggle { display: block; }

    .sticky-nav-actions {
        gap: 8px;
        margin-left: auto;
    }
    .sticky-nav-button {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    .sticky-nav-icon { height: 13px; }

    .header-logo { max-height: 100px; }
    .tagline { font-size: 0.75rem; }
    .header-info {
        /* flex-direction is already column and items centered from base .site-header .container styles */
        /* width: 100%; is already set for proper centering */
    }
    .service-rating span { display: none; }
    .star-icon { width: 28px; }
    .button.book-button { padding: 8px 12px; font-size: 0.7rem; }
    .phone-icon { width: 24px; }
    .phone-number { font-size: 0.9rem; }

    .main-heading { font-size: 1.8rem; }
    .section-heading { font-size: 1.6rem; }
    .hero-heading { font-size: 1.9rem; }
    .hero-text { font-size: 0.95rem; }

    .two-column { gap: 20px; }
    .two-column .column { flex: 1 1 100%; }
    .two-column .image-column img { margin-bottom: 15px; }

    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 25px; }
    .footer-column { padding: 0; min-width: 100%; }
    .footer-social { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-legal { margin-top: 15px; }
}

@media (max-width: 400px) {
    .sticky-nav-button.call-button span { font-size: 0.7rem; }
    .hero-heading { font-size: 1.7rem; }
    .main-heading { font-size: 1.6rem; }
    .section-heading { font-size: 1.4rem; }
    .review-item blockquote { font-size: 0.85rem; }
    .tagline { font-size: 0.7rem; }
}