/* =====================================================
   WEDDING VISA · style.css
   Theme: Amber-gold + Forest green + Ivory
===================================================== */

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --amber:       #FFA800;
  --amber-d:     #D98C00;
  --amber-light: #FFD980;
  --green:       #2D5A27;
  --green-d:     #1e3d1a;
  --green-light: #4a7d42;
  --bg:          #FDFAF4;
  --surface:     #FFFDF8;
  --surface-2:   #F5EDD8;
  --text:        #1E1409;
  --muted:       #6B5B45;
  --faint:       #B0A08A;
  --white:       #ffffff;
  --deep:        #1A1008;
  --border:      rgba(30,20,9,.1);
  --shadow-sm:   0 2px 8px rgba(26,16,8,.07);
  --shadow-md:   0 8px 28px rgba(26,16,8,.10);
  --shadow-lg:   0 18px 50px rgba(26,16,8,.14);
  --radius:      20px;
  --radius-sm:   12px;
  --container:   1200px;
  --tr:          all .32s cubic-bezier(.16,1,.3,1);
}

/* ── RESET ───────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ── CONTAINERS ──────────────────────────────────── */
.section-container,
.footer-container,
.strip-container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* ── SECTION LABELS ──────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 14px;
}
.section-label::before,.section-label::after {
  content: ""; display: inline-block; width: 20px; height: 1.5px;
  background: var(--amber); border-radius: 2px;
}
.section-label.light { color: var(--amber-light); }
.section-label.light::before,.section-label.light::after { background: var(--amber-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.06; font-weight: 600; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--amber-d); font-weight: 500; }
.section-title.light,.section-title.light em { color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-desc { max-width: 740px; color: var(--muted); font-size: 1.06rem; line-height: 1.78; margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-size: .97rem; font-weight: 500;
  border: 1.5px solid transparent; transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.btn-gold  { background: var(--amber); color: var(--deep); box-shadow: 0 8px 24px rgba(255,168,0,.28); }
.btn-gold:hover { background: var(--amber-d); color: var(--white); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.65); color: var(--white); backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 9999; padding: 16px 0; transition: var(--tr);
}
.navbar.scrolled {
  background: rgba(253,250,244,.96); backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.08); padding: 10px 0;
}

/* nav-container: full-width flex row, no wrapping */
.nav-container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700;
  color: var(--white); transition: var(--tr); flex-shrink: 0;
}
.nav-logo em { color: var(--amber); font-style: italic; }
.navbar.scrolled .nav-logo { color: var(--text); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  font-size: .95rem; color: rgba(255,255,255,.9);
  position: relative; padding-bottom: 3px; font-weight: 500;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--amber); transition: width .28s ease;
}
.nav-link:hover::after,.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--amber); }
.navbar.scrolled .nav-link:hover { color: var(--amber-d); }

/* CTA button in nav */
.nav-cta {
  background: var(--amber); color: var(--deep) !important;
  padding: 11px 20px; border-radius: 999px; font-size: .92rem; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 16px rgba(255,168,0,.3);
}
.nav-cta:hover { background: var(--amber-d); color: var(--white) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  background: transparent;
  /* backdrop-filter: blur(10px); */
  border-radius: 10px;
  transition: var(--tr);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: #ffffff; border-radius: 2px; transition: var(--tr);
}
/* .navbar.scrolled .nav-toggle {  } */
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }
.hero-swiper,.hero-swiper .swiper-slide { width: 100%; height: 100vh; min-height: 650px; }
.swiper-slide {
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,rgba(15,9,4,.78) 0%,rgba(15,9,4,.44) 55%,rgba(15,9,4,.22) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  width: min(100% - 32px, 1200px); margin: 0 auto;
  color: var(--white); padding-top: 90px;
}
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,168,0,.18); border: 1px solid rgba(255,168,0,.35);
  backdrop-filter: blur(10px); margin-bottom: 20px; font-size: .9rem;
  letter-spacing: .04em; color: var(--amber-light);
}
.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .96; font-weight: 600; max-width: 860px; margin-bottom: 22px;
}
.slide-heading em { font-style: italic; color: var(--amber-light); font-weight: 500; }
.slide-sub { max-width: 620px; font-size: 1.06rem; color: rgba(255,255,255,.88); line-height: 1.76; margin-bottom: 28px; }
.slide-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.swiper-button-prev,.swiper-button-next {
  color: var(--white) !important; width: 50px !important; height: 50px !important;
  border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); transition: var(--tr);
}
.swiper-button-prev:hover,.swiper-button-next:hover { background: var(--amber); color: var(--deep) !important; }
.swiper-button-prev::after,.swiper-button-next::after { font-size: 16px !important; font-weight: 700; }
.swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(255,255,255,.45); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--amber); width: 26px; border-radius: 5px; }

/* ── MARQUEE ─────────────────────────────────────── */
.philosophy-strip { background: var(--green-d); overflow: hidden; }
.marquee-wrap { width: 100%; overflow: hidden; padding: 18px 0; }
.marquee-inner { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  white-space: nowrap; padding: 0 24px;
  color: rgba(255,255,255,.82); font-size: .97rem; font-style: italic;
}
.marquee-inner .fa-quote-left { color: var(--amber); margin-right: 4px; font-size: .8rem; }
.marquee-inner .sep { color: var(--amber); font-size: .5rem; vertical-align: middle; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── STATS BAR ───────────────────────────────────── */
.hero-stats-bar {
  background: var(--surface); display: flex; align-items: stretch;
  justify-content: center; border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.hstat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 36px; text-align: center; flex: 1; min-width: 130px;
}
.hstat-val { display: flex; align-items: baseline; gap: 2px; }
.hstat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--amber-d); font-weight: 700; line-height: 1; }
.hstat-suf { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--amber-d); font-weight: 700; }
.hstat-lbl { font-size: .78rem; color: var(--muted); letter-spacing: .07em; margin-top: 5px; text-transform: uppercase; }
.hstat-sep { width: 1px; background: var(--border); align-self: stretch; margin: 12px 0; }

/* ── ABOUT ───────────────────────────────────────── */
.about-section { padding: 100px 0; background: linear-gradient(175deg,var(--bg) 0%,#fffcf3 100%); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-bottom: 68px; }
.about-imgs { display: grid; grid-template-rows: 1fr auto; gap: 16px; }
.about-img-main { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; transition: transform .8s ease; }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px; font-size: .88rem; color: var(--deep);
  display: flex; align-items: center; gap: 7px; font-weight: 500;
}
.about-img-badge i { color: var(--amber-d); }
.about-img-thumb { border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.about-img-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform .8s ease; }
.about-img-thumb:hover img { transform: scale(1.05); }
.thumb-float {
  position: absolute; top: 14px; right: 14px;
  background: var(--green-d); color: var(--white);
  padding: 12px 16px; border-radius: 14px; display: flex; align-items: center; gap: 10px;
}
.thumb-float i { color: var(--amber); font-size: 1.2rem; }
.thumb-float strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--amber); line-height: 1; display: block; }
.thumb-float span { font-size: .75rem; color: rgba(255,255,255,.7); }
.about-text blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic;
  color: var(--green); border-left: 3px solid var(--amber);
  padding-left: 18px; margin-bottom: 28px; line-height: 1.5;
}
.about-text blockquote i { color: var(--amber); font-size: .85rem; vertical-align: super; margin-right: 5px; }
.af-list { display: grid; gap: 14px; margin-bottom: 32px; }
.af-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border); transition: var(--tr);
}
.af-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.af-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,168,0,.14); color: var(--amber-d);
  display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.af-item h4 { font-size: 1rem; margin-bottom: 3px; }
.af-item p { color: var(--muted); font-size: .93rem; }
.asc-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.asc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--tr);
}
.asc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.asc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(45,90,39,.1); color: var(--green);
  display: grid; place-items: center; font-size: 1.2rem; margin: 0 auto 12px;
}
.asc-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--amber-d); font-weight: 700; line-height: 1; display: inline; }
.asc-suf { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--amber-d); font-weight: 700; display: inline; }
.asc-lbl { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 6px; }

/* ── DESTINATIONS ────────────────────────────────── */
.destinations-section { padding: 100px 0; background: var(--surface); }
.dest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 32px; }
.dest-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: var(--tr);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card-img { position: relative; height: 280px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(26,16,8,.72); color: var(--white);
  padding: 7px 14px; border-radius: 999px; font-size: .84rem;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,168,0,.3);
}
.dest-card-body { padding: 24px; }
.dest-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 7px; }
.dest-card-body p { color: var(--muted); margin-bottom: 16px; font-size: .95rem; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-tags li {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(45,90,39,.08); color: var(--green);
  font-size: .82rem; font-weight: 500; border: 1px solid rgba(45,90,39,.15);
}
.dest-cta-strip {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-d); color: var(--white);
  padding: 20px 24px; border-radius: 16px; margin-bottom: 52px;
  border: 1px solid rgba(255,168,0,.15);
}
.dest-cta-strip i { color: var(--amber); font-size: 1.3rem; flex-shrink: 0; }
.dest-cta-strip p { font-size: 1rem; color: rgba(255,255,255,.88); }
.dest-cta-strip strong { color: var(--amber-light); }
.services-block { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.services-list { display: grid; gap: 13px; margin-top: 22px; }
.services-list li {
  display: flex; gap: 12px; align-items: center;
  background: var(--surface); padding: 15px 18px;
  border-radius: 13px; border: 1px solid var(--border);
  font-size: .97rem; transition: var(--tr);
}
.services-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.services-list i { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.signature-card {
  background: linear-gradient(150deg,var(--green-d) 0%,#1e3d1a 100%);
  color: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(255,168,0,.1);
}
.sig-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,168,0,.15); color: var(--amber);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px;
}
.signature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 12px; }
.signature-card p { color: rgba(255,255,255,.8); font-size: .97rem; }
.sig-highlight { color: var(--amber-light) !important; font-style: italic; margin-top: 8px; }
.sig-divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0 22px; }
.signature-card img { border-radius: 14px; object-fit: cover; width: 100%; height: 220px; margin-top: auto; }

/* ── VISION ──────────────────────────────────────── */
.vision-section { position: relative; }
.vision-bg { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.vision-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(10,22,8,.84) 0%,rgba(10,22,8,.84) 100%);
}
.vision-content {
  position: relative; z-index: 2;
  width: min(100% - 32px, var(--container));
  margin: 0 auto; padding: 110px 0; text-align: center; color: var(--white);
}
.vision-transform {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,168,0,.25);
  backdrop-filter: blur(10px); margin: 16px 0 22px;
  flex-wrap: wrap; justify-content: center;
}
.vision-from,.vision-to { display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; }
.vision-from i { color: #f5a5a5; }
.vision-to i { color: #a5e0a5; }
.vision-arrow { color: var(--amber); font-size: 1.1rem; }
.vision-lead { font-size: 1.06rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.vision-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 48px; }
.vision-pillar {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); padding: 28px 22px; border-radius: 18px; transition: var(--tr);
}
.vision-pillar:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.vision-pillar.featured { border-color: rgba(255,168,0,.35); background: rgba(255,168,0,.09); }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,168,0,.18); color: var(--amber-light);
  display: grid; place-items: center; font-size: 1.3rem; margin: 0 auto 14px;
}
.vision-pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; margin-bottom: 10px; }
.vision-pillar p { color: rgba(255,255,255,.76); font-size: .94rem; }
.vision-pos { display: flex; align-items: center; gap: 20px; justify-content: center; margin-bottom: 36px; }
.vpos-line { flex: 1; max-width: 100px; height: 1px; background: rgba(255,168,0,.35); }
.vision-pos p { font-size: 1.05rem; color: rgba(255,255,255,.82); }
.vision-pos strong { color: var(--amber-light); }

/* ── CONTACT ─────────────────────────────────────── */
.contact-section { padding: 100px 0; background: linear-gradient(175deg,var(--surface) 0%,#f8f0e0 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.contact-info,.contact-form-wrap {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); overflow: hidden;
}
.contact-img { position: relative; }
.contact-img img { width: 100%; height: 280px; object-fit: cover; }
.contact-img-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(8px);
  padding: 9px 14px; border-radius: 999px; font-size: .86rem;
  color: var(--deep); display: flex; align-items: center; gap: 6px;
}
.contact-img-badge i { color: var(--amber-d); }
.contact-details { padding: 24px 26px; }
.contact-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,168,0,.12); color: var(--amber-d);
  display: grid; place-items: center; flex-shrink: 0; font-size: 1rem;
}
.contact-item h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
.contact-item a,.contact-item span { color: var(--text); font-size: .97rem; }
.contact-item a:hover { color: var(--amber-d); }
.contact-form-wrap { padding: 30px; }
.form-success,.form-error {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 16px; border-radius: 12px; margin-bottom: 18px; font-size: .94rem;
}
.form-success { background: #edf5e6; color: #2e6020; }
.form-error { background: #fdeaea; color: #922020; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group label { font-size: .92rem; font-weight: 500; color: var(--text); }
.req { color: #c0392b; }
.form-group input,.form-group textarea,.form-group select {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,.1); background: var(--bg);
  outline: none; transition: var(--tr); font-size: .97rem;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
  border-color: var(--amber); box-shadow: 0 0 0 4px rgba(255,168,0,.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--deep); color: rgba(255,255,255,.75); }
.footer-top { padding: 72px 0 40px; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-brand .nav-logo { color: var(--white) !important; margin-bottom: 14px; }
.footer-brand p { font-size: .94rem; line-height: 1.78; max-width: 320px; color: rgba(255,255,255,.65); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  font-size: .95rem; transition: var(--tr);
}
.footer-socials a:hover { background: var(--amber); color: var(--deep); }
.footer-links h5 { color: var(--white); margin-bottom: 14px; font-size: .97rem; }
.footer-links ul { display: grid; gap: 10px; }
.footer-links a { font-size: .92rem; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bottom .footer-container { grid-template-columns: 1fr 1fr; gap: 8px; align-items: center; }
.footer-bottom p { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-bottom p:last-child { text-align: right; }

/* ── FLOATING BUTTONS ────────────────────────────── */
.scroll-top {
  position: fixed; right: 22px; bottom: 88px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-d); color: var(--white);
  display: grid; place-items: center; border: none; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--tr); z-index: 800; box-shadow: var(--shadow-md);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--amber); color: var(--deep); }
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 50px; height: 50px; background: #25d366; color: var(--white);
  border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem;
  z-index: 800; box-shadow: 0 6px 22px rgba(37,211,102,.4); transition: var(--tr);
}
.whatsapp-float:hover { background: #1ebc5c; transform: scale(1.1); }

/* ════════════════════════════════════════════════════
   RESPONSIVE — properly structured, non-nested
════════════════════════════════════════════════════ */

/* ── ≤1100px ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .asc-row { grid-template-columns: repeat(2,1fr); }
  .services-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vision-pillars { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

/* ── ≤900px — MOBILE NAV ─────────────────────────── */
@media (max-width: 900px) {
  /* Show hamburger, hide desktop links */
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0 !important;
  }
  .nav-links {
    /* Off-canvas dropdown — taken OUT of flex row via absolute positioning */
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(253,250,244,.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text) !important; }
  .nav-cta { color: var(--deep) !important; }

  .swiper-button-prev,.swiper-button-next { display: none !important; }
  .hero-stats-bar { gap: 0; }
  .hstat { padding: 16px 20px; flex: none; min-width: 110px; }
  .hstat-sep { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .vision-pillars { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-bottom .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom p:last-child { text-align: center; }
  .founder-img-desktop { display: none  !important; }
  .founder-img-mobile  { display: block !important; }
}

/* ── ≤640px ──────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-swiper,.hero-swiper .swiper-slide { height: 95vh; min-height: 600px; }
  .slide-content { padding-top: 100px; }
  .slide-heading { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .slide-sub { font-size: 1rem; }
  .slide-btns { flex-direction: column; align-items: flex-start; }
  .about-section,.destinations-section,.contact-section { padding: 72px 0; }
  .vision-content { padding: 80px 0; }
  .asc-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .asc-card { padding: 22px 14px; }
  .section-title { font-size: clamp(1.9rem, 8vw, 2.7rem); }
  .section-header { margin-bottom: 36px; }
  .dest-card-img { height: 220px; }
  .contact-form-wrap { padding: 22px; }
  .signature-card { padding: 24px; }
  .vision-transform { border-radius: 18px; flex-direction: column; gap: 10px; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-top { padding: 52px 0 30px; }
  .footer-brand p { max-width: 100%; }
}
/* ── FOUNDER SECTION ─────────────────────────────── */
.founder-section {
  padding: 100px 0;
  background: linear-gradient(175deg, var(--bg) 0%, #fffcf3 100%);
}

.founder-img-wrap {
  margin-top: 48px;
  max-width: 900px;
  margin-inline: auto;
}

.founder-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.founder-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .8s ease;
}

.founder-img-main:hover img { transform: scale(1.04); }

/* ── RESPONSIVE IMAGE SWAP ───────────────────────── */

.founder-img-desktop { display: block !important; }
.founder-img-mobile  { display: none  !important; }

/* Mobile ≤768px: swap */
@media (max-width: 768px) {
  .founder-img-desktop { display: none  !important; }
  .founder-img-mobile  { display: block !important; }
  .founder-section { padding: 72px 0; }
}

/* ── FORM VALIDATION STATES ──────────────────────── */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.10) !important;
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.10) !important;
}

.field-error {
  font-size: .82rem;
  color: #c0392b;
  margin-top: 5px;
  display: block;
  min-height: 1em;
}

/* Shake animation on submit with errors */
.form-group.has-error {
  animation: shake .35s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}