/* ===== Variables ===== */
:root {
    --white: #ffffff;
    --black: #000000;
    --blue: rgba(7, 152, 222, 1);
    --dark-blue: rgba(0, 121, 177, 1);
    --text: rgba(79, 79, 79, 1);
    --light-gray: rgba(242, 242, 242, 1);
    --gold: rgba(255, 200, 52, 1);
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Roboto Slab', serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--dark-blue); }
ul { list-style: none; }

/* ===== Utilities ===== */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section { padding: 60px 0; }
.section-gray { background: var(--light-gray); }

/* ===== Buttons ===== */
.btn { display: inline-block; padding: 12px 28px; font-size: 16px; font-weight: 500; border: 2px solid transparent; cursor: pointer; transition: all 0.3s; margin: 5px; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--dark-blue); border-color: var(--dark-blue); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }

/* ===== Header ===== */
.site-header { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 960px; margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 50px; width: auto; }
.header-phone { background: var(--blue); color: var(--white); padding: 10px 20px; font-weight: 500; white-space: nowrap; }
.header-phone:hover { background: var(--dark-blue); color: var(--white); }

/* Nav */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 14px; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    display: block; background: var(--text); height: 2px; width: 24px; position: relative; transition: all 0.3s;
}
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after { top: 7px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li > a { padding: 10px 14px; color: var(--text); font-size: 14px; font-weight: 500; display: block; }
.nav-links > li > a:hover { color: var(--blue); }

/* Dropdown - removed, Services links directly to homepage section */
.arrow-down { font-size: 10px; }

/* ===== Hero ===== */
.hero { position: relative; background-size: cover; background-position: center; padding: 80px 20px; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero h1 { color: var(--white); font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; margin-bottom: 20px; }
.hero-service { min-height: 320px; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 24px; }
.badge { background: rgba(255,255,255,0.15); color: var(--white); padding: 6px 16px; font-size: 14px; border: 1px solid rgba(255,255,255,0.3); }

/* ===== Page Header ===== */
.page-header { background: var(--dark-blue); padding: 50px 20px; text-align: center; }
.page-header h1 { color: var(--white); font-family: var(--font-heading); font-size: 2.2rem; margin: 0; }

/* ===== Two Column Layout ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ===== Typography ===== */
h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--black); margin-bottom: 16px; }
h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--black); margin: 24px 0 12px; }
h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--black); margin-bottom: 8px; }
p { margin-bottom: 14px; }

/* ===== Services Grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; display: flex; align-items: center; justify-content: center; min-height: 180px; background-size: cover; background-position: center; color: var(--white); font-weight: 700; font-size: 1.1rem; text-align: center; padding: 20px; text-decoration: none; }
.service-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); transition: background 0.3s; z-index: 1; }
.service-card:hover .service-card-overlay { background: rgba(7,152,222,0.7); }
.service-card span { position: relative; z-index: 2; color: var(--white); }

/* ===== Feature List ===== */
.feature-list { margin: 16px 0 24px 0; }
.feature-list li { padding: 6px 0 6px 24px; position: relative; }
.feature-list li::before { content: "»"; position: absolute; left: 0; color: var(--blue); font-weight: bold; }

/* ===== Checklist ===== */
.checklist-card { background: var(--dark-blue); padding: 30px; display: flex; align-items: center; }
.checklist li { color: var(--white); font-size: 1.1rem; padding: 8px 0; }

/* ===== CTA Banner ===== */
.cta-banner { background: var(--dark-blue); padding: 50px 20px; color: var(--white); }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }

/* ===== Affiliations ===== */
.affiliations { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.affiliations img { max-height: 100px; width: auto; }

/* ===== Service List ===== */
.service-list { list-style: none; padding: 0; }
.service-list li { padding: 4px 0; }
.service-list li a { color: var(--blue); }
.service-list li a:hover { color: var(--dark-blue); text-decoration: underline; }

/* ===== Hours Table ===== */
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--light-gray); }
.hours-table td:last-child { text-align: right; }

/* ===== Payment Icons ===== */
.payment-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-icons img { height: 32px; width: auto; }

/* ===== Contact Form ===== */
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 4px; font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 10px 12px; border: 1px solid #ccc; font-family: var(--font-body); font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); outline: none; }

/* ===== Reviews ===== */
.reviews-summary { text-align: center; margin-bottom: 40px; }
.rating-stars { font-size: 3rem; color: var(--gold); }
.review { border-bottom: 1px solid #eee; padding: 20px 0; }
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 6px; }
.review-text { font-style: italic; margin-bottom: 6px; }
.review-meta { font-size: 0.9rem; color: #999; }
.phone-link { font-size: 1.4rem; font-weight: 700; color: var(--blue); }

/* ===== Footer ===== */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 40px 0 0; }
.footer-inner { max-width: 960px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-inner h4 { color: var(--white); margin-bottom: 12px; font-family: var(--font-heading); }
.footer-inner ul { list-style: none; }
.footer-inner li { padding: 3px 0; }
.footer-inner a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-inner a:hover { color: var(--white); }
.footer-inner p { font-size: 13px; margin-bottom: 6px; }
.footer-bottom { text-align: center; padding: 20px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle-label { display: flex; align-items: center; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .two-col { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 1.6rem; }
    .header-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; align-items: center; }
}

/* Flash message alerts */
.alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Turnstile widget spacing */
.cf-turnstile {
    margin: 1rem 0;
}
