/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a472a;
  --green-medium: #2d6a4f;
  --green-light: #40916c;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --text: #212529;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
  --radius: 8px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--gold); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--green-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.header-contact:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--gold-light);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.site-nav {
  background: var(--green-medium);
}

.site-nav ul {
  display: flex;
  list-style: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-nav li a {
  display: block;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
  border-bottom: 3px solid transparent;
}

.site-nav li a:hover,
.site-nav li a.active {
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--gold);
  color: var(--white);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-badge {
  background: rgba(255,255,255,0.15);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 180px;
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-badge span { font-size: 0.9rem; }

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: var(--off-white);
  border-bottom: 3px solid var(--gold);
}

.trust-badge {
  text-align: center;
  max-width: 220px;
}

.trust-badge-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.trust-badge h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.trust-badge p { font-size: 0.85rem; color: var(--gray); }

/* Sections */
.section { padding: 60px 20px; }
.section-alt { background: var(--off-white); }

.section h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section h3 {
  font-size: 1.3rem;
  color: var(--green-medium);
  margin-bottom: 12px;
  margin-top: 24px;
}

.section p { margin-bottom: 16px; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-phone {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin: 16px 0;
}

.cta-phone:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-medium);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Video Embed */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 32px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Location Hero (no h1 variant) */
.location-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}

.location-hero h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.location-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.location-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.services-list span {
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.rating-text {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 16px 0;
}

.guarantee-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* Content Sections */
.content-section {
  padding: 50px 20px;
}

.content-section .container { max-width: 900px; }

.content-section h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.content-section h3 {
  font-size: 1.3rem;
  color: var(--green-medium);
  margin: 28px 0 12px;
  font-weight: 700;
}

.content-section p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px auto;
}

/* Service List in body */
.service-highlights {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-highlights li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-weight: 500;
}

.service-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Blog */
.blog-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.blog-content p { margin-bottom: 16px; }
.blog-content h2 { margin-top: 32px; }
.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.blog-nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 2px solid var(--gray-light);
}

.blog-nav a {
  font-weight: 600;
  color: var(--green-dark);
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.footer-content { max-width: var(--max-width); margin: 0 auto; }

.footer-phone {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-phone:hover { color: var(--gold-light); }

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Utility Pages */
.utility-page {
  padding: 60px 20px;
  min-height: 50vh;
}

.utility-page .container { max-width: 800px; }
.utility-page h1 { font-size: 2rem; color: var(--green-dark); margin-bottom: 24px; }
.utility-page h2 { font-size: 1.4rem; color: var(--green-dark); margin: 28px 0 12px; }
.utility-page p { margin-bottom: 14px; }

/* Invitation Page */
.invitation-page {
  padding: 40px 20px;
  text-align: center;
}

.invitation-page .container { max-width: 900px; }

.invitation-page h1 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.invitation-page h2 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 32px 0 16px;
}

.invitation-page p {
  margin-bottom: 14px;
  text-align: left;
}

.invitation-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.invitation-services span {
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.why-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
  text-align: left;
}

.why-use-card {
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.why-use-card h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.why-use-card p { font-size: 0.95rem; color: var(--gray-dark); }

/* Mobile */
@media (max-width: 768px) {
  .header-logo span { display: none; }
  .header-contact { padding: 8px 14px; font-size: 0.85rem; }
  .header-phone { padding: 8px 14px; font-size: 0.95rem; }

  /* Contact page grid stacks on mobile */
  .section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .nav-toggle { display: block; }

  .site-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.open { max-height: 500px; }

  .site-nav ul {
    flex-direction: column;
    padding: 0;
  }

  .site-nav li a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }

  .hero-badges { gap: 12px; }
  .hero-badge { min-width: 140px; padding: 12px 16px; }

  .trust-badges { gap: 16px; }

  .location-hero h2,
  .location-hero h1 { font-size: 1.6rem; }

  .section h2,
  .content-section h2 { font-size: 1.4rem; }

  .contact-form-wrapper { padding: 20px; }

  .cta-phone { font-size: 1.2rem; padding: 12px 24px; }

  .why-use-grid { grid-template-columns: 1fr; }

  .footer-links { gap: 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: 1.5rem; }

  .header-top { padding: 10px 12px; }
  .header-logo img { height: 36px; }
  .header-actions { gap: 8px; }
  .header-contact { padding: 6px 10px; font-size: 0.75rem; }
  .header-phone { padding: 6px 10px; font-size: 0.8rem; }

  .section { padding: 40px 16px; }
  .cta-section { padding: 36px 16px; }
  .cta-section h2 { font-size: 1.2rem; }

  .location-hero { padding: 32px 16px; }
  .location-hero h2 { font-size: 1.3rem; }

  .video-wrapper { margin: 0 -16px; }

  .footer-links { flex-direction: column; text-align: center; }
}
