/* ============================================================================
   SLV Temple Consultancy & Priest Services — Theme
   Premium / minimal / modern. Vanilla CSS, no framework dependency.
   INDEX
   01. Reset & tokens        06. About + Stats           11. FAQ
   02. Typography            07. Process timeline         12. Contact
   03. Layout helpers        08. Why Choose              13. Footer
   04. Buttons & inputs      09. Gallery + Lightbox       14. Animations
   05. Navbar + Hero         10. Testimonials             15. Responsive
============================================================================ */

/* ------------------------- 01. Reset & tokens ------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

:root {
  --color-primary-green: #0E4D35;
  --color-dark-green: #073425;
  --color-gold: #C8952E;
  --color-light-gold: #E7C56A;
  --color-cream: #FCFBF7;
  --color-beige: #F5F1E8;
  --color-brown: #5D221E;
  --color-maroon: #7A2331;
  --color-saffron: #E07A3D;
  --color-text: #1D1D1D;
  --color-text-secondary: #666666;
  --color-white: #FFFFFF;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-heading: "Playfair Display", serif;
  --font-accent: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --font-button: "Poppins", sans-serif;

  --shadow-soft: 0 10px 40px rgba(7, 52, 37, 0.08);
  --shadow-med: 0 20px 60px rgba(7, 52, 37, 0.14);
  --shadow-gold: 0 12px 30px rgba(200, 149, 46, 0.25);
  --shadow-card: 0 16px 44px rgba(7, 52, 37, 0.13);

  --section-pad: 45px;
  --container-w: 1280px;
}

/* ------------------------- 02. Typography ------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark-green);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(38px, 4.6vw, 64px); font-weight: 600; }
.amp { font-family: var(--font-body); font-style: normal; font-weight: 600; }
h2 { font-size: clamp(30px, 3.4vw, 46px); }
h3 { font-size: 22px; }
p { margin: 0; line-height: 1.75; color: var(--color-text-secondary); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 10px; font-size: 17px; }
.section-head h2 { letter-spacing: -0.5px; }

/* ------------------------- 03. Layout helpers ------------------------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-pad) 0; position: relative; }
section[id] { scroll-margin-top: 100px; }
.bg-cream { background: var(--color-cream); }
.bg-beige { background: var(--color-beige); }
.bg-white { background: var(--color-white); }
.bg-dark { background: var(--color-dark-green); }
.bg-dark h2, .bg-dark h3, .bg-dark .eyebrow-white { color: var(--color-cream); }
.bg-dark p { color: rgba(252, 251, 247, 0.72); }

.grid { display: grid; gap: 24px; }
.text-center { text-align: center; }

/* ------------------------- 04. Buttons & inputs ------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--color-light-gold), var(--color-gold));
  color: var(--color-dark-green);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(200, 149, 46, 0.32); }
.btn-outline {
  background: transparent;
  border-color: rgba(14, 77, 53, 0.25);
  color: var(--color-primary-green);
}
.btn-outline:hover { border-color: var(--color-primary-green); background: rgba(14, 77, 53, 0.05); transform: translateY(-3px); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(252, 251, 247, 0.35);
  color: var(--color-cream);
}
.btn-outline-light:hover { border-color: var(--color-light-gold); color: var(--color-light-gold); transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

.field {
  position: relative;
  margin-bottom: 16px;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid rgba(14, 77, 53, 0.15);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 18px 20px 8px;
  font-size: 15px;
  color: var(--color-text);
  transition: border-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--color-gold);
  outline: none;
}
.field label {
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 15px;
  color: var(--color-text-secondary);
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--color-white);
  padding: 0 4px;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.select-filled label {
  top: -9px;
  left: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold);
}
.field select { appearance: none; background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C8952E' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 20px center; padding-top: 18px; padding-bottom: 16px; }
.field-error { display: none; color: #B3492F; font-size: 12.5px; margin-top: 6px; padding-left: 4px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #B3492F; }
.field.invalid .field-error { display: block; }
.form-note { font-size: 13px; color: var(--color-text-secondary); margin-top: 4px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(14, 77, 53, 0.08);
  border: 1px solid rgba(14, 77, 53, 0.2);
  color: var(--color-primary-green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 18px;
}
.form-success.show { display: flex; }

/* ------------------------- 05. Navbar + Hero ------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: var(--color-white);
  box-shadow: 0 4px 18px rgba(7, 52, 37, 0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.scrolled {
  padding: 8px 0;
  background: var(--color-white);
  box-shadow: 0 8px 30px rgba(7, 52, 37, 0.08);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 56px; width: 56px; border-radius: 4px; object-fit: cover; transition: height 0.35s ease, width 0.35s ease; box-shadow: 0 4px 14px rgba(7,52,37,0.15); }
.navbar.scrolled .nav-logo img { height: 46px; width: 46px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-family: var(--font-heading); font-size: 22px; color: var(--color-dark-green); letter-spacing: 0.5px; }
.nav-logo-text span { font-family: var(--font-button); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-gold); }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark-green);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-gold); }

.nav-links .btn-gold { display: none; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-dark-green); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 72vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.hero-track { position: absolute; inset: 0; display: grid; z-index: 0; }
.hero-slide {
  grid-area: 1 / 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,52,37,0.86) 0%, rgba(7,52,37,0.6) 42%, rgba(7,52,37,0.22) 100%),
    linear-gradient(0deg, rgba(7,52,37,0.55) 0%, transparent 45%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 130px 0 60px; }
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { color: var(--color-light-gold); }
.hero-copy .eyebrow::before { background: var(--color-light-gold); }
.hero-text-slider h1 { margin-bottom: 24px; color: var(--color-white); text-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.hero-text-slider h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; color: var(--color-light-gold); }
.hero-text-slide p { font-size: 18px; max-width: 520px; margin-bottom: 40px; color: rgba(255,255,255,0.88); text-shadow: 0 2px 14px rgba(0,0,0,0.25); }

.hero-text-slider { display: grid; }
.hero-text-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity 0.6s ease; }
.hero-text-slide.active { opacity: 1; visibility: visible; }
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trustbar { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-trustbar div { text-align: left; }
.hero-trustbar strong { display: block; font-family: var(--font-heading); font-size: 30px; color: var(--color-primary-green); }
.hero-trustbar span { font-size: 12.5px; color: var(--color-text-secondary); }

.hero-slider-dots { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero-slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(252,251,247,0.4); padding: 0; transition: all 0.25s ease; }
.hero-slider-dots button.active { background: var(--color-gold); width: 26px; border-radius: 5px; }

.hero-badge {
  position: absolute;
  top: 110px; right: 40px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-badge i { color: var(--color-gold); font-size: 20px; }
.hero-badge strong { display: block; font-family: var(--font-heading); font-size: 16px; color: var(--color-dark-green); }
.hero-badge span { font-size: 11px; color: var(--color-text-secondary); }

.icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-light-gold), var(--color-gold));
  color: var(--color-dark-green);
  font-size: 18px;
  flex-shrink: 0;
}
.icon-circle.outline {
  background: rgba(200, 149, 46, 0.1);
  color: var(--color-gold);
}

/* ------------------------- 06. About + Stats ------------------------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.about-images { position: relative; }
.about-img-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-med); aspect-ratio: 1/1; background: var(--color-white); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-block { margin-bottom: 14px; }
.about-block h3 { font-size: 20px; color: var(--color-primary-green); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.about-block h3 i { color: var(--color-gold); font-size: 16px; }
.about-block p { font-size: 15.5px; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(14,77,53,0.12); }
.stat strong { display: block; font-family: var(--font-accent); font-size: 42px; color: var(--color-gold); line-height: 1; }
.stat:nth-child(even) strong { color: var(--color-maroon); }
.stat span { font-size: 13px; color: var(--color-text-secondary); }

/* ------------------------- Services ------------------------- */
.services-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(200,149,46,0.3);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, transparent 52%, rgba(200,149,46,0.16) 52%);
  transition: background 0.35s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); border-color: var(--color-gold); }
.service-card:hover::after { background: linear-gradient(135deg, transparent 52%, rgba(200,149,46,0.3) 52%); }

.service-img { position: relative; width: 100%; height: 0; padding-top: 68.75%; }
.service-img-inner { position: absolute; inset: 0; overflow: hidden; }
.service-img-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-inner img { transform: scale(1.08); }

.service-num, .img-num {
  position: absolute;
  top: 16px; right: 16px;
  min-width: 42px; height: 42px;
  padding: 0 6px;
  border-radius: 12px;
  background: rgba(122,35,49,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-light-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.service-icon-badge {
  position: absolute;
  left: 24px; bottom: -26px;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--color-gold);
  font-size: 20px;
  z-index: 3;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon-badge { background: var(--color-gold); color: var(--color-dark-green); }

.service-body { position: relative; z-index: 1; padding: 40px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 6px; padding-bottom: 10px; position: relative; color: #A9701C; }
.service-body h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: #A9701C; }
.service-body p { font-size: 14.5px; margin-bottom: 14px; }
.service-link { font-family: var(--font-button); font-size: 13px; font-weight: 600; color: var(--color-gold); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.service-link i { transition: transform 0.25s ease; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ------------------------- 07. Process timeline ------------------------- */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 20px; }
.process-track::before {
  content: "";
  position: absolute;
  top: 44px; left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0 8px, transparent 8px 16px);
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.process-num {
  width: 88px; height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid rgba(200,149,46,0.35);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.process-num i { font-size: 26px; color: var(--color-gold); }
.process-num small {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: var(--color-cream);
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { font-size: 19px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; }

/* ------------------------- 08. Why Choose ------------------------- */
.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-card {
  background: rgba(252,251,247,0.05);
  border: 1px solid rgba(252,251,247,0.14);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--color-gold); background: rgba(252,251,247,0.08); }
.why-card .icon-circle { margin-bottom: 14px; background: rgba(200,149,46,0.16); color: var(--color-light-gold); }
.why-card h3 { color: var(--color-light-gold); margin-bottom: 6px; font-size: 19px; }
.why-card p { font-size: 14px; }

/* ------------------------- 09. Gallery + Lightbox ------------------------- */
.gallery-masonry { column-count: 4; column-gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,52,37,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--color-cream); font-family: var(--font-button); font-size: 13px; font-weight: 500; }
.gallery-overlay i { margin-left: auto; color: var(--color-saffron); font-size: 18px; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 20, 15, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(900px, 90vw); max-height: 82vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-med); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(252,251,247,0.12);
  border: 1px solid rgba(252,251,247,0.25);
  color: var(--color-cream);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--color-gold); color: var(--color-dark-green); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ------------------------- 10. Testimonials ------------------------- */
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.55s cubic-bezier(0.65,0,0.35,1); }
.testimonial-card {
  flex: 0 0 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.t-stars { color: var(--color-gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 3px; }
.testimonial-card p.quote { font-family: var(--font-accent); font-size: 22px; font-style: italic; font-weight: 500; color: var(--color-maroon); line-height: 1.5; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-light-gold), var(--color-gold));
  color: var(--color-dark-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
}
.t-author-info { text-align: left; }
.t-author-info strong { display: block; font-family: var(--font-heading); font-size: 17px; color: var(--color-dark-green); }
.t-author-info span { font-size: 12.5px; color: var(--color-text-secondary); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(14,77,53,0.2); padding: 0; transition: all 0.25s ease; }
.testimonial-dots button.active { background: var(--color-gold); width: 26px; border-radius: 6px; }

/* ------------------------- 11. FAQ ------------------------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.faq-images { position: relative; }
.faq-img-1 { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/3.4; box-shadow: var(--shadow-med); }
.faq-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.faq-img-2 {
  position: absolute; left: -30px; bottom: -30px;
  width: 55%; aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--color-beige);
  box-shadow: var(--shadow-med);
}
.faq-img-2 img { width: 100%; height: 100%; object-fit: cover; }

.accordion-item { border-bottom: 1px solid rgba(14,77,53,0.14); }
.accordion-item:first-child { border-top: 1px solid rgba(14,77,53,0.14); }
.accordion-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none;
  text-align: left;
  padding: 16px 4px;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-dark-green);
}
.accordion-btn i { color: var(--color-gold); transition: transform 0.3s ease; flex-shrink: 0; }
.accordion-item.active .accordion-btn i { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-panel p { padding: 0 4px 14px; font-size: 14.5px; max-width: 90%; }

/* ------------------------- 12. Contact ------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; }
.contact-card {
  background: var(--color-dark-green);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  color: var(--color-cream);
  min-width: 0;
}
.contact-card h3 { color: var(--color-cream); margin-bottom: 16px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 16px; }
.contact-item .icon-circle { background: rgba(200,149,46,0.2); color: var(--color-light-gold); }
.contact-item p { color: rgba(252,251,247,0.6); font-size: 12.5px; margin-bottom: 4px; }
.contact-item strong, .contact-item a { font-family: var(--font-heading); font-size: 16.5px; color: var(--color-cream); overflow-wrap: break-word; }
.contact-item > div { min-width: 0; }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 18px; border: 1px solid rgba(252,251,247,0.15); }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.2) sepia(0.15); }
.contact-form-box { background: var(--color-white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); min-width: 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ------------------------- 13. Footer ------------------------- */
.footer { background: var(--color-dark-green); color: rgba(252,251,247,0.65); padding: 46px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 36px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo img { height: 52px; width: 52px; border-radius: 14px; }
.footer-logo strong { font-family: var(--font-heading); color: var(--color-cream); font-size: 22px; }
.footer p { font-size: 14px; color: rgba(252,251,247,0.55); }
.footer h4 { font-family: var(--font-button); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--color-light-gold); margin-bottom: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14.5px; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--color-light-gold); padding-left: 4px; }
.footer-contact-links li { margin-bottom: 14px; }
.footer-contact-links a { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-links i { color: var(--color-gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(252,251,247,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-dark-green); }
.footer-bottom {
  border-top: 1px solid rgba(252,251,247,0.12);
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: var(--color-light-gold); }

/* ------------------------- 14. Animations ------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
.reveal-delay-4.in-view { transition-delay: 0.4s; }
.reveal-delay-5.in-view { transition-delay: 0.5s; }

/* ------------------------- 15. Responsive ------------------------- */
@media (max-width: 1180px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 50px; }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: min(340px, 82vw);
    background: var(--color-cream); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.15); }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 17px; }
  .nav-logo img, .navbar.scrolled .nav-logo img { height: 60px; width: 60px; }
  .nav-right .btn-gold { display: none; }
  .nav-links .btn-gold { display: inline-flex; margin-top: 10px; }

  .navbar { padding: 16px 0; }
  .navbar.scrolled { padding: 11px 0; }
  .navbar-inner { position: relative; min-height: 60px; }
  .nav-logo { gap: 0; }
  .nav-logo-text {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    line-height: 1.25;
    max-width: calc(100% - 170px);
    pointer-events: none;
  }
  .nav-logo-text strong { font-size: 24px; letter-spacing: 0.4px; }
  .nav-logo-text span { font-size: 11px; letter-spacing: 1.4px; margin-top: 2px; }
  .nav-logo-text strong, .nav-logo-text span {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
  }
  .nav-toggle span { width: 24px; height: 2.5px; }

  .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-badge { top: auto; bottom: 100px; right: 20px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 108px 0 40px; }
  .hero-text-slide p { margin-bottom: 18px; }
  .hero-cta-row { margin-bottom: 18px; gap: 14px; }
  .hero-slider-dots { bottom: 10px; }
  .hero-slider-dots button.active { width: 18px; }
  .about-images { margin-bottom: 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { column-count: 3; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 108px 0 34px; }
  .hero-copy { max-width: 100%; }
  .hero-text-slider h1 { font-size: clamp(26px, 7.5vw, 34px); margin-bottom: 16px; }
  .hero-text-slide p { font-size: 15px; margin-bottom: 16px; }
  .hero-slider-dots { bottom: 12px; }
  .hero-badge { display: none; }
  .hero-cta-row { flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 10px; margin-bottom: 0; }
  .hero-cta-row .btn { padding: 12px 18px; font-size: 12.5px; }
  .hero-trustbar { gap: 24px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .gallery-masonry { column-count: 2; column-gap: 14px; }
  .gallery-item { margin-bottom: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-box { padding: 30px 24px; }
  .faq-img-2 { width: 50%; left: -16px; bottom: -16px; }
}

@media (max-width: 480px) {
  .gallery-masonry { column-count: 1; }
  .testimonial-card { padding: 34px 26px; }
  .testimonial-card p.quote { font-size: 18px; }

  .hero-inner { padding: 108px 0 30px; }
  .hero-text-slider h1 { font-size: clamp(24px, 8vw, 30px); }
  .hero-cta-row .btn { padding: 11px 14px; font-size: 12px; }
  .nav-logo img, .navbar.scrolled .nav-logo img { height: 52px; width: 52px; }
  .nav-logo-text { max-width: calc(100% - 150px); }
}
