/* ==========================================================================
   GREENTEK ACADEMY - CONTACT PAGE STYLESHEET
   Flawless Desktop & Mobile Layout
   Hero Lead-Gen + FAQ Accordion + Bottom CTA + Instagram + Floating WhatsApp
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-page: #F7F5EC;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #FBFAF5;
  --bg-cta-bar: #F0F4E8;
  
  --color-forest-dark: #063414;
  --color-deep-green: #082B13;
  --color-accent-lime: #B7D84A;
  --color-accent-lime-hover: #A6C835;
  --color-accent-olive: #708C20;
  --color-accent-olive-light: #EBF2DA;
  
  --color-text-main: #0B1F11;
  --color-text-body: #3B4A3E;
  --color-text-muted: #6B7B6F;
  --color-text-light: #8E9E91;
  
  --color-border-subtle: rgba(6, 52, 20, 0.12);
  --color-border-card: rgba(6, 52, 20, 0.08);
  --color-border-faq: rgba(6, 52, 20, 0.11);
  --color-input-border: #D8DFD0;
  --color-input-focus: #063414;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --shadow-card: 0 14px 40px rgba(6, 52, 20, 0.06), 0 2px 10px rgba(6, 52, 20, 0.03);
  --shadow-image: 0 16px 36px rgba(6, 52, 20, 0.12);
  --shadow-btn: 0 4px 14px rgba(183, 216, 74, 0.35);
  --shadow-btn-hover: 0 6px 20px rgba(183, 216, 74, 0.45);
  
  --radius-card: 14px;
  --radius-input: 8px;
  --radius-btn: 8px;
  --radius-image: 14px;
  --radius-cta-bar: 12px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-primary);
  background-color: var(--bg-page);
  color: var(--color-text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

/* --- Container --- */
.contact-site-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   1. NAVIGATION HEADER
   ========================================================================= */
.contact-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 245, 236, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 52, 20, 0.07);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.contact-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 102;
  transition: transform 0.25s ease;
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.contact-nav-menu {
  display: flex;
  align-items: center;
}

.contact-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.contact-nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-forest-dark);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.contact-nav-link:hover {
  color: var(--color-accent-olive);
}

.contact-nav-link.active {
  color: var(--color-forest-dark);
}

.contact-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-forest-dark);
  border-radius: 2px;
}

.contact-nav-link.nav-link-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(183, 216, 74, 0.18);
  border: 1px solid rgba(183, 216, 74, 0.4);
  border-radius: 20px;
  color: var(--color-forest-dark);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.contact-nav-link.nav-link-online:hover {
  background-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  border-color: var(--color-accent-lime);
}

.contact-nav-link.nav-link-online svg {
  width: 14px;
  height: 14px;
}

/* Header Action Buttons */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(6, 52, 20, 0.14);
  color: var(--color-forest-dark);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(6, 52, 20, 0.04);
}

.header-insta-btn svg {
  width: 18px;
  height: 18px;
}

.header-insta-btn:hover {
  background-color: var(--color-accent-lime);
  border-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  transform: translateY(-1px);
}

.header-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-forest-dark);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 18px 10px 22px;
  border-radius: 30px;
  transition: all var(--transition-smooth);
}

.header-action-btn:hover {
  background-color: var(--color-deep-green);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 52, 20, 0.15);
}

.header-action-btn .btn-arrow-circle {
  width: 24px;
  height: 24px;
  background-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.header-action-btn:hover .btn-arrow-circle {
  transform: rotate(45deg);
}

.header-action-btn .btn-arrow-circle svg {
  width: 13px;
  height: 13px;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 102;
  border-radius: 8px;
  background: rgba(6, 52, 20, 0.04);
  transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: rgba(6, 52, 20, 0.08);
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--color-forest-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer Mobile Action Links */
.mobile-drawer-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 52, 20, 0.1);
  width: 100%;
}

.mobile-drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  background-color: var(--color-forest-dark);
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
}

.mobile-drawer-call-btn svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent-lime);
}

.mobile-drawer-insta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  background-color: #FFFFFF;
  color: var(--color-forest-dark);
  border: 1px solid rgba(6, 52, 20, 0.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-drawer-insta-btn svg {
  width: 17px;
  height: 17px;
}

/* ==========================================================================
   2. CONTACT HERO & LEAD-GENERATION SECTION
   ========================================================================== */
.contact-hero-section {
  position: relative;
  background-color: var(--bg-page);
  padding: 36px 0 54px;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

/* Ambient Subtle Foliage Overlay */
.contact-ambient-shadow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(31, 64, 26, 0.08) 0%, rgba(31, 64, 26, 0.02) 50%, transparent 70%);
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  width: 100%;
}

/* ==========================================================================
   LEFT SIDE — HERO CONTENT, ARCHITECTURAL IMAGE & INSTAGRAM STRIP
   ========================================================================== */
.contact-hero-left {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  position: relative;
}

/* Botanical Line-Art SVG Decoration */
.contact-botanical-art {
  position: absolute;
  top: 180px;
  right: -20px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Eyebrow */
.contact-eyebrow-wrapper {
  margin-bottom: 12px;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-olive);
}

/* Main Heading */
.contact-main-heading {
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-forest-dark);
  margin-bottom: 10px;
}

.contact-main-heading .highlight-green {
  color: var(--color-accent-olive);
  position: relative;
  display: inline-block;
}

/* Hero Caption / Tagline */
.contact-hero-tagline {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-olive);
  margin-bottom: 8px;
}

/* Short Description */
.contact-hero-description {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text-body);
  max-width: 520px;
  margin-bottom: 18px;
}

/* Hero CTA Action Buttons */
.contact-hero-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-contact-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-forest-dark);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--color-forest-dark);
  box-shadow: 0 4px 14px rgba(6, 52, 20, 0.15);
  transition: all var(--transition-smooth);
}

.btn-contact-primary .btn-arrow-icon {
  width: 15px;
  height: 15px;
  stroke: var(--color-accent-lime);
  transition: transform var(--transition-fast);
}

.btn-contact-primary:hover {
  background-color: var(--color-deep-green);
  box-shadow: 0 6px 18px rgba(6, 52, 20, 0.22);
  transform: translateY(-1px);
}

.btn-contact-primary:hover .btn-arrow-icon {
  transform: translateX(3px);
}

.btn-contact-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: var(--color-forest-dark);
  border: 1px solid rgba(6, 52, 20, 0.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(6, 52, 20, 0.04);
  transition: all var(--transition-smooth);
}

.btn-contact-secondary:hover {
  background-color: var(--color-accent-olive-light);
  border-color: var(--color-accent-olive);
  color: var(--color-forest-dark);
  transform: translateY(-1px);
}

/* Benefit Rows (01, 02, 03) */
.contact-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.benefit-row-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-accent-olive-light);
  border: 1px solid rgba(112, 140, 32, 0.22);
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.benefit-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-accent-olive);
  letter-spacing: 0.02em;
}

.benefit-icon-svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-accent-olive);
}

.benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-forest-dark);
  letter-spacing: -0.01em;
}

/* Architectural Landscape Image Frame */
.contact-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  border: 1px solid rgba(6, 52, 20, 0.1);
  background-color: #E8EDE0;
}

.contact-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-image-frame:hover .contact-landscape-img {
  transform: scale(1.03);
}

/* Subtle image overlay badge */
.image-curated-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(6, 52, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.image-curated-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-accent-lime);
}

/* Instagram Follow Quick Strip */
.contact-insta-strip {
  margin-top: 14px;
  background-color: #FFFFFF;
  border: 1px solid rgba(6, 52, 20, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(6, 52, 20, 0.04);
  transition: all var(--transition-fast);
}

.contact-insta-strip:hover {
  border-color: var(--color-accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 52, 20, 0.08);
}

.insta-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.insta-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(220, 39, 67, 0.25);
}

.insta-icon-box svg {
  width: 17px;
  height: 17px;
}

.insta-strip-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.insta-strip-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-olive);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-strip-handle {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-forest-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-strip-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-forest-dark);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.insta-strip-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.contact-insta-strip:hover .insta-strip-arrow {
  color: var(--color-accent-olive);
}

.contact-insta-strip:hover .insta-strip-arrow svg {
  transform: translateX(3px);
}

/* ==========================================================================
   RIGHT SIDE — LEAD FORM CARD
   ========================================================================== */
.contact-hero-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.lead-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 34px 28px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Form Card Header */
.form-card-header {
  margin-bottom: 20px;
}

.form-card-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-forest-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-card-subtitle {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Form Fields */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest-dark);
}

.form-label .req {
  color: #D32F2F;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-input);
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
  font-size: 13px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px rgba(183, 216, 74, 0.35);
  background-color: #FFFFFF;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23063414' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  color: var(--color-text-main);
  background-color: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.45;
}

/* WhatsApp CTA Button */
.btn-whatsapp-cta {
  width: 100%;
  height: 48px;
  background-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  margin-top: 2px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(6, 52, 20, 0.08);
}

.btn-whatsapp-cta .whatsapp-cta-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp-cta .cta-arrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-cta:hover {
  background-color: var(--color-accent-lime-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.btn-whatsapp-cta:hover .cta-arrow-icon {
  transform: translateX(3px);
}

.btn-whatsapp-cta:active {
  transform: translateY(0);
}

/* Privacy & Trust Footnote */
.form-trust-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--color-text-muted);
  text-align: center;
}

.form-trust-footnote svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-accent-olive);
  flex-shrink: 0;
}

/* Success Feedback Banner */
.form-success-banner {
  display: none;
  background-color: #EBF7EC;
  border: 1px solid #BCE5BE;
  color: #1A5E25;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   3. FAQ + WHATSAPP CTA SECTION
   ========================================================================== */
.contact-faq-section {
  background-color: var(--bg-page);
  padding: 56px 0 68px;
  border-top: 1px solid rgba(6, 52, 20, 0.08);
  position: relative;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* FAQ Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 38px;
}

.faq-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-forest-dark);
}

.faq-accent-line {
  width: 36px;
  height: 2.5px;
  background-color: var(--color-forest-dark);
  border-radius: 2px;
  margin: 8px auto 0;
}

/* 2-Column FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
  margin-bottom: 38px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

/* Individual FAQ Row */
.faq-item {
  border-bottom: 1px solid var(--color-border-faq);
  padding: 16px 0;
  transition: border-color var(--transition-fast);
}

.faq-item:first-child {
  padding-top: 4px;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  padding: 4px 0;
  background: none;
  border: none;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-forest-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.faq-question-btn:hover .faq-question-text {
  color: var(--color-accent-olive);
}

/* Far Right Plus / Rotate Icon */
.faq-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(6, 52, 20, 0.2);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-dark);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.faq-icon-wrap svg {
  width: 13px;
  height: 13px;
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(45deg);
  background-color: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
  color: var(--color-accent-lime);
}

/* Answer Container */
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-wrap {
  max-height: 220px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 4px;
}

.faq-answer-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-body);
}

/* ==========================================================================
   BOTTOM HORIZONTAL CTA BAR
   ========================================================================== */
.faq-bottom-cta-bar {
  background-color: var(--bg-cta-bar);
  border: 1px solid rgba(112, 140, 32, 0.24);
  border-radius: var(--radius-cta-bar);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-cta-icon-circle {
  width: 42px;
  height: 42px;
  background-color: var(--color-accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(183, 216, 74, 0.4);
}

.faq-cta-whatsapp-svg {
  width: 22px;
  height: 22px;
}

.faq-cta-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-cta-heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest-dark);
}

.faq-cta-subheading {
  font-size: 13px;
  color: var(--color-text-muted);
}

.btn-faq-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(6, 52, 20, 0.08);
  box-shadow: 0 2px 8px rgba(183, 216, 74, 0.3);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-faq-whatsapp .faq-btn-wa-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-faq-whatsapp .faq-btn-arrow-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-faq-whatsapp:hover {
  background-color: var(--color-accent-lime-hover);
  box-shadow: 0 4px 14px rgba(183, 216, 74, 0.45);
  transform: translateY(-1px);
}

.btn-faq-whatsapp:hover .faq-btn-arrow-icon {
  transform: translateX(3px);
}

.btn-faq-whatsapp:active {
  transform: translateY(0);
}

/* ==========================================================================
   4. SITE FOOTER
   ========================================================================== */
.contact-site-footer {
  background-color: #061A0C;
  color: #E2E8E3;
  padding: 50px 0 30px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-brand-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #A3B5A7;
}

.footer-social-wrap {
  margin-top: 4px;
}

.footer-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #E2E8E3;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-insta-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-accent-lime);
}

.footer-insta-btn:hover {
  background-color: var(--color-accent-lime);
  color: var(--color-forest-dark);
  border-color: var(--color-accent-lime);
}

.footer-insta-btn:hover svg {
  stroke: var(--color-forest-dark);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item a {
  font-size: 13px;
  color: #A3B5A7;
  transition: color var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--color-accent-lime);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #A3B5A7;
  line-height: 1.45;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social-link {
  color: #A3B5A7;
  transition: color var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--color-accent-lime);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #7A8D7E;
}

/* Floating WhatsApp Quick Connect Button */
.floating-whatsapp-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES (COMPREHENSIVE MOBILE & TABLET)
   ========================================================================== */

/* Tablet & Smaller Desktop (1024px - 1080px) */
@media (max-width: 1080px) {
  .contact-hero-grid {
    gap: 28px;
  }
  
  .lead-form-card {
    padding: 28px 26px 24px;
  }
  
  .contact-main-heading {
    font-size: 34px;
  }
  
  .contact-image-frame {
    height: 200px;
  }

  .faq-grid {
    gap: 0 32px;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile & Tablet Portrait (< 900px) */
@media (max-width: 900px) {
  .contact-header {
    padding: 12px 0;
  }

  .contact-site-container {
    padding: 0 20px;
  }

  .contact-ambient-shadow,
  .contact-botanical-art {
    display: none;
  }

  .brand-logo-img {
    height: 58px;
  }

  .header-actions-group {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  /* Full Screen Mobile Drawer */
  .contact-nav-menu {
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    height: calc(100vh - 61px);
    overflow-y: auto;
    background-color: var(--bg-page);
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 24px 20px 36px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    z-index: 101;
  }

  .contact-nav-menu.mobile-active {
    display: flex;
  }

  .contact-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .contact-nav-list li {
    border-bottom: 1px solid rgba(6, 52, 20, 0.08);
  }

  .contact-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .contact-nav-link.active::after {
    display: none;
  }

  .contact-nav-link.active {
    color: var(--color-accent-olive);
    font-weight: 800;
  }

  .contact-nav-link.nav-link-online {
    margin: 12px 0;
    justify-content: center;
    padding: 10px 16px;
  }

  .mobile-drawer-actions {
    display: flex;
  }

  /* Hero Section Stacking & Mobile Ordering */
  .contact-hero-section {
    padding: 24px 0 44px;
    min-height: auto;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-hero-left {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 0;
  }

  .contact-botanical-art {
    display: none;
  }

  /* 1. Eyebrow */
  .contact-eyebrow-wrapper {
    order: 1 !important;
    margin-bottom: 8px;
  }

  .contact-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  /* 2. Main Heading */
  .contact-main-heading {
    order: 2 !important;
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  /* 3. Hero Caption / Tagline */
  .contact-hero-tagline {
    order: 3 !important;
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  /* 4. Description */
  .contact-hero-description {
    order: 4 !important;
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* 5. Architectural Landscape Image Frame (Comes after hero caption & description) */
  .contact-image-frame {
    order: 5 !important;
    height: 220px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .image-curated-badge {
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }

  /* 6. CTA Action Buttons Group (Directly below image in mobile view) */
  .contact-hero-cta-group {
    order: 6 !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .btn-contact-primary,
  .btn-contact-secondary {
    flex: 1;
    height: 46px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: var(--radius-btn);
    white-space: nowrap;
    text-align: center;
  }

  /* 7. Instagram Strip */
  .contact-insta-strip {
    order: 7 !important;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 10px 14px;
  }

  /* 8. Benefit List */
  .contact-benefits-list {
    order: 8 !important;
    gap: 10px;
    margin-bottom: 0;
  }

  .benefit-row-item {
    gap: 12px;
  }

  .benefit-title {
    font-size: 13.5px;
  }

  /* Form Card Mobile */
  .lead-form-card {
    padding: 26px 20px 22px;
    border-radius: 12px;
  }

  .form-card-header {
    margin-bottom: 18px;
  }

  .form-card-title {
    font-size: 21px;
  }

  .form-card-subtitle {
    font-size: 13px;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 16px font-size prevents iOS automatic zoom */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 11px 13px;
  }

  .form-textarea {
    min-height: 80px;
  }

  .btn-whatsapp-cta {
    height: 48px;
    font-size: 13px;
  }

  /* FAQ Responsive */
  .contact-faq-section {
    padding: 44px 0 52px;
  }

  .faq-header {
    margin-bottom: 28px;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 14px 0;
  }

  .faq-question-btn {
    padding: 2px 0;
    gap: 12px;
  }

  .faq-question-text {
    font-size: 14.5px;
    line-height: 1.38;
  }

  .faq-answer-text {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .faq-bottom-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
    border-radius: 12px;
  }

  .faq-cta-left {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .btn-faq-whatsapp {
    width: 100%;
    height: 46px;
    font-size: 12.5px;
    justify-content: center;
  }

  /* Footer Mobile */
  .contact-site-footer {
    padding: 42px 0 24px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 20px;
  }

  .floating-whatsapp-wrapper {
    bottom: 18px;
    right: 18px;
  }

  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Small Smartphone View (< 480px) */
@media (max-width: 480px) {
  .contact-site-container {
    padding: 0 16px;
  }

  .contact-main-heading {
    font-size: clamp(26px, 7.8vw, 30px);
  }

  .contact-hero-tagline {
    font-size: 12.5px;
  }

  .contact-hero-description {
    font-size: 13.5px;
  }

  .contact-image-frame {
    height: 180px;
  }

  .btn-contact-primary,
  .btn-contact-secondary {
    font-size: 11.5px;
    padding: 0 8px;
    gap: 6px;
  }

  .btn-contact-primary .btn-arrow-icon {
    width: 13px;
    height: 13px;
  }

  .lead-form-card {
    padding: 22px 16px 20px;
  }

  .form-card-title {
    font-size: 20px;
  }

  .form-card-subtitle {
    font-size: 12.5px;
  }

  .form-trust-footnote {
    font-size: 11px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .btn-whatsapp-cta {
    font-size: 12px;
    gap: 8px;
  }

  .btn-whatsapp-cta .whatsapp-cta-icon {
    width: 18px;
    height: 18px;
  }

  .btn-faq-whatsapp {
    font-size: 12px;
    gap: 7px;
  }

  .insta-strip-arrow span {
    font-size: 11px;
  }
}
