/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === Skip Link === */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: #1B3A5C; color: #fff; padding: 12px 24px;
  z-index: 9999; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === Container === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* === Header & Nav === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27, 58, 92, 0.97); backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; font-weight: 700; }
.logo-sub { display: none; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); padding: 8px 12px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500; transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #C9A84C; }
.nav-cta {
  background: #C9A84C !important; color: #1a1a2e !important;
  font-weight: 600 !important; border-radius: 6px !important;
}
.nav-cta:hover { background: #d4b35a !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger {
  display: block; width: 22px; height: 2px; background: #fff;
  position: relative; transition: 0.3s;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: #fff; transition: 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* === Buttons === */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-size: 1rem; font-weight: 600; transition: all 0.2s;
  text-align: center; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: #C9A84C; color: #1a1a2e; }
.btn-primary:hover { background: #d4b35a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,0.3); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: #1B3A5C; border: 2px solid #1B3A5C; }
.btn-outline:hover { background: #1B3A5C; color: #fff; }

/* === Hero === */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px 80px;
  background: linear-gradient(135deg, #1B3A5C 0%, #0d1f33 60%, #1a1a2e 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Why Us === */
.why-us { padding: 96px 0; background: #f8f9fa; }
.why-us h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 56px; color: #1B3A5C; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.card {
  background: #fff; padding: 40px 32px; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; color: #1B3A5C; }
.card p { color: #555; font-size: 0.95rem; }

/* === Services Overview === */
.services-overview { padding: 96px 0; }
.services-overview h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; color: #1B3A5C; }
.section-intro { text-align: center; color: #555; max-width: 640px; margin: 0 auto 48px; font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  padding: 32px; border: 1px solid #e8e8e8; border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: #C9A84C; box-shadow: 0 4px 16px rgba(201,168,76,0.1); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1B3A5C; }
.service-card p { color: #555; font-size: 0.9rem; }
.section-cta { text-align: center; margin-top: 40px; }

/* === Coverage === */
.coverage { padding: 96px 0; background: #1B3A5C; color: #fff; }
.coverage h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 40px; }
.coverage-content { max-width: 700px; margin: 0 auto; }
.coverage-content > p { text-align: center; margin-bottom: 32px; font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.county-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.county-list li {
  padding: 16px 20px; background: rgba(255,255,255,0.08); border-radius: 8px;
  font-size: 0.95rem; color: rgba(255,255,255,0.9); border-left: 3px solid #C9A84C;
}
.county-list strong { color: #fff; }

/* === CTA Section === */
.cta-section { padding: 80px 0; text-align: center; background: #f8f9fa; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; color: #1B3A5C; }
.cta-section p { color: #555; margin-bottom: 32px; font-size: 1.05rem; }
.cta-section .btn-secondary { color: #1B3A5C; border-color: #1B3A5C; }
.cta-section .btn-secondary:hover { background: #1B3A5C; color: #fff; }

/* === Footer === */
.footer { background: #0d1f33; color: rgba(255,255,255,0.8); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.footer h4 { color: #C9A84C; font-size: 1rem; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: #C9A84C; }
.footer ul li { margin-bottom: 8px; }
.footer address { line-height: 1.8; }
.copyright { margin-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* === Forms (for order/contact pages) === */
.form-section { padding: 96px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: #1B3A5C; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 1rem; font-family: inherit; transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #1B3A5C; box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }

/* === Page Heroes (inner pages) === */
.blog-post { padding-top: 100px !important; }
.page-hero {
  background: linear-gradient(135deg, #1B3A5C 0%, #0d1f33 100%);
  padding: 140px 24px 60px; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* === About Page === */
.about-section { padding: 96px 0; }
.about-content { max-width: 760px; margin: 0 auto; }
.about-content p { margin-bottom: 20px; font-size: 1.05rem; color: #444; line-height: 1.8; }
.credentials { padding: 64px 0; background: #f8f9fa; }
.credentials h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 1.75rem; margin-bottom: 32px; color: #1B3A5C; }
.credentials-list { max-width: 640px; margin: 0 auto; }
.credentials-list li { padding: 12px 0; border-bottom: 1px solid #e8e8e8; font-size: 1rem; color: #444; }
.credentials-list li:last-child { border-bottom: none; }
.credentials-list strong { color: #1B3A5C; }

/* === Service Detail Page === */
.service-detail { padding: 80px 0; border-bottom: 1px solid #eee; }
.service-detail:last-of-type { border-bottom: none; }
.service-detail .container { max-width: 760px; }
.service-detail h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1B3A5C; margin-bottom: 16px; }
.service-detail p { color: #444; font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }
.service-meta { display: flex; gap: 32px; margin-top: 16px; }
.service-meta span { font-size: 0.9rem; color: #777; }
.service-meta strong { color: #1B3A5C; }
.service-cta { display: inline-block; margin-top: 24px; color: #C9A84C; font-weight: 600; font-size: 1rem; text-decoration: none; transition: color 0.2s; }
.service-cta:hover { color: #d4b35a; text-decoration: underline; }

/* === Contact Page === */
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1B3A5C; margin-bottom: 24px; }
.contact-info p { margin-bottom: 16px; color: #444; line-height: 1.8; }
.contact-info a { color: #1B3A5C; font-weight: 600; }
.contact-info a:hover { color: #C9A84C; }
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; }

/* === Mobile === */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #1B3A5C;
    padding: 16px 24px; gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .hero { min-height: 70vh; padding: 100px 24px 60px; }
  .hero h1 { font-size: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-meta { flex-direction: column; gap: 8px; }
}

/* === Sticky Phone === */
.nav-phone { margin-left: 12px;
  color: #C9A84C !important; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; margin-right: 16px; white-space: nowrap;
}
.nav-phone:hover { color: #fff !important; }
@media (max-width: 768px) {
  .nav-phone { font-size: 0.85rem; margin-right: 8px; }
}

/* === Mobile Header Fix === */
@media (max-width: 768px) {
  .nav-container { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 4px; }
  .logo { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; }
  .logo-text { font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; }
  .logo-sub { font-size: 0.65rem; }
  .nav-phone { order: 2; font-size: 0.75rem; margin-right: 8px; flex-shrink: 0; }
  .nav-toggle { order: 3; flex-shrink: 0; }
  .nav-links { order: 4; width: 100%; }
}
@media (max-width: 400px) {
  .logo img { height: 28px !important; }
  .logo-text { font-size: 0.82rem; }
  .nav-phone { font-size: 0.7rem; margin-right: 4px; }
}

/* === Mobile Nav Fix === */
@media (max-width: 768px) {
  .nav-toggle { padding: 12px; z-index: 1001; }
  .nav-links { z-index: 1000; }
  .nav-links a { display: block; padding: 14px 20px; font-size: 1rem; }
}

/* === Service Area Grid Fix === */
.form-grid { align-items: start; }

/* === Logo with icon fix === */
.logo { display: flex; align-items: center; gap: 0; white-space: nowrap; }
.logo img { flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; font-weight: 700; white-space: nowrap; }
