/* ============================================================
   TARREY TROPICALS & WILD TOURS — Core Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@1,400;1,500;1,600&display=swap');

:root{
  --green: #1A6B3C;
  --green-dark: #124d2b;
  --gold: #C9A84C;
  --gold-bright: #F0C040;
  --dark: #1C1C1C;
  --darker: #111111;
  --cream: #FDF8EE;
  --brown: #7B4F1E;
  --white: #FFFFFF;
  --grey-text: #b9b9b9;
  --grey-line: rgba(255,255,255,0.12);

  --font-head: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-tag: 'Lora', serif;

  --radius: 10px;
  --shadow: 0 12px 30px rgba(0,0,0,0.12);
  --container: 1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  margin:0 0 .5em 0;
  line-height:1.15;
  font-weight:700;
}
p{ margin:0 0 1em 0; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow{
  font-family: var(--font-body);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
}
.tag-italic{
  font-family: var(--font-tag);
  font-style:italic;
}
section{ padding: 84px 0; }
@media (max-width:768px){ section{ padding:56px 0; } }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{
  background: var(--gold-bright);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(240,192,64,0.35);
}
.btn-gold:hover{ box-shadow: 0 12px 26px rgba(240,192,64,0.5); }
.btn-outline{
  background:transparent;
  color:#fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover{ background:rgba(255,255,255,0.12); }
.btn-green{
  background: var(--green);
  color:#fff;
  box-shadow: 0 8px 20px rgba(26,107,60,0.3);
}
.btn-green:hover{ background: var(--green-dark); }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding:10px 20px; font-size:.75rem; }

/* ---------- Navbar ---------- */
.navbar{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
}
.nav-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}
.brand img{
  width:46px; height:46px;
  border-radius:50%;
  object-fit:cover;
  border: 2px solid var(--gold);
  background:#fff;
}
.brand-name{
  font-family: var(--font-head);
  font-size:1.15rem;
  letter-spacing:.08em;
  font-weight:700;
}
.brand-name span{ color: var(--gold); }

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links > li{ position:relative; }
.nav-links a.nav-link{
  color:#fff;
  font-size:.86rem;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding: 28px 2px;
  display:inline-block;
  transition: color .15s ease;
}
.nav-links a.nav-link:hover, .nav-links li.open > a.nav-link{ color: var(--gold); }

.dropdown{
  position:absolute;
  top: 100%;
  left:0;
  min-width:200px;
  background: var(--dark);
  border: 1px solid var(--grey-line);
  border-top: 2px solid var(--gold);
  padding: 10px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: all .16s ease;
}
.nav-links li:hover .dropdown,
.nav-links li.open .dropdown{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown a{
  display:block;
  padding: 10px 22px;
  color: #eee;
  font-size:.82rem;
  font-weight:500;
}
.dropdown a:hover{ background: rgba(201,168,76,0.12); color: var(--gold); }

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

.mobile-only-cta{ display:none; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.hamburger span{
  width:24px; height:2px; background:#fff; display:block; border-radius:2px;
}

@media (max-width: 980px){
  .nav-links{
    position:fixed;
    top:78px; left:0; right:0; bottom:0;
    background: var(--dark);
    flex-direction:column;
    align-items:flex-start;
    padding: 20px 24px 40px;
    gap:0;
    overflow-y:auto;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a.nav-link{ padding:16px 0; width:100%; border-bottom:1px solid var(--grey-line); }
  .dropdown{
    position:static; opacity:1; visibility:visible; transform:none;
    display:none; box-shadow:none; border:none; background:rgba(255,255,255,0.03);
    margin-bottom:8px;
  }
  li.open .dropdown{ display:block; }
  .hamburger{ display:flex; }
  .mobile-only-cta{ display:block; margin-top:20px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
  padding-top: 78px;
}
.hero-bg-img, .page-hero-bg-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:0;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  z-index:1;
  background: linear-gradient(105deg, rgba(26,107,60,0.82) 0%, rgba(17,17,17,0.72) 45%, rgba(123,79,30,0.75) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:720px; }
.hero .eyebrow{ color: var(--gold); margin-bottom:16px; }
.hero h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
.hero .hero-tag{ font-size:1.2rem; color: var(--gold); margin: 6px 0 22px; }
.hero p.lead{ font-size:1.05rem; color:#f2f2f2; max-width:560px; margin-bottom:32px; }
.hero-btns{ display:flex; gap:16px; flex-wrap:wrap; }

/* dark section hero variant for interior pages */
.page-hero{
  position:relative;
  padding: 170px 0 70px;
  color:#fff;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  z-index:1;
  background: linear-gradient(120deg, rgba(26,107,60,0.88), rgba(17,17,17,0.8));
}
.page-hero.earthy::before{
  background: linear-gradient(120deg, rgba(17,17,17,0.88), rgba(123,79,30,0.75));
}
.page-hero.navy::before{
  background: linear-gradient(120deg, rgba(17,17,17,0.92), rgba(21,45,66,0.85));
}
.page-hero-content{ position:relative; z-index:2; max-width:760px; }
.page-hero.with-breadcrumb{ padding-top:70px; }
.page-hero .eyebrow{ color: var(--gold); }
.page-hero p{ color:#f0f0f0; max-width:600px; }

/* ---------- Feature Cards ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:980px){ .grid-3{grid-template-columns:1fr 1fr;} .grid-4{grid-template-columns:1fr 1fr;} }
@media (max-width:640px){ .grid-3,.grid-2,.grid-4{ grid-template-columns:1fr; } }

.feature-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon{
  width:52px; height:52px;
  border-radius:50%;
  background: rgba(26,107,60,0.1);
  color: var(--green);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:18px;
}
.feature-icon svg{ width:24px; height:24px; stroke-width:1.75; }
.feature-card h3{ font-size:1.15rem; margin-bottom:10px; }
.feature-card p{ font-size:.92rem; color:#4a4a4a; margin:0; }

.section-head{ text-align:center; max-width:680px; margin: 0 auto 48px; }
.section-head .eyebrow{ color: var(--green); margin-bottom:10px; }
.section-head h2{ font-size: clamp(1.8rem,3.4vw,2.6rem); }
.section-head p{ color:#555; margin-top:14px; }

/* ---------- Section variants ---------- */
.section-cream{ background: var(--cream); }
.section-white{ background:#fff; }
.section-green{ background: var(--green); color:#fff; }
.section-dark{ background: var(--dark); color:#fff; }
.section-earth{
  background: linear-gradient(180deg, #17130d, var(--brown));
  color:#fff;
}
.section-navy{ background: linear-gradient(160deg,#0d1b26,#1c1c1c); color:#fff; }

/* ---------- Destination strip ---------- */
.dest-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px;
}
@media (max-width:768px){ .dest-strip{ grid-template-columns:1fr 1fr; } }
.dest-item{
  text-align:center;
  padding: 26px 14px;
  background:#fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform .2s ease;
}
.dest-item:hover{ transform: translateY(-3px); }
.dest-item .ico{ font-size:1.8rem; margin-bottom:10px; color: var(--green); display:flex; justify-content:center; }
.dest-item .ico svg{ width:28px; height:28px; stroke-width:1.75; }
.dest-item span{ font-weight:600; font-size:.85rem; }

/* ---------- Quote box ---------- */
.quote-box{
  background: var(--green);
  color:#fff;
  border-radius: var(--radius);
  padding: 34px 36px;
  font-family: var(--font-tag);
  font-style:italic;
  font-size:1.1rem;
  border-left: 6px solid var(--gold);
}

/* ---------- Split hero (About) ---------- */
.split-hero{
  position:relative;
  height: 420px;
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-top:78px;
}
.split-hero .half{ background-size:cover; background-position:center; position:relative; }
.split-hero .half::after{ content:""; position:absolute; inset:0; background:rgba(17,17,17,0.35); }
.split-hero .left::after{ background: linear-gradient(90deg, rgba(26,107,60,0.55), rgba(17,17,17,0.3)); }
.split-hero .right::after{ background: linear-gradient(270deg, rgba(123,79,30,0.55), rgba(17,17,17,0.3)); }
.split-hero-title{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:#fff; z-index:2;
}
.split-hero-title h1{ font-size: clamp(2rem,4.4vw,3.2rem); text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
@media (max-width:768px){ .split-hero{ height:320px; } }

/* ---------- Category cards (Packages overview) ---------- */
.cat-card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
}
.cat-card .cat-top{
  padding: 30px 28px 18px;
  border-bottom: 3px solid var(--gold);
}
.cat-card .cat-top .ico{ font-size:2rem; margin-bottom:12px; color: var(--gold); }
.cat-card .cat-top .ico svg{ width:32px; height:32px; stroke-width:1.6; }
.cat-card h3{ font-size:1.3rem; margin-bottom:4px; }
.cat-card .price{ color: var(--green); font-weight:700; font-size:.9rem; margin-top:10px; }
.cat-card p{ color:#555; font-size:.92rem; }
.cat-card .cat-foot{ padding: 0 28px 28px; margin-top:auto; }

/* ---------- Inclusions strip ---------- */
.incl-strip{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin: 36px 0 10px;
}
.incl-chip{
  display:flex; align-items:center; gap:8px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  padding:10px 18px;
  border-radius:999px;
  font-size:.83rem;
  font-weight:600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.incl-chip.dark{ background: rgba(255,255,255,0.06); color:#fff; border-color: rgba(255,255,255,0.15); }
.incl-chip .dot{ color: var(--green); font-weight:800; display:inline-flex; }
.incl-chip .dot svg{ width:15px; height:15px; stroke-width:3; }
.incl-chip.dark .dot{ color: var(--gold-bright); }
.incl-chip.no .dot{ color:#c0392b; }

/* ---------- Hotel cards ---------- */
.hotel-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; margin-top:40px; }
@media (max-width:860px){ .hotel-grid{ grid-template-columns:1fr; } }

.hotel-card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  color: var(--dark);
}
.hotel-img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.hotel-head{
  padding: 16px 22px;
  color:#fff;
  display:flex; justify-content:space-between; align-items:center;
  font-weight:700;
  font-size:.92rem;
}
.hotel-head.ai{ background: var(--green); }
.hotel-head.fb{ background:#C9752F; }
.hotel-head.hb{ background:#2E6FA6; }
.hotel-head .plan{ font-size:.72rem; text-transform:uppercase; background:rgba(255,255,255,0.22); padding:4px 10px; border-radius:999px; }
.hotel-body{ padding: 20px 22px 24px; }
.hotel-body h3{ font-size:1.1rem; margin-bottom:4px; }
.hotel-dates{ font-size:.76rem; color:#888; margin-bottom:10px; font-weight:600; text-transform:uppercase; letter-spacing:.03em; }
.hotel-body p{ font-size:.88rem; color:#555; margin-bottom:16px; }
.hotel-rates{ display:flex; flex-wrap:wrap; gap:8px 18px; margin-bottom:16px; font-size:.86rem; font-weight:700; color: var(--dark); }
.hotel-rates span.lbl{ font-weight:500; color:#888; margin-right:4px; }
.hotel-foot{ display:flex; justify-content:flex-end; }

/* Fly-in multi column price table */
.price-table{ width:100%; border-collapse:collapse; margin-top:16px; font-size:.86rem; }
.price-table th, .price-table td{ padding:10px 12px; text-align:left; border-bottom:1px solid rgba(0,0,0,0.06); }
.price-table th{ background: rgba(26,107,60,0.06); font-weight:700; color: var(--green); }
.price-table tr:last-child td{ border-bottom:none; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:0; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-left{ background: var(--green); color:#fff; padding: 48px 42px; }
.contact-left .cinfo{ display:flex; gap:14px; margin-bottom:22px; }
.contact-left .cinfo .ico{ font-size:1.3rem; }
.contact-left .cinfo .ico svg{ width:22px; height:22px; stroke-width:1.75; }
.contact-left .cinfo strong{ display:block; margin-bottom:2px; }
.contact-left .cinfo span{ font-size:.88rem; color: rgba(255,255,255,0.85); }
.contact-left .quote-box{ background: rgba(255,255,255,0.12); border-left-color: var(--gold-bright); margin-top:30px; }
.contact-right{ background:#fff; padding: 48px 42px; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:.8rem; font-weight:700; margin-bottom:6px; text-transform:uppercase; letter-spacing:.03em; color:#555; }
.form-field input, .form-field select, .form-field textarea{
  width:100%;
  padding: 13px 14px;
  border-radius:8px;
  border: 1.5px solid #e2ddd0;
  font-family: var(--font-body);
  font-size:.92rem;
  background: var(--cream);
  color: var(--dark);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none; border-color: var(--green);
}
.form-field textarea{ resize:vertical; min-height:110px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--dark); color: var(--grey-text); padding-top: 64px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom: 44px; }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ color:#fff; font-family: var(--font-body); font-size:.86rem; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px; }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ width:44px; height:44px; border-radius:50%; border:2px solid var(--gold); }
.footer-brand-name{ color:#fff; font-family: var(--font-head); font-size:1.1rem; }
.footer-tagline{ color: var(--gold); font-family: var(--font-tag); font-style:italic; margin-bottom:14px; }
.footer-desc{ font-size:.87rem; line-height:1.7; }
.footer-grid ul{ list-style:none; padding:0; margin:0; }
.footer-grid li{ margin-bottom:11px; }
.footer-grid a{ font-size:.87rem; transition:color .15s ease; }
.footer-grid a:hover{ color: var(--gold); }
.footer-soon{ font-style:italic; color:#777; font-size:.85rem; }
.footer-bottom{
  background: var(--darker);
  padding: 18px 0;
  margin-top: 20px;
}
.footer-credits{
  font-size:.72rem;
  color:#777;
  padding: 18px 0 0;
  border-top: 1px solid var(--grey-line);
  line-height:1.9;
}
.footer-credits a{ color:#999; text-decoration:underline; text-underline-offset:2px; }
.footer-credits a:hover{ color: var(--gold); }
.footer-bottom .container{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:.78rem; color:#888; }

/* ---------- WhatsApp Floating Button ---------- */
.wa-float{
  position:fixed;
  bottom:24px; right:24px;
  z-index:999;
  background:#25D366;
  color:#fff;
  width:58px; height:58px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  font-size:1.6rem;
  transition: transform .2s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* utility */
.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }
.small-muted{ font-size:.78rem; color:#999; }
/* ---------- FAQ Accordion ---------- */
.faq-section{ max-width:820px; margin:0 auto; }
.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.07);
  border-radius:10px;
  margin-bottom:12px;
  overflow:hidden;
}
.faq-item summary{
  padding:18px 22px;
  font-weight:700;
  font-size:.98rem;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  font-size:1.3rem;
  color:var(--green);
  flex-shrink:0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{
  padding:0 22px 20px;
  color:#555;
  font-size:.92rem;
  margin:0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar{
  background: var(--cream);
  padding:14px 0;
  margin-top:78px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.breadcrumb-list{
  list-style:none; display:flex; flex-wrap:wrap; align-items:center;
  gap:6px; margin:0; padding:0; font-size:.8rem; color:#888;
}
.breadcrumb-list a{ color:#888; }
.breadcrumb-list a:hover{ color: var(--green); }
.breadcrumb-list li:not(:last-child)::after{ content:"/"; margin-left:6px; color:#ccc; }
.breadcrumb-list li[aria-current]{ color: var(--dark); font-weight:600; }

/* ---------- Related Packages strip ---------- */
.related-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:768px){ .related-strip{ grid-template-columns:1fr; } }
.related-card{
  background:#fff; border-radius:10px; padding:22px; text-align:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.05); transition: transform .2s ease;
}
.related-card:hover{ transform: translateY(-3px); }
.related-card h4{ margin-bottom:6px; font-size:1.05rem; }
.related-card p{ font-size:.85rem; color:#666; margin-bottom:14px; }

.italic{ font-style:italic; }
.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.section-head.on-dark p{ color: #d8d8d8; }
.section-head.on-dark .eyebrow{ color: var(--gold); }
