:root {
    --primary-color: #f8fafc;
    --secondary-color: #1e3a8a;
    --text-color: #0f172a;
    --text-muted: #475569;
    --accent-hover: #172554;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(30, 58, 138, 0.12);
    --transition-speed: 0.3s;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    --hero-bg-url: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--primary-color); color: var(--text-color); }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.logo { font-size: 1.25rem; font-weight: 700; font-family: var(--font-heading); color: #1e3a8a; }
.nav-links a { color: var(--text-color); text-decoration: none; margin: 0 18px; font-size: 0.9rem; font-weight: 600; }
.nav-links a:hover { color: var(--secondary-color); }
.cta-button-nav {
    background-color: var(--secondary-color); color: #fff; text-decoration: none; padding: 10px 22px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}

.hero-section {
    position: relative; height: 85vh; min-height: 550px; display: flex; justify-content: center; align-items: center; text-align: center; overflow: hidden; padding: 0 20px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: var(--hero-bg-url); background-size: cover; background-position: center; z-index: 1;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; color: #ffffff; }
.hero-content h1 { font-size: 3rem; font-family: var(--font-heading); margin-bottom: 24px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; line-height: 1.6; margin-bottom: 40px; color: rgba(255,255,255,0.9); }

.btn { text-decoration: none; padding: 14px 30px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; }
.btn-primary { background-color: #e28743; color: #fff; margin-right: 15px; }
.btn-secondary { background: transparent; border: 2px solid #e28743; color: #e28743; }
.award-pill { border: 1px solid #e28743; color: #e28743; font-size: 0.75rem; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; margin-bottom: 20px; display: inline-block; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.about-section, .services-section, .contact-section { padding: 100px 0; }
h2 { font-size: 2.2rem; font-family: var(--font-heading); text-align: center; margin-bottom: 50px; color: #1e3a8a; }
.about-lead { font-size: 1.15rem; line-height: 1.8; text-align: center; max-width: 800px; margin: 0 auto 40px auto; }
.hours-box { max-width: 600px; margin: 0 auto; padding: 35px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-left: 4px solid #1e3a8a; border-radius: 12px; }
.hours-box p { margin-bottom: 14px; font-size: 1.05rem; }

.service-card { padding: 40px 30px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02); }
.service-card h3 { font-size: 1.3rem; font-family: var(--font-heading); margin-bottom: 16px; color: #1e3a8a; }
.service-card p { line-height: 1.65; color: var(--text-muted); }
.service-icon { font-size: 1.8rem; margin-bottom: 12px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.contact-card { text-align: center; padding: 45px 35px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; }
.contact-phone { font-size: 1.5rem; font-weight: 700; text-decoration: none; }

footer { padding: 50px 0; text-align: center; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.9rem; }
