:root {
    --primary: #4682b4;
    --accent: #add8e6;
    --bg: #f0f8ff;
    --text: #333;
    --white: #fff;
    --shadow: 0 4px 10px rgba(0,0,0,0.08);
    --header-height: 80px;
}

/* Base Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font: 16px/1.6 Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.2; color: #111; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.3rem; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #36648b; text-decoration: underline; }
ul { margin: 0; padding-left: 1.2rem; }
p { margin-bottom: 1rem; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 0.8rem 1.5rem; border-radius: 8px; border: 2px solid var(--primary); font-weight: bold; cursor: pointer; }
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { filter: brightness(0.9); text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header & Navigation */
.site-header { position: fixed; top: 0; left: 0; right: 0; background: #fff; box-shadow: var(--shadow); z-index: 1000; height: var(--header-height); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* Admin Bar Adjustments */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.brand { display: flex; align-items: center; gap: 0.8rem; font-weight: 800; color: var(--primary); font-size: 1.2rem; }
.brand-logo { height: 50px; width: auto; }

/* Mobile Menu */
.nav-toggle { background: none; border: none; font-size: 1.8rem; color: #333; display: block; cursor: pointer; padding: 10px; }
.primary-nav { position: absolute; top: var(--header-height); left: 0; right: 0; background: #fff; display: none; border-bottom: 1px solid #eee; box-shadow: var(--shadow); }
.primary-nav.open { display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: 10px 20px; display: flex; flex-direction: column; gap: 0.5rem; }
.primary-nav a { padding: 0.8rem; border-radius: 6px; display: block; color: var(--text); }
.primary-nav a:hover { background: var(--bg); text-decoration: none; }

/* Desktop Menu */
@media (min-width: 900px) {
    .nav-toggle { display: none; }
    .primary-nav { position: static; display: block; background: transparent; border: 0; box-shadow: none; }
    .primary-nav ul { flex-direction: row; gap: 2rem; padding: 0; }
    .primary-nav a { padding: 0; }
    .primary-nav a:hover { background: transparent; text-decoration: underline; }
}

/* Hero Section */
.hero { background: var(--accent); padding: 160px 0 100px; margin-top: 0; background-image: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1)); text-align: center; }
.hero.has-bg { background-size: cover; background-position: center; position: relative; }
.hero.has-bg::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.85); }
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { margin-bottom: 1rem; color: var(--text); }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; }

/* Page Content */
.main-content { padding: 120px 0 80px; min-height: 60vh; }
.page-title { text-align: center; color: var(--primary); margin-bottom: 3rem; }

/* Services Grid */
.services-section { padding: 60px 0; }
.grid { display: grid; gap: 30px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: #fff; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card-img { width: 100%; height: 200px; object-fit: cover; background: #ddd; }
.card-body { padding: 24px; flex-grow: 1; }
.card h3 { color: var(--primary); margin-top: 0; }

/* Contact Forms & Maps */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 800px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-info { background: #eef7ff; padding: 30px; border-radius: 12px; }
.contact-item { margin-bottom: 20px; font-size: 1.1rem; }
.contact-label { font-weight: bold; display: block; color: var(--primary); }

form { display: grid; gap: 1rem; }
input, textarea, select { width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 8px; font: inherit; }
input:focus, textarea:focus { outline: 3px solid #b6daff; border-color: #7abaf0; }
.wpcf7-submit { background: var(--primary); color: #fff; cursor: pointer; border: none; }
.wpcf7-submit:hover { background: #36648b; }

/* Footer */
.site-footer { background: #fff; box-shadow: 0 -4px 10px rgba(0,0,0,0.05); margin-top: auto; padding-top: 60px; }
.footer-grid { display: grid; gap: 40px; padding-bottom: 40px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.footer-col h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.rights { border-top: 1px solid #eaeaea; padding: 20px 0; text-align: center; font-size: 0.9rem; color: #666; }