/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-color-navy: #0d3b66;  /* Deep Navy */
    --primary-color-green: #43aa8b; /* Green Accent */
    --secondary-color: #f4d35e; /* A complementary accent - optional, e.g., yellow/gold */
    --light-color: #faf0ca;   /* Lighter shade for backgrounds, derived from secondary */
    --text-color-dark: #2c3e50; /* Darker text for readability */
    --text-color-light: #f8f9fa;/* Light text on dark backgrounds */
    --white-color: #ffffff;
    --gray-bg-color: #f7f9fc; /* Very light gray for alternate sections */
    --border-color: #d1d8e0; /* Softer border color */
    --faq-border-color: #e0e6ed;

    --font-family-heading: 'Montserrat', sans-serif;
    --font-family-body: 'Poppins', sans-serif;
    --base-font-size: 16px;
    --line-height-base: 1.7;

    --container-width: 1180px;
    --container-padding: 20px;

    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.07);
    --box-shadow-strong: 0 8px 25px rgba(13, 59, 102, 0.15);
    --transition-speed: 0.3s ease-in-out;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* For button pops */
    --transition-accordion: 0.35s ease-in-out; /* For FAQ */
}

/* ===== Base Reset & Typography ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: var(--base-font-size); }
body {
    font-family: var(--font-family-body);
    line-height: var(--line-height-base);
    color: var(--text-color-dark);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-heading); color: var(--primary-color-navy); margin-bottom: 0.85em; line-height: 1.3; font-weight: 700; }
h1 { font-size: 3.2rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.5rem; }
p { margin-bottom: 1.2rem; }
a { color: var(--primary-color-green); text-decoration: none; transition: color var(--transition-speed); }
a:hover { color: var(--primary-color-navy); }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
ul { list-style: none; } address { font-style: normal; }

/* ===== Utility Classes ===== */
.container { width: 100%; max-width: var(--container-width); padding-right: var(--container-padding); padding-left: var(--container-padding); margin-right: auto; margin-left: auto; }
.section-padding { padding-top: 80px; padding-bottom: 80px; }
.section-padding-small { padding-top: 40px; padding-bottom: 40px; }
.alt-bg { background-color: var(--gray-bg-color); }
.text-center { text-align: center; } .text-left { text-align: left; }
.section-title { text-align: center; margin-bottom: 50px; font-weight: 700; position: relative; padding-bottom: 20px; }
.section-title::after { content: ''; position: absolute; display: block; width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary-color-green), var(--primary-color-navy)); bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; }
.section-title.align-left { text-align: left; } .section-title.align-left::after { left: 0; transform: translateX(0); }

.primary-button, .secondary-button {
    display: inline-block; padding: 14px 30px; border-radius: var(--border-radius-md);
    font-weight: 600; font-family: var(--font-family-heading); text-align: center;
    transition: transform var(--transition-bounce), box-shadow var(--transition-speed), background-color var(--transition-speed), border-color var(--transition-speed), color var(--transition-speed);
    border: 2px solid transparent; cursor: pointer; text-transform: uppercase;
    letter-spacing: 0.5px; box-shadow: var(--box-shadow-light);
}
.primary-button { background-color: var(--primary-color-green); color: var(--white-color); border-color: var(--primary-color-green); }
.primary-button:hover {
    background-color: #3aa17e; border-color: #3aa17e; color: var(--white-color);
    transform: translateY(-4px) scale(1.05); /* More pop */
    box-shadow: 0 12px 24px rgba(67, 170, 139, 0.35); /* Stronger green glow */
}
.secondary-button { background-color: transparent; color: var(--primary-color-navy); border: 2px solid var(--primary-color-navy); }
.secondary-button:hover {
    background-color: var(--primary-color-navy); color: var(--white-color);
    transform: translateY(-4px) scale(1.05); /* More pop */
    box-shadow: 0 12px 24px rgba(13, 59, 102, 0.35); /* Stronger navy glow */
}

/* ===== Top Business Badge, Header, Nav - (Mostly unchanged from previous) ===== */
.top-business-badge { background-color: var(--primary-color-navy); color: var(--text-color-light); padding: 8px 0; text-align: center; font-size: 0.9rem; font-weight: 500; }
.site-header { background-color: rgba(255, 255, 255, 0.95); padding: 15px 0; position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 3px 10px rgba(0,0,0,0.08); backdrop-filter: blur(5px); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 2rem; font-weight: 700; color: var(--primary-color-navy); }
.main-nav .nav-links { display: flex; list-style: none; } .main-nav .nav-links li { margin-left: 30px; }
.main-nav .nav-links a { color: var(--text-color-dark); font-weight: 500; font-family: var(--font-family-heading); padding: 8px 0; position: relative; transition: color var(--transition-speed); }
.main-nav .nav-links a::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background-color: var(--primary-color-green); transition: width var(--transition-speed); }
.main-nav .nav-links a:hover, .main-nav .nav-links a.active { color: var(--primary-color-green); }
.main-nav .nav-links a:hover::after, .main-nav .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001;}
.hamburger-icon { display: block; width: 28px; height: 3px; background-color: var(--primary-color-navy); margin: 6px 0; transition: all var(--transition-speed); border-radius: 3px; }
.nav-toggle.open .hamburger-icon:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open .hamburger-icon:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger-icon:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero Section - With Parallax Attempt ===== */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Darkened generic image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Simple CSS Parallax Attempt - might have issues with responsiveness or other transforms */
    position: relative; color: var(--text-color-light); padding: 150px 0;
    text-align: center; min-height: 90vh; display: flex; align-items: center; justify-content: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(13, 59, 102, 0.7); z-index: 1; } /* Increased overlay opacity slightly */
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { color: var(--white-color); font-size: 3.8rem; font-weight: 700; margin-bottom: 20px; text-shadow: 2px 2px 6px rgba(0,0,0,0.4); }
.hero-content .slogan { font-size: 2rem; margin-bottom: 15px; font-weight: 600; color: var(--white-color); opacity: 0.95; text-shadow: 1px 1px 4px rgba(0,0,0,0.3); }
.hero-content .sub-slogan { font-size: 1.3rem; margin-bottom: 40px; font-weight: 400; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 700px; margin-left:auto; margin-right:auto;}
.hero-cta-buttons .cta-button { margin: 10px 15px; padding: 16px 38px; font-size: 1.1rem; }
.hero-cta-buttons .primary-button { background-color: var(--primary-color-green); border-color: var(--primary-color-green); }
.hero-cta-buttons .primary-button:hover { background-color: #368f70; border-color: #368f70; }
.hero-cta-buttons .secondary-button { color: var(--white-color); border-color: var(--white-color); }
.hero-cta-buttons .secondary-button:hover { background-color: var(--white-color); color: var(--primary-color-navy); }

/* ===== Stats Counter Section - (Mostly unchanged from previous, JS will animate) ===== */
#stats-counter { background-color: var(--primary-color-navy); color: var(--white-color); padding: 30px 0;}
.stat-item .stat-number { font-size: 2.8rem; font-weight: 700; display: block; color: var(--primary-color-green); } /* Slightly larger */
.stat-item .stat-label { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.85); }

/* ===== Services, About, Testimonials - (Mostly unchanged from previous) ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; }
.service-card { background-color: var(--white-color); padding: 35px; border-radius: var(--border-radius-md); text-align: center; box-shadow: var(--box-shadow-light); transition: transform var(--transition-speed), box-shadow var(--transition-speed); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-strong); }
.service-icon { width: 55px; height: 55px; margin-bottom: 25px; color: var(--primary-color-green); }
.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--primary-color-navy); }
.service-card p { font-size: 0.95rem; color: #555; }
.service-note { font-size: 0.8rem; color: #777; display: block; margin-top: 10px; }
.service-tag { position: absolute; top: 15px; right: -30px; background-color: var(--primary-color-green); color: var(--white-color); padding: 5px 35px 5px 15px; font-size: 0.75rem; font-weight: 600; transform: rotate(45deg) translateX(13px) translateY(-33px); transform-origin: center; width: 150px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-transform: uppercase; }
.service-tag.best-seller-tag { background-color: var(--secondary-color); color: var(--primary-color-navy); }
.service-tag.special-service-tag { background-color: var(--primary-color-navy); }
.service-brands-note { margin-top: 40px; font-size: 1rem; color: #444; }

.about-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--border-radius-md); box-shadow: var(--box-shadow-strong); }
.about-content .tagline { font-size: 1.3rem; font-style: italic; color: #555; margin-bottom: 25px; }
.about-content .local-landmark { color: var(--primary-color-green); font-weight: 500; }
.highlights-list { margin-top: 25px; }
.highlights-list li { display: flex; align-items: center; margin-bottom: 12px; font-size: 1.05rem; }
.highlight-icon { color: var(--primary-color-green); margin-right: 12px; font-size: 1.3rem; font-weight: bold; }

.testimonials-section { background-color: var(--white-color); }
.testimonial-slider-placeholder { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-item { background-color: var(--gray-bg-color); padding: 30px; border-radius: var(--border-radius-md); border-left: 5px solid var(--primary-color-green); box-shadow: var(--box-shadow-light); }
.testimonial-item .quote { font-size: 1.1rem; font-style: italic; color: #444; margin-bottom: 20px; line-height: 1.6; }
.testimonial-item .quote::before { content: "“"; font-size: 2.5rem; color: var(--primary-color-green); font-weight: bold; margin-right: 5px; vertical-align: -0.4em; display: inline-block; }
.testimonial-item .author { font-size: 1rem; font-weight: 600; color: var(--primary-color-navy); text-align: right; }


/* ===== NEW FAQ Section Styles ===== */
.faq-section {} /* Already has alt-bg */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--faq-border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 15px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-family-heading);
    font-size: 1.15rem; /* Larger question font */
    font-weight: 600;
    color: var(--primary-color-navy);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}
.faq-question:hover { background-color: rgba(13, 59, 102, 0.03); } /* Subtle hover on question */
.faq-question span { flex-grow: 1; padding-right: 15px;} /* Text span */
.faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color-green);
    transition: transform var(--transition-accordion);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); } /* Rotate plus icon */
.faq-question[aria-expanded="true"] .icon-plus { display: none; }
.faq-question[aria-expanded="true"] .icon-minus { display: inline-block; }
.faq-answer {
    padding: 0px 20px 20px 20px; /* Padding for the answer */
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    max-height: 0; /* JS will set this to scrollHeight */
    overflow: hidden;
    transition: max-height var(--transition-accordion), padding var(--transition-accordion), opacity var(--transition-accordion);
    opacity: 0;
}
.faq-answer p:last-child { margin-bottom: 0; }
/* Active state for answer - to be controlled by JS toggling a class or directly setting style */
.faq-answer.active {
    /* max-height will be set by JS */
    opacity: 1;
    /* padding-top: 10px; If needed for more space, but might cause jump if not handled by max-height transition well */
}


/* ===== Contact & Hours - (Mostly unchanged from previous) ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: flex-start; }
.contact-info-card { background-color: var(--white-color); padding: 35px; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow-strong); }
.contact-info-card h3 { margin-bottom: 15px; border-bottom: 2px solid var(--primary-color-green); padding-bottom: 10px; color: var(--primary-color-navy); }
.contact-info-card p, .contact-info-card address { margin-bottom: 20px; line-height: 1.7; }
.phone-number a { font-size: 1.5rem; font-weight: 700; color: var(--primary-color-navy); }
.phone-number a:hover { color: var(--primary-color-green); }
.whatsapp-button { background-color: #25D366; color: var(--white-color); border-color: #25D366; display: inline-flex; align-items: center; justify-content: center; }
.whatsapp-button:hover { background-color: #1DAE50; border-color: #1DAE50; }
.whatsapp-button svg { margin-right: 10px; }
.contact-map iframe { border-radius: var(--border-radius-md); width: 100%; min-height: 450px; }
.map-note { font-size: 0.9rem; color: #666; text-align: center; margin-top: 15px; }

.hours-grid { max-width: 600px; margin: 0 auto; background-color: var(--gray-bg-color); padding: 35px; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow-light); }
.day-hours { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border-color); font-size: 1.05rem; }
.day-hours:last-child { border-bottom: none; }
.day-icon { font-size: 1.3rem; margin-right: 15px; color: var(--primary-color-green); }
.day-hours .day { font-weight: 500; color: var(--primary-color-navy); }
.day-hours .time { font-weight: 500; color: #444; }

/* ===== Footer, Floating WA, Sticky Banners, ScrollToTop - (Mostly unchanged from previous) ===== */
.site-footer-bottom { background-color: var(--primary-color-navy); color: rgba(250, 240, 202, 0.8); padding: 60px 0; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-logo { font-size: 1.8rem; font-weight: 700; color: var(--white-color); margin-bottom: 10px; }
.footer-links a { color: rgba(250, 240, 202, 0.8); margin: 0 8px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--white-color); }
.footer-trust p { font-size: 0.9rem; margin-bottom: 0; }
.hit-counter-badge { margin-top: 10px; }
.hit-counter-badge img { vertical-align: middle; margin-right: 5px;}
.hit-counter-badge span { font-size: 0.8rem; opacity: 0.7; }
.copyright { font-size: 0.9rem; margin-bottom: 5px; }
.footer-credit { font-size: 0.85rem; color: rgba(250, 240, 202, 0.6); }

.floating-whatsapp-button { position: fixed; bottom: 25px; right: 25px; background-color: #25D366; color: var(--white-color); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 998; transition: transform var(--transition-bounce), box-shadow var(--transition-speed); }
.floating-whatsapp-button:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.floating-whatsapp-button svg { width: 32px; height: 32px; }

.sticky-call-banner-mobile { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--primary-color-navy); color: var(--white-color); padding: 12px 0; text-align: center; font-size: 1rem; font-weight: 500; z-index: 997; box-shadow: 0 -3px 10px rgba(0,0,0,0.1); }
.sticky-call-banner-mobile a { color: var(--white-color); font-weight: 600; }
.sticky-call-banner-mobile a:hover { color: var(--primary-color-green); }

.sticky-cta-bar { background-color: rgba(255, 255, 255, 0.97); padding: 15px 0; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 996; box-shadow: 0 -5px 15px rgba(0,0,0,0.08); border-top: 1px solid var(--border-color); }
.sticky-cta-bar .container { display: flex; justify-content: space-between; align-items: center; }
.sticky-cta-bar span { font-size: 1.1rem; font-weight: 600; color: var(--primary-color-navy); }
.sticky-cta-bar .cta-button { padding: 10px 20px; font-size: 0.9rem; }

#scrollTopBtn { position: fixed; bottom: 25px; right: 25px; background-color: var(--primary-color-navy); color: var(--white-color); border: none; border-radius: 50%; width: 50px; height: 50px; box-shadow: 0 3px 12px rgba(13, 59, 102, 0.3); cursor: pointer; display: none; z-index: 990; transition: background-color var(--transition-speed), opacity var(--transition-speed), transform var(--transition-bounce); opacity: 0.85; display: flex; align-items: center; justify-content: center; }
#scrollTopBtn:hover { background-color: var(--primary-color-green); opacity: 1; transform: scale(1.05) translateY(-2px); }
#scrollTopBtn svg { stroke: var(--white-color); width: 22px; height: 22px;}


/* ===== Responsive Adjustments (Largely same as before, review for new elements) ===== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; } .hero-content .slogan { font-size: 1.7rem; } .hero-content .sub-slogan { font-size: 1.1rem; }
    h2.section-title { font-size: 2.1rem; } .section-padding { padding-top: 70px; padding-bottom: 70px; }
    .about-container { grid-template-columns: 1fr; text-align: center; }
    .about-image { margin-bottom: 30px; } .about-image img { max-width: 80%; margin: 0 auto; display: block; }
    .highlights-list li { justify-content: center; }
    .section-title.align-left { text-align: center; } .section-title.align-left::after { left: 50%; transform: translateX(-50%); }
    .contact-grid { grid-template-columns: 1fr; } .contact-map { margin-top: 40px; }
    .testimonial-slider-placeholder { grid-template-columns: 1fr; }
    .sticky-cta-bar { display: none; }
}

@media (max-width: 768px) {
    :root { --base-font-size: 15px; }
    .main-nav .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background-color: var(--white-color); box-shadow: 0 8px 15px rgba(0,0,0,0.1); padding-bottom: 10px; border-top: 1px solid var(--border-color); }
    .main-nav .nav-links.active { display: flex; }
    .main-nav .nav-links li { margin: 0; width: 100%; text-align: center; }
    .main-nav .nav-links a { display: block; padding: 14px 15px; border-bottom: 1px solid var(--border-color); font-size:1.05rem; }
    .main-nav .nav-links li:last-child a { border-bottom: none; } .main-nav .nav-links a::after { display: none; }
    .nav-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; } .hero-content .slogan { font-size: 1.4rem; } .hero-content .sub-slogan { font-size: 1rem; }
    .hero-cta-buttons .cta-button { padding: 14px 28px; font-size: 0.95rem; margin: 8px;}
    .hero-section { padding: 100px 0; min-height: 80vh; background-attachment: scroll; /* Disable fixed attachment on mobile if it causes issues */ }
    .section-padding { padding-top: 50px; padding-bottom: 50px; }
    h2.section-title { font-size: 1.9rem; margin-bottom: 40px;}
    .services-grid { grid-template-columns: 1fr; gap: 25px; } .service-card { padding: 25px; }
    .footer-content { text-align: center; } .footer-links { display: flex; flex-direction: column; } .footer-links a { margin: 6px 0; }
    .sticky-call-banner-mobile { display: block; } .sticky-cta-bar { display: none !important; }
    .floating-whatsapp-button { width: 55px; height: 55px; bottom: 80px; }
    .floating-whatsapp-button svg { width: 28px; height: 28px;}
    #scrollTopBtn { bottom: 80px; right: auto; left: 20px;} /* ScrollToTop to bottom-left on mobile */
    .faq-question { font-size: 1.05rem; padding: 18px 10px;} /* Adjust FAQ on mobile */
    .faq-answer { padding: 0 15px 15px 15px;}
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; } .hero-content .slogan { font-size: 1.2rem; } .hero-content .sub-slogan { font-size: 0.9rem; }
    .contact-info-card, .hours-grid, .faq-accordion { padding: 20px; } /* If faq-accordion has own padding */
    .logo a { font-size: 1.6rem; }
    .stat-item .stat-number { font-size: 2.3rem; } .stat-item .stat-label { font-size: 0.9rem; }
    .floating-whatsapp-button { width: 50px; height: 50px; bottom: 70px; }
    .floating-whatsapp-button svg { width: 25px; height: 25px;}
    #scrollTopBtn {width: 45px; height: 45px; bottom: 70px;}
    #scrollTopBtn svg {width: 18px; height: 18px;}
}