/* 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;
    /* Keep padding-top for sticky nav clearance */
    padding-top: 110px; /* Adjusted based on potential sticky nav height */
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* == STICKY NAVIGATION BAR STYLES == */
.sticky-nav {
    background-image: linear-gradient(to right, #2E3192, #662D8C);
    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; /* Base min-height */
    display: flex;
    align-items: center;
}

.sticky-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%; /* Ensure content stretches height */
}

/* Logo & Name Area on Left */
.sticky-nav-logo-area {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-right: auto;
   flex-shrink: 0;
   color: #fff;
   text-decoration: none;
}

/* Logo Image Style - Increased size */
.sticky-nav-logo {
   display: block;
   max-height: 80px;
   width: auto;
   transition: max-height 0.3s ease;
}

/* Logo Text Style */
.sticky-nav-logotext {
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
    transition: font-size 0.3s ease;
}

/* Centered Dropdown Container - Visible on all sizes */
.sticky-nav-center {
    display: flex;
    justify-content: center;
    padding: 0 15px;
    flex-grow: 1;
}

/* Dropdown Container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropdown-button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 12px;
    font-size: 0.9em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    white-space: nowrap;
}
.dropdown-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
}
.dropdown-button .arrow {
    margin-left: 5px;
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2E3192;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 1;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}
.dropdown-content li a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
}
.dropdown-content li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}
.nav-dropdown:hover .dropdown-button .arrow {
     transform: rotate(180deg);
}

/* Actions on Right */
.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 Icon Size */
.sticky-nav-icon {
    height: 36px; /* Current size */
    width: auto;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Hide text for the Chat button in sticky nav */
.sticky-nav-button.chat-button span {
    display: none;
}

/* Adjust gap for chat button when text is hidden */
.sticky-nav-button.chat-button {
     gap: 0; /* Remove gap if no text */
}


/* == END STICKY NAVIGATION BAR STYLES == */


/* === Header Styles === */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Adjusted padding and max-width to align with main content */
    padding: 30px 25px; /* Increased vertical padding */
    max-width: 1100px; /* Match main content container width */
    margin: 0 auto; /* Center the header */

    border-bottom: 1px solid #eee;
    background-color: #fff;
    flex-wrap: wrap;
    gap: 20px; /* Space between logo area and info */
}
.logo-area { flex-shrink: 0; margin-bottom: 5px; display: flex; align-items: center; gap: 15px; }
/* Style for the header logo (JPG version) - Increased size */
.header-logo {
    display: block;
    height: auto; /* Let height adjust based on width */
    width: 120px; /* 4x the previous 30px */
    flex-shrink: 0;
    border-radius: 30%; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.business-name {
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #2E3192;
    font-size: 2.2em;
    font-weight: normal;
    margin-bottom: 0;
    /* Font Enhancement: Slightly bolder on larger screens */
     font-weight: 600;
}
.tagline { font-family: Arial, Helvetica, sans-serif; color: #333; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85em; margin-top: 2px;
    /* Font Enhancement: Slight color change */
    color: #555;
}

/* Header Info Styles - Centered */
.header-info {
    display: flex;
    align-items: center;
    gap: 25px; /* Space between items */
    flex-wrap: wrap;
    width: auto; /* Allow it to size based on content */
    justify-content: center; /* Center the items */
    margin-left: auto; /* Push to the right if space allows */
    margin-right: auto; /* Also allow centering if it wraps or space is limited */
}
.service-rating { display: flex; align-items: center; gap: 8px; font-weight: bold; font-size: 0.85em; margin-bottom: 0; }
.star-icon { width: 35px; height: auto; flex-shrink: 0; }
.button.book-button { font-family: Arial, Helvetica, sans-serif; border: 1.5px solid #333; border-radius: 25px; padding: 10px 18px; background-color: #fff; color: #333; 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: 0; flex-shrink: 0; }
.button.book-button:hover { background-color: #f0f0f0; }
/* Phone contact - icon only */
.phone-contact {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    text-decoration: none;
}
.phone-icon { width: 30px; height: auto; flex-shrink: 0; }
/* === END Header Styles === */


/* Hero Section Styles */
.hero { max-width: 1100px; margin: 20px auto 0 auto; padding: 0 25px; }
.hero video { width: 100%; height: auto; display: block; border-radius: 8px; }

/* === Content Section Styles === */
.content-section { padding: 50px 25px; }
.content-section .container { max-width: 1100px; margin: 0 auto; }
.content-section h2.main-heading, .section-heading { font-family: Georgia, Times, 'Times New Roman', serif; font-size: 2.8em; margin-bottom: 30px; font-weight: normal; }
.text-center { text-align: center; }
.content-section h3.sub-heading { font-size: 1.1em; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; color: #ccc; }
.content-section p { margin-bottom: 1.2em; line-height: 1.7; }

/* List Styles (Benefits, Features) */
.focus-list { list-style: none; padding-left: 0; margin: 20px 0; }
.focus-list li { margin-bottom: 1em; padding-left: 25px; position: relative; line-height: 1.6; }
.focus-list li::before { content: '✔'; position: absolute; left: 0; color: #33BABD; font-weight: bold; }
.dark-bg .focus-list li::before { color: #1ABC9C; }

/* Specific list style for FAQ */
.faq-list { list-style: none; padding-left: 0; margin-top: 30px; }
.faq-list li { margin-bottom: 15px; }
.faq-list li a {
    color: #2E3192;
    text-decoration: none;
    font-size: 1.1em;
    display: block;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.faq-list li a:hover {
    color: #662D8C;
    border-bottom-color: #662D8C;
}

.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); }

/* Section Backgrounds */
.dark-bg { background-color: #2C3E50; color: #fff; }
.dark-bg h2.main-heading, .dark-bg .section-heading { color: #fff; }
.dark-bg h3.sub-heading { color: #bdc3c7; }
.dark-bg p, .dark-bg li { color: #ecf0f1; }

.light-bg { background-color: #f8f9fa; color: #333; }
.light-bg .section-heading { color: #333; }

/* Gradient Background for Reviews Section */
.gradient-bg {
    background-image: linear-gradient(to right, #2E3192, #662D8C);
    color: #fff;
}
.gradient-bg .section-heading { color: #fff; }
/* Adjust review item background for visibility on gradient */
.gradient-bg .review-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* === Reviews Grid Styles (Remains similar) === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.review-item { padding: 25px; border-radius: 8px; display: flex; flex-direction: column; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.review-item:hover { transform: translateY(-5px); }
.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; }
.review-stars { color: #FFD700; font-size: 1.4em; margin: 0 auto; line-height: 1; }


/* === Footer Styles === */
.site-footer-section { background-color: #222; color: #fff; padding-top: 50px; padding-bottom: 30px; }
.site-footer-section .container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer-column { flex: 1; min-width: 220px; padding: 0 10px; }
.footer-contact h4, .footer-links h4, .footer-social h4 { margin-bottom: 15px; font-size: 1.1em; }
.footer-contact p { margin-bottom: 8px; font-size: 0.9em; }
.footer-contact a, .footer-links a { color: #fff; text-decoration: none; }
.footer-contact a:hover, .footer-links a:hover { opacity: 0.8; }

/* Footer Links Column Style */
.footer-links ul { list-style: none; padding: 0; margin: 0;}
.footer-links li { margin-bottom: 8px; font-size: 0.9em;}

.footer-social { text-align: right; }
.social-icons { display: flex; justify-content: flex-end; gap: 20px; }
.social-icons a img { height: 28px; width: auto; transition: opacity 0.2s ease; }
.social-icons a:hover img { opacity: 0.8; }

/* Footer Copyright Style */
.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}
.footer-copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 5px;
}
.footer-copyright a:hover {
    text-decoration: underline;
}


/* === Media Queries === */
/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    body { padding-top: 100px; }
    .sticky-nav { padding: 5px 15px; min-height: 45px; }
    .sticky-nav-logo { max-height: 70px; }
    .sticky-nav-logotext { font-size: 1em; }
    .sticky-nav-center { padding: 0 10px; }
    .dropdown-button { font-size: 0.85em; padding: 6px 10px; }
    .sticky-nav-actions { gap: 10px; }
    .sticky-nav-icon { height: 30px; }

    .site-header { padding: 25px 15px; max-width: 960px; }
    .header-info { gap: 15px; }

    .header-logo { width: 90px; }
    .business-name { font-size: 2em; font-weight: normal; }
    .tagline { font-size: 0.8em; color: #333; }


    .hero { padding: 0 15px; max-width: 960px; }
    .content-section { padding: 40px 15px; }
    .content-section .container { max-width: 960px; }
    .content-section h2.main-heading, .section-heading { font-size: 2.5em; margin-bottom: 25px; }
    .focus-list li { margin-bottom: 0.8em; }
    .faq-list li a { font-size: 1em; }

    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .review-item { padding: 20px; }

    .site-footer-section .container { max-width: 960px; padding: 0 15px; }
    .footer-column { min-width: 200px; padding: 0 5px; }
}

/* Mobile */
@media (max-width: 768px) {
    body { padding-top: 80px; }
    .sticky-nav { min-height: 45px; padding: 5px 10px; }
    .sticky-nav-logo { max-height: 60px; }
    .sticky-nav-logotext { display: none; }
    .sticky-nav-center { flex-grow: 0; }
    .dropdown-button { font-size: 0.8em; padding: 5px 8px; }
    .sticky-nav-actions { gap: 6px; }
    .sticky-nav-button.chat-button span { display: none; }
    .sticky-nav-icon { height: 27px; }

    .sticky-nav-content { justify-content: space-between; gap: 10px; }
    .sticky-nav-logo-area { margin-right: 0; }
    .sticky-nav-center { margin: 0 auto; }
    .sticky-nav-actions { margin-left: 0; }

    .site-header {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        max-width: 100%;
        margin: 0 auto;
    }
    .logo-area { flex-direction: row; align-items: center; width: 100%; justify-content: center; margin-bottom: 5px; gap: 10px; }
     .header-logo { width: 75px; border-radius: 30%; }
     .business-name { font-size: 1.8em; text-align: center; font-weight: normal; }
    .tagline { font-size: 0.8em; text-align: center; width: 100%; color: #333; }
    .header-info {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 0;
         margin-left: 0;
         margin-right: 0;
    }
    .service-rating { margin-bottom: 0; gap: 5px; font-size: 0.75em; }
    .service-rating span { display: none; }
    .star-icon { width: 30px; }
    .button.book-button { margin-bottom: 0; padding: 6px 10px; font-size: 0.7em; min-width: auto; white-space: nowrap; }
    .phone-contact { margin-bottom: 0; gap: 0; }
    .phone-icon { display: inline-block !important; width: 24px !important; height: auto; }


    .hero { padding: 0 10px; max-width: 100%; }
    .two-column { gap: 30px; flex-direction: column; }
    .two-column .column { min-width: 100%; }
    .two-column .image-column img { margin-bottom: 20px; }

    .content-section { padding: 30px 15px; }
    .content-section .container { max-width: 100%; }
    .content-section h2.main-heading, .section-heading { font-size: 2.2em; margin-bottom: 20px; }
     .focus-list li { margin-bottom: 0.6em; }
    .faq-list li a { font-size: 0.9em; }

    /* Reviews Section (Moved) */
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
    .review-item { padding: 20px; }

    /* Footer Responsive */
    .site-footer-section .container { max-width: 100%; padding: 0 15px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .footer-column { padding: 0; min-width: 100%; }
     .footer-contact, .footer-links, .footer-social { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-copyright { font-size: 0.8em; margin-top: 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    body { padding-top: 70px; }
    .sticky-nav { min-height: 40px; padding: 5px 8px; }
    .sticky-nav-logo { max-height: 50px; }
    .sticky-nav-content { gap: 8px; }
    .dropdown-button { font-size: 0.75em; padding: 4px 6px; }
    .sticky-nav-actions { gap: 4px; }
    .sticky-nav-button span { display: none; }
    .sticky-nav-icon { height: 20px; }

    .site-header { padding: 15px 10px;}
     .header-info { gap: 5px; }

    .logo-area { gap: 8px; margin-bottom: 0; }
     .header-logo { width: 50px; border-radius: 30%; }
    .business-name { font-size: 1.6em; }
    .tagline { font-size: 0.7em; }
     /* Adjust spacing/size for header elements */
    .button.book-button { padding: 4px 6px; font-size: 0.6em; }
    .phone-contact { gap: 0; }
    .phone-icon { width: 20px !important; }


    .hero { margin-top: 10px; padding: 0 5px; }
     .content-section { padding: 25px 10px; }
    .content-section h2.main-heading, .section-heading { font-size: 1.8em; margin-bottom: 15px; }
     .focus-list li { margin-bottom: 0.5em; font-size: 0.9em; }
    .faq-list li a { font-size: 0.85em; }

    /* Footer Responsive */
    .footer-contact h4, .footer-links h4, .footer-social h4 { font-size: 1em; margin-bottom: 10px; }
    .footer-contact p, .footer-links li { font-size: 0.85em; margin-bottom: 6px;}
    .social-icons { justify-content: center; }
    .social-icons a img { height: 24px; }
    .footer-copyright { font-size: 0.75em; }
}