/* --------------------------------------------
   RESET & BASE
-------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #1A3A1A;
  --green-dark: #0F2A0F;
  --green-soft: #2A4A2A;
  --gold-muted: #C6A43B;
  --gold-dark: #9B7E2C;
  --warm-white: #FEFCF5;
  --ivory: #F9F5EA;
  --charcoal: #232B1F;
  --charcoal-light: #3A4234;
  --olive-gray: #6A6E5C;
  --border-light: #E2DBCB;
  --neutral-gray: #E6E2D6;
  --error-bg: #FDF0ED;
  --error-border: #D97A5C;
  --success-bg: #E8F0E6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.04);
}
/* Form status messages */
.form-status {
    margin: 20px 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.status-loading {
    background: #e3f2fd;
    color: #1976d2;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #1976d2;
}

.status-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.status-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #c62828;
}

/* Enhanced form groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

/* Disabled button state */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------
   TYPOGRAPHY
-------------------------------------------- */
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-subhead {
  color: var(--olive-gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

/* --------------------------------------------
   BUTTONS
-------------------------------------------- */
.btn-primary {
  background-color: var(--green-deep);
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
  font-family: inherit;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--green-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  padding: 11px 26px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: rgba(26, 58, 26, 0.04);
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

/* --------------------------------------------
   HEADER / NAVBAR
-------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--warm-white);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--green-deep);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--charcoal);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-muted);
}

.nav-cta {
  padding: 8px 22px;
  font-size: 0.85rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--green-deep);
  line-height: 1;
}

/* --------------------------------------------
   HERO
-------------------------------------------- */
.hero {
  padding: 48px 0 64px;
}

.hero-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 260px;
}

.hero-tagline {
  color: var(--gold-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-content p {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin: 1.25rem 0 1.75rem;
  line-height: 1.5;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-images {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 260px;
}

.hero-img-primary {
  width: 60%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-img-secondary {
  width: 40%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* --------------------------------------------
   SERVICES
-------------------------------------------- */
section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: flex;
  gap: 32px;
  margin: 24px 0 40px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 200px;
  border-top: 2px solid var(--gold-muted);
  padding-top: 24px;
}

.service-card p {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.services-image {
  max-width: 80%;
  margin-top: 16px;
}

.services-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   FORM SECTION (VERIFICATION)
-------------------------------------------- */
.form-section {
  background-color: var(--ivory);
}

.form-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-card {
  flex: 1;
  background: white;
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-description {
  margin-bottom: 28px;
  color: var(--olive-gray);
  font-size: 0.9rem;
}

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

label {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

select, input, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--neutral-gray);
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
  font-size: 0.9rem;
  border-radius: 0;
}

select:focus, input:focus {
  outline: none;
  border-color: var(--gold-muted);
}

.dynamic-fields {
  margin-bottom: 8px;
}

.dynamic-fields .form-group {
  margin-bottom: 18px;
}

.upload-group {
  margin: 24px 0 16px;
}

.upload-area {
  border: 1px dashed var(--olive-gray);
  padding: 14px;
  text-align: center;
  background: var(--warm-white);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--olive-gray);
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.upload-area:hover {
  border-color: var(--gold-muted);
}

.form-status {
  margin-top: 20px;
  font-size: 0.8rem;
  padding: 10px;
  background: var(--neutral-gray);
  color: var(--charcoal);
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  background: var(--error-bg);
  border-left: 3px solid var(--error-border);
  color: #7A3E2C;
}

.form-status.success {
  background: var(--success-bg);
  border-left: 3px solid var(--green-deep);
}

.form-image {
  flex: 1;
}

.form-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   BRAND STRIP
-------------------------------------------- */
.brand-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
  align-items: center;
}

.brand-strip span {
  font-weight: 500;
  color: var(--olive-gray);
  font-size: 0.85rem;
  letter-spacing: -0.2px;
}

.support-image {
  margin-top: 16px;
}

.support-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   TRUST / WHY US
-------------------------------------------- */
.trust-grid {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 180px;
}

.trust-stat {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-muted);
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

.trust-image {
  max-width: 70%;
  margin-top: 24px;
}

.trust-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   TESTIMONIALS
-------------------------------------------- */
.testimonial-grid {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  background: white;
  padding: 28px;
  border: 1px solid var(--border-light);
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gold-dark);
}

/* --------------------------------------------
   TEAM SECTION
-------------------------------------------- */
.team-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.team-content {
  flex: 1;
}

.team-content p {
  margin-bottom: 1rem;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.team-image {
  flex: 1;
  max-width: 400px;
}

.team-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   CONTACT
-------------------------------------------- */
.contact-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1;
}

.contact-details p {
  margin: 20px 0 24px;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.contact-details address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.contact-details address strong {
  font-weight: 600;
  color: var(--green-deep);
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------
   FOOTER
-------------------------------------------- */
.site-footer {
  background-color: var(--charcoal);
  color: #BBBAAE;
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .logo {
  color: #E2DBC6;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #BBBAAE;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-muted);
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* --------------------------------------------
   REVEAL ANIMATION
-------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------
   MOBILE FIRST (320px → 768px)
-------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 20px 0 12px;
    gap: 1.2rem;
    background: var(--warm-white);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    flex-direction: column;
  }

  .hero-images {
    order: 2;
    justify-content: center;
  }

  .hero-content {
    order: 1;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-img-primary {
    width: 55%;
  }

  .hero-img-secondary {
    width: 40%;
  }

  .services-grid {
    flex-direction: column;
    gap: 32px;
  }

  .services-image {
    max-width: 100%;
  }

  .form-grid {
    flex-direction: column;
  }

  .form-card {
    padding: 24px;
  }

  .trust-grid {
    flex-direction: column;
    gap: 32px;
  }

  .trust-image {
    max-width: 100%;
  }

  .testimonial-grid {
    flex-direction: column;
  }

  .team-grid {
    flex-direction: column;
  }

  .team-image {
    max-width: 100%;
  }

  .contact-grid {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 48px 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-images {
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .form-card {
    padding: 20px;
  }

  .upload-area {
    padding: 12px;
    font-size: 0.8rem;
  }
}

/* --------------------------------------------
   IMAGE CONSISTENCY (all 8 image areas)
-------------------------------------------- */
.hero-images img,
.services-image img,
.form-image img,
.support-image img,
.trust-image img,
.team-image img,
.contact-image img {
  filter: grayscale(6%);
  transition: transform 0.25s ease;
}

.hero-images img:hover,
.services-image img:hover,
.form-image img:hover,
.support-image img:hover,
.trust-image img:hover,
.team-image img:hover,
.contact-image img:hover {
  transform: scale(1.01);
}