/* ATT Landing — Main Stylesheet
   Extracted from adventure-tour-landing-v2.html
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --navy:#0F1B2D;
  --navy2:#1A2A3F;
  --orange:#D4530A;
  --orange2:#F06020;
  --gold:#C49A1A;
  --cream:#F7F4EE;
  --white:#FFFFFF;
  --muted:#5A6475;
  --border:#E4E0D6;
  --green:#1E6B3C;
  --radius:14px;
  --shadow:0 20px 60px rgba(15,27,45,0.12);
}

html{scroll-behavior:smooth}

body{
  font-family:'Sora',sans-serif;
  background:var(--cream);
  color:var(--navy);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ── URGENCY BAR ─────────────────────────────────────────── */
.urgency-bar{
  background:var(--orange);
  color:white;
  text-align:center;
  padding:10px 20px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.3px;
  position:relative;
  z-index:200;
}
.urgency-bar span{
  background:rgba(255,255,255,0.2);
  border-radius:4px;
  padding:2px 8px;
  margin:0 4px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero{
  background:var(--navy);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212,83,10,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(30,107,60,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(196,154,26,0.06) 0%, transparent 60%);
}

.hero-lines{
  position:absolute;
  top:0;right:0;
  width:55%;
  height:100%;
  opacity:0.04;
  pointer-events:none;
}

.hero-body{
  position:relative;
  z-index:2;
  flex:1;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:start;
  max-width:1160px;
  margin:0 auto;
  padding:80px 40px 60px;
  width:100%;
}

/* ── HERO LEFT ───────────────────────────────────────────── */
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(212,83,10,0.15);
  border:1px solid rgba(212,83,10,0.35);
  border-radius:50px;
  padding:5px 14px;
  font-size:11px;
  color:#F08050;
  letter-spacing:1.8px;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:22px;
}

.hero-eyebrow::before{
  content:'';
  width:6px;height:6px;
  border-radius:50%;
  background:#D4530A;
  animation:blink 2s ease-in-out infinite;
}

@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}

.hero-title{
  font-family:'Lora',serif;
  font-size:clamp(34px,4.5vw,58px);
  font-weight:700;
  color:#fff;
  line-height:1.12;
  margin-bottom:18px;
}

.hero-title em{
  font-style:italic;
  color:var(--orange2);
}

.hero-sub{
  font-size:16px;
  color:rgba(255,255,255,0.6);
  line-height:1.75;
  margin-bottom:32px;
  font-weight:400;
  max-width:480px;
}

/* Trust row */
.trust-row{
  display:flex;
  gap:0;
  margin-bottom:36px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  overflow:hidden;
  max-width:480px;
}

.trust-item{
  flex:1;
  padding:14px 16px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child{border-right:none}

.trust-num{
  font-family:'Lora',serif;
  font-size:22px;
  font-weight:700;
  color:var(--orange2);
  display:block;
  line-height:1;
  margin-bottom:4px;
}

.trust-lbl{
  font-size:10px;
  color:rgba(255,255,255,0.45);
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
}

/* CTA buttons */
.hero-btns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-call{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.25);
  color:rgba(255,255,255,0.85);
  padding:13px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  font-family:'Sora',sans-serif;
  transition:all 0.25s ease;
}
.btn-call:hover{border-color:rgba(255,255,255,0.5);color:#fff}

.btn-wa{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#25D366;
  color:white;
  border:none;
  padding:13px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  font-family:'Sora',sans-serif;
  transition:all 0.25s ease;
}
.btn-wa:hover{background:#1fba59}

/* ── FORM CARD ───────────────────────────────────────────── */
.form-wrap{
  position:relative;
  z-index:10;
  min-width:0;
  width:100%;
}

.form-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  position:relative;
  isolation:isolate;
  z-index:10;
}

.form-top-bar{
  background:linear-gradient(90deg,var(--orange) 0%,var(--gold) 100%);
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.form-top-label{
  color:white;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
}

.form-top-badge{
  background:rgba(255,255,255,0.2);
  color:white;
  font-size:11px;
  font-weight:700;
  padding:3px 10px;
  border-radius:50px;
  letter-spacing:0.5px;
}

.form-body{
  padding:28px 28px 24px;
}

.form-headline{
  font-family:'Lora',serif;
  font-size:20px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:4px;
  line-height:1.3;
}

.form-subtext{
  font-size:12px;
  color:var(--muted);
  margin-bottom:22px;
}

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

.form-group label{
  display:block;
  font-size:11px;
  font-weight:700;
  color:var(--navy);
  letter-spacing:0.8px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.form-group input,
.form-group select{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--border);
  border-radius:10px;
  font-size:14px;
  font-family:'Sora',sans-serif;
  color:var(--navy);
  background:#FAFAF8;
  outline:none;
  transition:border-color 0.2s,box-shadow 0.2s;
  appearance:none;
  -webkit-appearance:none;
}

.form-group input:focus,
.form-group select:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(212,83,10,0.1);
  background:#fff;
}

.form-group select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235A6475'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:36px;
  cursor:pointer;
}

.seats-warning{
  display:flex;
  align-items:center;
  gap:6px;
  background:#FFF8ED;
  border:1px solid #F5C842;
  border-radius:8px;
  padding:8px 12px;
  font-size:12px;
  color:#7A5800;
  font-weight:600;
  margin-bottom:14px;
}

.btn-submit{
  width:100%;
  background:var(--orange);
  color:white;
  border:none;
  padding:15px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  font-family:'Sora',sans-serif;
  transition:all 0.25s ease;
  letter-spacing:0.3px;
  position:relative;
  overflow:hidden;
}

.btn-submit::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.12),transparent);
  transform:translateX(-100%);
  transition:transform 0.5s ease;
}

.btn-submit:hover{
  background:var(--orange2);
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(212,83,10,0.35);
}

.btn-submit:hover::after{transform:translateX(100%)}

.form-microcopy{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:12px;
}

.form-microcopy-item{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:11px;
  color:var(--muted);
}

.form-microcopy-item svg{flex-shrink:0}

/* ── FORM ERROR STATE ────────────────────────────────────── */
.form-error{
  display:none;
  background:#FFF2F2;
  border:1px solid #FFAAAA;
  border-radius:8px;
  padding:10px 14px;
  font-size:12px;
  color:#8B1A1A;
  line-height:1.6;
  margin-bottom:14px;
}
.form-error.show{display:block}
.form-error a{color:var(--orange);font-weight:600;text-decoration:none}
.form-error a:hover{text-decoration:underline}

/* ── SUCCESS STATE ───────────────────────────────────────── */
.success-state{
  display:none;
  padding:32px 28px;
  text-align:center;
}
.success-state.show{display:block}
.form-fields.hide{display:none}

.success-icon{font-size:48px;margin-bottom:14px}
.success-title{font-family:'Lora',serif;font-size:22px;font-weight:700;color:var(--navy);margin-bottom:8px}
.success-sub{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:20px}
.success-wa{
  display:inline-flex;align-items:center;gap:8px;
  background:#25D366;color:white;
  padding:12px 24px;border-radius:50px;
  text-decoration:none;font-weight:700;font-size:14px;
  font-family:'Sora',sans-serif;
}

/* ── SOCIAL PROOF STRIP ──────────────────────────────────── */
.proof-strip{
  background:var(--navy2);
  padding:20px 40px;
}

.proof-inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}

.proof-avatars{
  display:flex;
  align-items:center;
}

.avatar{
  width:36px;height:36px;
  border-radius:50%;
  border:2px solid var(--navy2);
  object-fit:cover;
  margin-left:-10px;
  background:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:white;
  flex-shrink:0;
}
.avatar:first-child{margin-left:0}

.proof-text{
  font-size:13px;
  color:rgba(255,255,255,0.7);
  margin-left:12px;
}
.proof-text strong{color:#fff}

.proof-stars{
  display:flex;align-items:center;gap:6px;
}
.stars{color:#F5C842;font-size:16px;letter-spacing:1px}
.proof-rating-text{font-size:13px;color:rgba(255,255,255,0.7)}
.proof-rating-text strong{color:#fff}

.proof-divider{width:1px;height:30px;background:rgba(255,255,255,0.1)}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section{
  background:#fff;
  padding:64px 40px;
}

.testimonials-inner{
  max-width:1160px;
  margin:0 auto;
}

.section-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--orange);
  font-weight:700;
  margin-bottom:8px;
}

.section-title{
  font-family:'Lora',serif;
  font-size:clamp(24px,3vw,36px);
  font-weight:700;
  color:var(--navy);
  margin-bottom:8px;
  line-height:1.2;
}

.section-sub{
  font-size:15px;
  color:var(--muted);
  margin-bottom:40px;
  line-height:1.6;
}

.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.testi-card{
  background:var(--cream);
  border-radius:16px;
  padding:24px;
  border:1px solid var(--border);
  transition:all 0.3s ease;
  position:relative;
}

.testi-card:hover{
  border-color:rgba(212,83,10,0.3);
  box-shadow:0 12px 40px rgba(212,83,10,0.08);
  transform:translateY(-3px);
}

.testi-quote-mark{
  font-family:'Lora',serif;
  font-size:48px;
  color:var(--orange);
  opacity:0.2;
  line-height:1;
  margin-bottom:-8px;
  font-style:italic;
}

.testi-stars{
  color:#F5C842;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.testi-text{
  font-size:14px;
  color:#3A4455;
  line-height:1.7;
  margin-bottom:18px;
  font-style:italic;
}

.testi-author{
  display:flex;
  align-items:center;
  gap:12px;
}

.testi-avatar{
  width:42px;height:42px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:700;color:white;
  flex-shrink:0;
}

.testi-name{font-size:14px;font-weight:700;color:var(--navy)}
.testi-trip{font-size:12px;color:var(--muted)}

.testi-destination-badge{
  position:absolute;
  top:16px;right:16px;
  background:rgba(212,83,10,0.08);
  border:1px solid rgba(212,83,10,0.2);
  color:var(--orange);
  font-size:10px;font-weight:700;
  padding:3px 8px;border-radius:50px;
  letter-spacing:0.5px;
  text-transform:uppercase;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-section{
  padding:64px 40px;
  background:var(--cream);
  max-width:100%;
}

.why-inner{
  max-width:1160px;
  margin:0 auto;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.why-card{
  background:#fff;
  border-radius:16px;
  padding:28px 22px;
  border:1px solid var(--border);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.why-card::before{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--orange),var(--gold));
  transform:scaleX(0);
  transition:transform 0.3s ease;
  transform-origin:left;
}

.why-card:hover::before{transform:scaleX(1)}
.why-card:hover{border-color:rgba(212,83,10,0.2);box-shadow:0 8px 32px rgba(212,83,10,0.08)}

.why-icon-wrap{
  width:48px;height:48px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  margin-bottom:16px;
}

.why-card-title{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:8px}
.why-card-text{font-size:13px;color:var(--muted);line-height:1.7}

/* ── BOTTOM CTA FORM ─────────────────────────────────────── */
.bottom-cta{
  background:var(--navy);
  padding:64px 40px;
  position:relative;
  overflow:hidden;
}

.bottom-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(212,83,10,0.1) 0%,transparent 60%);
}

.bottom-cta-inner{
  max-width:700px;
  margin:0 auto;
  position:relative;
  z-index:1;
  text-align:center;
}

.bottom-cta-title{
  font-family:'Lora',serif;
  font-size:clamp(26px,3.5vw,40px);
  font-weight:700;
  color:#fff;
  line-height:1.2;
  margin-bottom:12px;
}

.bottom-cta-title span{color:var(--orange2)}
.bottom-cta-sub{font-size:15px;color:rgba(255,255,255,0.55);margin-bottom:36px;line-height:1.6}

.bottom-form{
  background:#fff;
  border-radius:18px;
  padding:28px;
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
  box-shadow:0 24px 60px rgba(0,0,0,0.3);
}

.bottom-form .form-group{
  flex:1;
  min-width:140px;
  margin-bottom:0;
}

.bottom-form .form-group label{
  font-size:10px;
  letter-spacing:0.8px;
  text-transform:uppercase;
  font-weight:700;
  color:var(--navy);
  display:block;
  margin-bottom:5px;
}

.bottom-form input,
.bottom-form select{
  width:100%;
  padding:11px 13px;
  border:1.5px solid var(--border);
  border-radius:9px;
  font-size:14px;
  font-family:'Sora',sans-serif;
  color:var(--navy);
  background:#FAFAF8;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  transition:border-color 0.2s,box-shadow 0.2s;
}

.bottom-form input:focus,
.bottom-form select:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(212,83,10,0.1);
}

.bottom-form select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235A6475'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  padding-right:32px;
  cursor:pointer;
}

.bottom-submit{
  background:var(--orange);
  color:white;
  border:none;
  padding:12px 24px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  font-family:'Sora',sans-serif;
  white-space:nowrap;
  transition:all 0.25s ease;
  flex-shrink:0;
  height:44px;
}

.bottom-submit:hover{background:var(--orange2);transform:translateY(-1px)}

.bottom-cta-alt{
  margin-top:24px;
  font-size:14px;
  color:rgba(255,255,255,0.5);
  display:flex;align-items:center;justify-content:center;gap:20px;
  flex-wrap:wrap;
}

.bottom-alt-link{
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  display:flex;align-items:center;gap:6px;
  font-weight:600;
  transition:color 0.2s;
}
.bottom-alt-link:hover{color:#fff}

/* ── PRIVACY POLICY NOTE ─────────────────────────────────── */
.privacy-note{
  font-size:11px;
  color:rgba(255,255,255,0.3);
  text-align:center;
  margin-top:12px;
}
.privacy-note a{color:rgba(255,255,255,0.5);text-decoration:underline}

/* ── MOBILE STICKY BAR ───────────────────────────────────── */
.mobile-sticky{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  background:#fff;
  border-top:1px solid var(--border);
  padding:10px 16px;
  z-index:999;
  box-shadow:0 -4px 20px rgba(0,0,0,0.12);
}

.mobile-sticky-inner{
  display:flex;
  gap:8px;
  max-width:480px;
  margin:0 auto;
}

.mob-btn{
  flex:1;
  padding:12px 8px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  font-family:'Sora',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:5px;
  transition:all 0.2s ease;
  border:none;
}

.mob-btn-call{background:var(--navy);color:#fff}
.mob-btn-call:hover{background:var(--navy2)}
.mob-btn-wa{background:#25D366;color:#fff}
.mob-btn-wa:hover{background:#1fba59}
.mob-btn-quote{background:var(--orange);color:#fff}
.mob-btn-quote:hover{background:var(--orange2)}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer{
  background:#080F1A;
  padding:22px 40px;
  text-align:center;
}

.footer-inner{
  max-width:1160px;
  margin:0 auto;
}

.footer-logo{
  font-family:'Lora',serif;
  font-size:18px;
  font-weight:700;
  color:rgba(255,255,255,0.7);
  margin-bottom:10px;
}
.footer-logo span{color:var(--orange2)}

.footer-links{
  display:flex;justify-content:center;gap:24px;flex-wrap:wrap;margin-bottom:10px;
}

.footer-links a{
  font-size:12px;
  color:rgba(255,255,255,0.35);
  text-decoration:none;
  transition:color 0.2s;
}
.footer-links a:hover{color:rgba(255,255,255,0.6)}

.footer-copy{
  font-size:12px;
  color:rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:960px){
  .hero-body{
    grid-template-columns:1fr;
    gap:32px;
    padding:40px 24px 100px;
    align-items:start;
  }
  .form-wrap{width:100%;max-width:480px;margin:0 auto}
  .testi-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .proof-divider{display:none}
  .mobile-sticky{display:block}
  .urgency-bar{font-size:12px}
}

@media(max-width:600px){
  .testimonials-section,.why-section,.bottom-cta{padding:48px 20px}
  .trust-row{flex-wrap:nowrap;overflow-x:auto}
  .trust-item{min-width:90px}
  .bottom-form{flex-direction:column}
  .bottom-form .form-group{min-width:100%;width:100%}
  .bottom-submit{width:100%}
  .why-grid{grid-template-columns:1fr}
  .proof-inner{flex-direction:column;align-items:flex-start}
  .proof-strip{padding:16px 20px}
  .footer{padding:20px}
  .footer-links{gap:14px}
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* Hero left side — staggered entrance */
.hero-eyebrow{animation:fadeUp 0.5s ease both}
.hero-title{animation:fadeUp 0.6s 0.1s ease both}
.hero-sub{animation:fadeUp 0.6s 0.2s ease both}
.trust-row{animation:fadeUp 0.6s 0.3s ease both}
.hero-btns{animation:fadeUp 0.6s 0.4s ease both}
/* Form card: no animation — must always be visible immediately */
.form-card{opacity:1;transform:none}
