/* ============================================
   GoDoMake — Global Stylesheet
   Brand: Yellow #F5C518 | Teal #1A7A6E | Dark #0D3D36
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,700;0,900;1,300;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --yellow:    #F5C518;
  --yellow-dk: #D4A900;
  --teal:      #1A7A6E;
  --teal-lt:   #2aafa0;
  --dark:      #0D3D36;
  --white:     #FFFFFF;
  --offwhite:  #F8F5EF;
  --text:      #1C1C1C;
  --gray:      #6B7280;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--offwhite);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

.serif-italic { font-style: italic; font-weight: 300; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover { background: var(--yellow-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--dark); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(13, 61, 54, 0.96);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.nav-logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--yellow-dk) !important; transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,61,54,0.45) 0%, rgba(13,61,54,0.25) 50%, rgba(13,61,54,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 20px;
  animation: fadeUp 1s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--yellow);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.5);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Shared ── */
.section { padding: var(--section-pad) clamp(20px, 6vw, 80px); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 560px;
}

/* ── About / Split ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--dark);
}
.about-text {
  padding: var(--section-pad) clamp(30px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text .section-label { color: var(--yellow); }
.about-text .section-title { color: var(--white); }
.about-text .section-body { color: rgba(255,255,255,0.7); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}
.about-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.about-img:hover { transform: scale(1.03); }
.about-img-1 { background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=800&q=80'); }
.about-img-2 { background-image: url('https://images.unsplash.com/photo-1527856263669-12c3a0af2aa6?w=800&q=80'); }

/* ── How It Works ── */
.how {
  background: var(--offwhite);
  text-align: center;
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.how .section-label,
.how .section-title { text-align: center; }
.how .section-title { margin: 0 auto 60px; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  position: relative;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── Offers ── */
.offers { background: var(--white); padding: var(--section-pad) clamp(20px, 6vw, 80px); }
.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.offer-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.offer-card:hover { transform: scale(1.015); }
.offer-card:hover .offer-overlay { opacity: 1; }
.offer-card:hover .offer-body { transform: translateY(0); }
.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-bg { transform: scale(1.06); }
.offer-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,54,0.85) 0%, rgba(13,61,54,0.1) 60%);
}
.offer-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}
.offer-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.offer-body h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}
.offer-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 18px;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.offer-link:hover { gap: 12px; }
.offer-overlay {
  position: absolute;
  inset: 0;
  border: 3px solid var(--yellow);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.offer-bg-beach  { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800&q=80'); }
.offer-bg-winter { background-image: url('https://images.unsplash.com/photo-1517299321609-52687d1bc55a?w=800&q=80'); }
.offer-bg-tour   { background-image: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=800&q=80'); }
.offer-bg-city   { background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=800&q=80'); }

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?w=1600&q=80') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,61,54,0.88) 0%, rgba(26,122,110,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 20px;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.cta-content h2 em { color: var(--yellow); font-style: italic; font-weight: 300; }
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px clamp(20px, 6vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

/* ── Plan Page ── */
.plan-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) clamp(20px, 6vw, 80px) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plan-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(26,122,110,0.4) 0%, transparent 70%);
}
.plan-hero h1 { color: var(--white); position: relative; font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 16px; }
.plan-hero h1 em { color: var(--yellow); }
.plan-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; position: relative; max-width: 520px; margin: 0 auto; }

.planner {
  max-width: 860px;
  margin: -40px auto 80px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 48px clamp(24px, 5vw, 56px);
  position: relative;
  z-index: 2;
}
.planner h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.planner > p { color: var(--gray); margin-bottom: 36px; font-size: 0.95rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--offwhite);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid #E5E7EB;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  color: var(--gray);
  user-select: none;
}
.chip.active,
.chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(26,122,110,0.06);
}
.chip.active { background: rgba(26,122,110,0.1); font-weight: 600; }

.plan-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  margin-top: 28px;
  border-radius: 8px;
}

.itinerary-result {
  margin-top: 40px;
  border-top: 2px solid var(--offwhite);
  padding-top: 40px;
  display: none;
}
.itinerary-result.visible { display: block; }
.itinerary-result h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.itinerary-day {
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  margin-bottom: 28px;
}
.itinerary-day h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 10px;
}
.itinerary-day ul { display: flex; flex-direction: column; gap: 8px; }
.itinerary-day li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  padding: 10px 14px;
  background: var(--offwhite);
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.time-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  min-width: 50px;
}

/* ── Destinations Page ── */
.dest-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 80px) clamp(20px, 6vw, 80px) 80px;
  text-align: center;
  position: relative;
}
.dest-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 14px; }
.dest-hero h1 em { color: var(--yellow); }
.dest-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 60px clamp(20px, 6vw, 80px);
}
.dest-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.dest-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-region {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.dest-card-body { padding: 20px; }
.dest-card-body h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.dest-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; margin-bottom: 16px; }
.dest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}
.dest-rating { color: var(--yellow-dk); font-weight: 600; }

/* ── About Page ── */
.about-page-hero {
  background: var(--teal);
  padding: calc(var(--nav-h) + 80px) clamp(20px, 6vw, 80px) 80px;
  color: var(--white);
}
.about-page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.about-page-hero h1 em { color: var(--yellow); }
.about-page-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 600px; line-height: 1.7; }

.values-section { padding: var(--section-pad) clamp(20px, 6vw, 80px); background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--offwhite);
  border-top: 4px solid var(--yellow);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

.team-section { padding: var(--section-pad) clamp(20px, 6vw, 80px); background: var(--offwhite); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.team-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: var(--gray); }

/* ── Contact Page ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact-info {
  background: var(--dark);
  padding: var(--section-pad) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 20px; }
.contact-info h2 em { color: var(--yellow); }
.contact-info p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--offwhite);
  padding: var(--section-pad) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 32px; }

/* ── Loading Overlay ── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,61,54,0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
}
.loading-overlay.active { display: flex; }
.spinner {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-stats { gap: 32px; }
}
