/* ==========================================================================
   India Golden Triangle Tours — redesign stylesheet
   Loaded alongside the existing bootstrap.min.css / font-awesome.css so the
   old class names (container, row, col-*, form-control, btn, etc.) keep
   working. This file only adds new component styles on top of Bootstrap 3.
   ========================================================================== */

:root{
  --ink:        #1f2a24;
  --ink-soft:   #4b564f;
  --paper:      #ffffff;
  --paper-soft: #f7f5f0;
  --line:       #e7e2d8;
  --brand:      #c2571b;      /* terracotta / burnt orange - primary CTA */
  --brand-dark: #a3480f;
  --accent:     #17573f;      /* deep heritage green */
  --accent-soft:#e9f2ee;
  --gold:       #caa24a;
  --shadow:     0 10px 30px rgba(31,42,36,.10);
  --shadow-sm:  0 4px 14px rgba(31,42,36,.08);
  --radius:     14px;
  --radius-sm:  8px;
}

body{
  font-family: 'Inter', -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
h1,h2,h3,h4,.heading-font{
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
a{ color: var(--accent); }
a:hover, a:focus{ color: var(--brand); text-decoration:none; }

.container{ max-width: 1200px; }

/* ---------- Buttons ---------- */
.btn-brand{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--brand); color:#fff !important; border:none;
  padding: 12px 26px; border-radius: 999px; font-weight:600;
  box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .15s ease;
}
.btn-brand:hover{ background: var(--brand-dark); color:#fff; transform: translateY(-1px); }
.btn-outline-light{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.08); color:#fff !important;
  border:1.5px solid rgba(255,255,255,.7); padding: 11px 24px; border-radius: 999px; font-weight:600;
}
.btn-outline-light:hover{ background: rgba(255,255,255,.18); color:#fff; }
.btn-whatsapp{
  display:inline-flex; align-items:center; gap:8px;
  background:#1fae5b; color:#fff !important; padding: 10px 20px; border-radius:999px; font-weight:600;
}
.btn-whatsapp:hover{ background:#178c48; color:#fff; }

/* ---------- Top utility / header ---------- */
.gt-topbar{
  background: var(--ink); color:#d8ded9; font-size:13px; padding:6px 0;
}
.gt-topbar a{ color:#d8ded9; margin-right:18px; }
.gt-topbar a:hover{ color:#fff; }
.gt-topbar .fa{ margin-right:5px; }

.gt-header{
  background:#fff; border-bottom:1px solid var(--line);
  padding: 14px 0;
}
.gt-header .navbar-brand{
  font-family:'Fraunces', serif; font-size:19px; font-weight:600; color:var(--ink) !important;
  padding:0; height:auto; line-height:1.1; display:flex; align-items:center; gap:9px; flex:0 0 auto;
}
.gt-header .navbar-brand small{
  display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:11px; letter-spacing:.03em; color:var(--ink-soft);
}
.gt-header .navbar-brand span{ color: var(--brand); }
.gt-logo-mark{ flex:0 0 auto; display:inline-flex; }
.gt-logo-mark svg{ display:block; }
.gt-brand-text{ display:inline-block; white-space:nowrap; }
.gt-header .container{ flex-wrap:nowrap; gap:18px; }
.gt-nav{ margin-top:6px; flex:1 1 auto; min-width:0; }
.gt-nav ul{ list-style:none; margin:0; padding:0; display:flex; gap:17px; align-items:center; flex-wrap:nowrap; white-space:nowrap; justify-content:center; }
.gt-nav a{ color: var(--ink); font-weight:500; font-size:13.5px; padding-bottom:4px; border-bottom:2px solid transparent; }
.gt-nav a:hover, .gt-nav li.active > a{ color: var(--brand); border-bottom-color:var(--brand); }
.gt-header-cta{ display:flex; align-items:center; gap:8px; justify-content:flex-end; flex:0 0 auto; }
.gt-header-cta .btn-brand, .gt-header-cta .btn-whatsapp{ padding:10px 16px; font-size:13.5px; white-space:nowrap; }
.navbar-toggle-gt{ display:none; }

/* Nav dropdown (Destinations) - real anchor links only, no invented pages */
.gt-nav li.has-dropdown{ position:relative; }
.gt-nav li.has-dropdown > a .fa{ font-size:10px; margin-left:4px; }
.gt-nav .dropdown-panel{
  display:none; position:absolute; top:100%; left:50%; transform:translateX(-50%);
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding:8px; min-width:170px; z-index:30; margin-top:10px;
}
.gt-nav li.has-dropdown:hover .dropdown-panel{ display:block; }
.gt-nav .dropdown-panel a{ display:block; padding:8px 10px; font-size:13.5px; border-bottom:none; border-radius:6px; }
.gt-nav .dropdown-panel a:hover{ background: var(--paper-soft); }

@media (max-width: 991px){
  .gt-nav ul{ display:none; }
  .navbar-toggle-gt{ display:inline-flex; }
}

/* ---------- Hero ---------- */
.gt-hero{
  position:relative; min-height: 460px; display:flex; align-items:center;
  background-size:cover; background-position:center;
  color:#fff;
}
.gt-hero::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(20,26,22,.82) 0%, rgba(20,26,22,.55) 45%, rgba(20,26,22,.25) 100%);
}
.gt-hero .container{ position:relative; z-index:2; }
.gt-hero .eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:12.5px; font-weight:600; color:var(--gold);
}
.gt-hero h1{ color:#fff; font-size:44px; margin:10px 0 16px; }
.gt-hero h1 em{ font-style:normal; color:var(--gold); }
.gt-hero p.lead{ color:#eef0ea; max-width:560px; font-size:16.5px; }
.gt-hero .hero-badges{ margin-top:22px; display:flex; gap:22px; flex-wrap:wrap; }
.gt-hero .hero-badges .badge-item{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:#eef0ea; }
.gt-hero .hero-badges .fa{
  width:32px; height:32px; border-radius:50%; border:1px solid rgba(255,255,255,.5);
  display:inline-flex; align-items:center; justify-content:center; font-size:14px;
}
.gt-hero .hero-actions{ margin-top:26px; display:flex; gap:14px; flex-wrap:wrap; }

.gt-hero-inner{ min-height: 300px; }
.gt-hero-inner h1{ font-size:34px; }
.gt-breadcrumb{ font-size:13px; color:#eef0ea; opacity:.9; margin-top:6px; }
.gt-breadcrumb a{ color:#eef0ea; }
.gt-breadcrumb a:hover{ color:var(--gold); }

/* Breadcrumb sitting in the white body (listing page), not over the hero image */
.gt-breadcrumb-bar{ font-size:13px; color:var(--ink-soft); padding:16px 0 0; }
.gt-breadcrumb-bar a{ color:var(--ink-soft); }
.gt-breadcrumb-bar a:hover{ color:var(--brand); }

/* Quickfacts pills sitting inside a dark hero image (detail page) */
.gt-quickfacts-hero{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.gt-quickfacts-hero .qf{
  display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.4);
  color:#fff; border-radius:999px; padding:7px 14px; font-size:12.5px; font-weight:600;
}

/* Listing page intro row: heading + need-help card */
.gt-listing-intro{ display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; padding:18px 0 22px; }
.gt-listing-intro p{ color:var(--ink-soft); font-size:14px; max-width:560px; margin:0; }

/* Card description snippet (listing) */
.gt-tour-card .desc{ font-size:12.5px; color:var(--ink-soft); line-height:1.6; margin:0 0 10px; }

/* Bottom icon strip (listing page, above footer) */
.gt-icons-strip{ border-top:1px solid var(--line); margin-top:30px; padding-top:26px; }
.gt-icons-strip .row{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; }
.gt-icons-strip-item{ display:flex; align-items:center; gap:10px; flex:1 1 180px; }
.gt-icons-strip-item .icon{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:16px; flex:0 0 auto; }
.gt-icons-strip-item strong{ display:block; font-size:13px; }
.gt-icons-strip-item span{ font-size:11.5px; color:var(--ink-soft); }

/* Detail-page "need help" sidebar card (replaces a fake trust-badge list with a
   real contact/help card - generic icon avatar, not a stock photo of a "person") */
.gt-help-mini{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.gt-help-mini .avatar{
  width:44px; height:44px; border-radius:50%; background: var(--accent-soft); color:var(--accent);
  display:flex; align-items:center; justify-content:center; font-size:18px; flex:0 0 auto;
}
.gt-help-mini strong{ display:block; font-size:14px; }
.gt-help-mini span{ font-size:12px; color:var(--ink-soft); }
.gt-help-links{ display:flex; gap:8px; }
.gt-help-links a{ flex:1; text-align:center; border:1px solid var(--line); border-radius: var(--radius-sm); padding:9px 4px; font-size:12px; font-weight:600; color:var(--ink); }
.gt-help-links a:hover{ border-color:var(--brand); color:var(--brand); }
.gt-help-links a.wa{ background:#1fae5b; color:#fff !important; border-color:#1fae5b; }
.gt-help-links a .fa{ display:block; margin-bottom:3px; font-size:14px; }

/* "Customize This Tour" card (main column, alongside Included/Not Included) */
.gt-customize-card{ background: var(--paper-soft); border:1px solid var(--line); border-radius: var(--radius-sm); padding:18px; text-align:center; }
.gt-customize-card .icon{ width:38px; height:38px; border-radius:8px; background:#fff; border:1px solid var(--line); color:var(--brand); display:inline-flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:10px; }
.gt-customize-card h5{ font-size:14px; margin:0 0 8px; }
.gt-customize-card p{ font-size:12.5px; color:var(--ink-soft); margin:0 0 14px; }
.gt-customize-card a{ display:inline-block; border:1px solid var(--ink); border-radius: var(--radius-sm); padding:8px 16px; font-size:12.5px; font-weight:600; color:var(--ink); }
.gt-customize-card a:hover{ border-color:var(--brand); color:var(--brand); }
.gt-inclusions-grid.with-customize{ grid-template-columns:1fr 1fr 1fr; }
@media (max-width:900px){ .gt-inclusions-grid.with-customize{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .gt-inclusions-grid.with-customize{ grid-template-columns:1fr; } }

/* ---------- Enquiry card (homepage) ---------- */
.gt-enquiry-card{
  background:#fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; position:relative; z-index:3;
}
.gt-enquiry-card h4{ margin-top:0; font-size:19px; }
.gt-enquiry-card p{ color:var(--ink-soft); font-size:13.5px; margin-bottom:16px; }
.gt-enquiry-card .form-control{
  border-radius: var(--radius-sm); border:1px solid var(--line); box-shadow:none; height:42px; font-size:14px;
}
.gt-enquiry-card textarea.form-control{ height:auto; }
.gt-enquiry-card .form-group{ margin-bottom:10px; }
.gt-enquiry-card .btn-brand{ width:100%; justify-content:center; margin-top:6px; }
.gt-enquiry-note{ font-size:11.5px; color:var(--ink-soft); margin-top:10px; text-align:center; }
.gt-enquiry-note .fa{ margin-right:4px; }

/* ---------- Section headings ---------- */
.gt-section{ padding: 56px 0; }
.gt-section-tight{ padding: 40px 0; }
.gt-section-title{ font-size:28px; margin-bottom:6px; }
.gt-section-sub{ color:var(--ink-soft); font-size:14.5px; max-width:560px; }
.gt-section-head{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:12px; margin-bottom:26px; }
.gt-link-more{ font-weight:600; font-size:14px; white-space:nowrap; }
.gt-link-more .fa{ margin-left:5px; }
.bg-soft{ background: var(--paper-soft); }

/* ---------- Tour cards ---------- */
.gt-tour-card{
  background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm);
  margin-bottom:26px; transition: transform .15s ease, box-shadow .15s ease; height:100%;
  border:1px solid var(--line);
}
.gt-tour-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.gt-tour-card .thumb{ position:relative; height:190px; overflow:hidden; }
.gt-tour-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.gt-tour-card .thumb .ribbon{
  position:absolute; top:12px; left:12px; background:var(--brand); color:#fff; font-size:11px; font-weight:700;
  padding:4px 10px; border-radius:999px; text-transform:uppercase; letter-spacing:.03em;
}
.gt-tour-card .body{ padding:18px; }
.gt-tour-card h3{ font-size:17px; margin:0 0 8px; line-height:1.3; }
.gt-tour-card h3 a{ color:var(--ink); }
.gt-tour-card h3 a:hover{ color:var(--brand); }
.gt-tour-card .meta{ font-size:12.5px; color:var(--ink-soft); margin-bottom:10px; }
.gt-tour-card .meta .fa{ margin-right:5px; color:var(--accent); }
.gt-tour-card .meta span{ margin-right:14px; }
.gt-tour-card .price-row{ display:flex; justify-content:space-between; align-items:center; margin-top:14px; padding-top:12px; border-top:1px dashed var(--line); }
.gt-tour-card .price{ font-size:12px; color:var(--ink-soft); }
.gt-tour-card .price strong{ display:block; font-size:16px; color:var(--ink); font-family:'Fraunces',serif; }
.gt-tour-card .price small{ font-weight:400; font-size:11px; }
.gt-tour-card .view-link{ font-weight:600; font-size:13px; }
.gt-tour-card .view-link .fa{ margin-left:4px; }

/* Price on request styling */
.price-on-request{ color: var(--accent); font-weight:600; font-size:13.5px; }

/* ---------- Destination cards ---------- */
.gt-dest-card{ position:relative; border-radius: var(--radius); overflow:hidden; height:190px; margin-bottom:20px; box-shadow:var(--shadow-sm); }
.gt-dest-card img{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
.gt-dest-card:hover img{ transform: scale(1.06); }
.gt-dest-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.72) 100%); }
.gt-dest-card .cap{ position:absolute; left:0; right:0; bottom:0; padding:14px 16px; color:#fff; z-index:2; }
.gt-dest-card .cap h4{ color:#fff; margin:0 0 3px; font-size:16.5px; }
.gt-dest-card .cap small{ color:#e7e2d8; font-size:12px; }

/* ---------- Why us ---------- */
.gt-why{ background: var(--accent); color:#fff; padding: 46px 0; }
.gt-why h2{ color:#fff; }
.gt-why-item{ text-align:center; padding: 0 10px; }
.gt-why-item .fa, .gt-why-item .icon-wrap{
  width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.35);
  display:inline-flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:12px; color:var(--gold);
}
.gt-why-item h5{ color:#fff; font-weight:600; font-size:14.5px; margin-bottom:4px; }
.gt-why-item p{ color:#d8ded9; font-size:12.5px; margin:0; }

/* ---------- Closing CTA banner ---------- */
.gt-cta-banner{ position:relative; min-height: 300px; display:flex; align-items:center; background-size:cover; background-position:center; color:#fff; }
.gt-cta-banner::before{ content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,26,22,.85), rgba(20,26,22,.25)); }
.gt-cta-banner .container{ position:relative; z-index:2; }
.gt-cta-banner h2{ color:#fff; font-size:30px; }
.gt-cta-banner p{ color:#eef0ea; max-width:420px; }
.gt-cta-tag{ font-family:'Fraunces',serif; font-style:italic; color:var(--gold); font-size:15px; text-align:right; }

/* ---------- Footer ---------- */
.gt-footer{ background:#121a15; color:#c9cfc9; padding: 46px 0 0; }
.gt-footer h3{ color:#fff; font-size:15px; margin-bottom:16px; }
.gt-footer p, .gt-footer li, .gt-footer a{ color:#a9b2a8; font-size:13.5px; }
.gt-footer a:hover{ color:#fff; }
.gt-footer ul{ list-style:none; padding:0; margin:0; }
.gt-footer li{ margin-bottom:9px; }
.gt-footer .brand{ font-family:'Fraunces',serif; color:#fff; font-size:19px; margin-bottom:10px; }
.gt-footer .brand small{ display:block; font-family:'Inter',sans-serif; font-size:11px; color:#8b948a; }
.gt-footer .social a{
  display:inline-flex; width:34px; height:34px; border-radius:50%; border:1px solid #35403a;
  align-items:center; justify-content:center; margin-right:8px;
}
.gt-footer-bottom{ border-top:1px solid #26302a; margin-top:30px; padding:16px 0; font-size:12.5px; color:#8b948a; }
.gt-footer-bottom a{ color:#8b948a; }
.gt-disclaimer{ font-size:11.5px; color:#7a8279; line-height:1.6; padding: 14px 0 22px; border-top:1px solid #26302a; margin-top:18px; }
.gt-disclaimer strong{ color:#a9b2a8; }

/* ---------- Search / filter bar ---------- */
.gt-filterbar{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:16px; margin-top:-56px; position:relative; z-index:4; }
.gt-filterbar .form-control{ border-radius: var(--radius-sm); height:42px; }
.gt-filterbar .row{ display:flex; flex-wrap:wrap; gap:10px 0; align-items:stretch; }
.gt-results-count{ color:var(--ink-soft); font-size:13.5px; margin:0; }
.gt-results-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:20px; }
.gt-sort-select{ width:auto; display:inline-block; height:38px; padding:6px 30px 6px 12px; font-size:13px; border-radius: var(--radius-sm); border:1px solid var(--line); color:var(--ink-soft); }

/* ---------- Header search icon ---------- */
.gt-search-icon{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:#fff;
  display:inline-flex; align-items:center; justify-content:center; color:var(--ink); flex:0 0 auto;
}
.gt-search-icon:hover{ border-color:var(--brand); color:var(--brand); }

/* ---------- Homepage search / tabs bar (sits under hero) ---------- */
.gt-search-tabs{
  background:#fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding:8px; position:relative; z-index:4; margin-top:-40px;
}
.gt-search-tabs .tabs{ display:flex; gap:6px; margin-bottom:8px; }
.gt-search-tabs .tabs button{
  border:none; background:transparent; padding:9px 18px; border-radius: 999px; font-weight:600; font-size:13.5px;
  color: var(--ink-soft); cursor:pointer;
}
.gt-search-tabs .tabs button .fa{ margin-right:6px; }
.gt-search-tabs .tabs button.active{ background: var(--brand); color:#fff; }
.gt-search-tabs form{ display:flex; gap:10px; padding:2px; }
.gt-search-tabs .form-control{ border-radius: var(--radius-sm); height:46px; border:1px solid var(--line); box-shadow:none; }
.gt-search-tabs .btn-brand{ flex:0 0 auto; padding:12px 30px; }
@media (max-width:600px){ .gt-search-tabs form{ flex-direction:column; } }

/* ---------- Detail-page section tabs ---------- */
.gt-detail-tabs{
  background:#fff; border-bottom:1px solid var(--line); position:sticky; top:0; z-index:20;
}
.gt-detail-tabs .container{ display:flex; gap:26px; overflow-x:auto; }
.gt-detail-tabs a{
  display:inline-block; padding:15px 2px; font-size:14px; font-weight:600; color:var(--ink-soft);
  border-bottom:3px solid transparent; white-space:nowrap;
}
.gt-detail-tabs a:hover, .gt-detail-tabs a.active{ color:var(--brand); border-bottom-color:var(--brand); }

/* ---------- Need-help mini card (listing page) ---------- */
.gt-need-help{ display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:16px; }
.gt-need-help .icon{ width:44px; height:44px; border-radius:50%; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:18px; flex:0 0 auto; }
.gt-need-help strong{ display:block; font-size:14px; }
.gt-need-help span{ font-size:12.5px; color:var(--ink-soft); }
.gt-need-help-actions{ display:flex; gap:8px; margin-top:10px; }
.gt-need-help-actions a{ flex:1; text-align:center; padding:9px 4px; border-radius: var(--radius-sm); font-size:12.5px; font-weight:600; }
.gt-need-help-actions .btn-whatsapp{ padding:9px 4px; }
.gt-need-help-actions .btn-enquire{ border:1px solid var(--line); color:var(--ink); }
.gt-need-help-actions .btn-enquire:hover{ border-color:var(--brand); color:var(--brand); }

/* ---------- Tour detail page ---------- */
.gt-quickfacts{ display:flex; flex-wrap:wrap; gap:12px; margin: 18px 0 26px; }
.gt-quickfacts .qf{
  display:flex; align-items:center; gap:8px; background:var(--accent-soft); color:var(--accent);
  border-radius:999px; padding:8px 16px; font-size:13px; font-weight:600;
}
.gt-body-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:28px; margin-bottom:24px; }
.gt-body-card h2{ font-size:22px; margin-top:0; }
.gt-body-card p{ color:var(--ink-soft); line-height:1.7; }

.gt-highlights{ display:flex; gap:14px; overflow-x:auto; padding-bottom:6px; margin-bottom:8px; }
.gt-highlights .hl{ flex:0 0 150px; text-align:center; }
.gt-highlights .hl img{ width:150px; height:100px; object-fit:cover; border-radius:10px; margin-bottom:8px; }
.gt-highlights .hl span{ font-size:12.5px; font-weight:600; color:var(--ink); }

.gt-itinerary{ position:relative; padding-left:34px; }
.gt-itinerary::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:var(--line); }
.gt-itin-day{ position:relative; margin-bottom:26px; }
.gt-itin-day::before{
  content:""; position:absolute; left:-34px; top:4px; width:20px; height:20px; border-radius:50%;
  background:var(--paper); border:3px solid var(--brand);
}
.gt-itin-day h4{ font-size:15.5px; margin:0 0 6px; }
.gt-itin-day h4 .daytag{ color:var(--brand); }
.gt-itin-day p{ color:var(--ink-soft); font-size:14px; line-height:1.7; }

.gt-itinerary-flow p{ color:var(--ink-soft); line-height:1.75; font-size:14.5px; margin-bottom:14px; }
.gt-itinerary-flow .days{ display:block; font-family:'Fraunces',serif; font-size:16px; color:var(--ink); margin:22px 0 6px; padding-top:16px; border-top:1px dashed var(--line); }
.gt-itinerary-flow .days:first-child{ border-top:none; padding-top:0; margin-top:0; }
.gt-itinerary-flow .days strong{ color:var(--brand); }

.gt-inclusions-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:767px){ .gt-inclusions-grid{ grid-template-columns:1fr; } }
.gt-inc-box{ border-radius:var(--radius-sm); padding:18px; }
.gt-inc-box.yes{ background:#eef7f1; }
.gt-inc-box.no{ background:#fbeeee; }
.gt-inc-box h5{ font-size:14px; margin:0 0 10px; display:flex; align-items:center; gap:8px; }
.gt-inc-box.yes h5{ color:#1c7a43; }
.gt-inc-box.no h5{ color:#b23a3a; }
.gt-inc-box ul{ list-style:none; padding:0; margin:0; }
.gt-inc-box li{ font-size:13.5px; color:var(--ink-soft); margin-bottom:8px; padding-left:20px; position:relative; }
.gt-inc-box.yes li::before{ content:"\f00c"; font-family:FontAwesome; position:absolute; left:0; color:#1c7a43; font-size:11px; top:2px; }
.gt-inc-box.no li::before{ content:"\f00d"; font-family:FontAwesome; position:absolute; left:0; color:#b23a3a; font-size:11px; top:2px; }

.gt-sidebar-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:22px; margin-bottom:20px; }
.gt-price-box{ background: var(--accent); color:#fff; border-radius: var(--radius); padding:22px; margin-bottom:20px; }
.gt-price-box .from{ font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:#cfe3d7; }
.gt-price-box .amount{ font-family:'Fraunces',serif; font-size:28px; margin:4px 0; }
.gt-price-box .per{ font-size:12px; color:#cfe3d7; }
.gt-price-box .note{ font-size:11.5px; color:#cfe3d7; margin-top:10px; line-height:1.5; }
.gt-price-box .btn-brand{ width:100%; justify-content:center; margin-top:14px; }
.gt-price-box .btn-outline-light{ width:100%; justify-content:center; margin-top:10px; }

.gt-help-card{ display:flex; gap:12px; align-items:center; }
.gt-help-card img{ width:46px; height:46px; border-radius:50%; object-fit:cover; }
.gt-help-card .who{ font-size:12.5px; color:var(--ink-soft); }
.gt-help-card .who strong{ display:block; color:var(--ink); font-size:13.5px; }
.gt-contact-links{ display:flex; gap:10px; margin-top:12px; }
.gt-contact-links a{ flex:1; text-align:center; border:1px solid var(--line); border-radius: var(--radius-sm); padding:9px 6px; font-size:12px; color:var(--ink); font-weight:600; }
.gt-contact-links a:hover{ border-color:var(--brand); color:var(--brand); }
.gt-contact-links .fa{ display:block; margin-bottom:4px; font-size:15px; }

.gt-why-book li{ list-style:none; display:flex; gap:10px; align-items:flex-start; padding:9px 0; border-bottom:1px dashed var(--line); font-size:13.5px; color:var(--ink-soft); }
.gt-why-book li:last-child{ border-bottom:none; }
.gt-why-book .fa{ color:var(--brand); margin-top:2px; }
.gt-why-book ul{ padding:0; margin:0; }

.gt-mobile-cta{ display:none; }
@media (max-width:767px){
  .gt-mobile-cta{
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:50;
    background:#fff; box-shadow:0 -6px 18px rgba(0,0,0,.12); padding:10px 14px; gap:10px;
  }
  .gt-mobile-cta a{ flex:1; text-align:center; justify-content:center; }
  body{ padding-bottom:64px; }
}

/* ---------- Sticky notice / alert reuse ---------- */
.alert{ border-radius: var(--radius-sm); }

/* ---------- Hero: city mini-cards (right column) ---------- */
.gt-hero .row{ align-items:center; }
.gt-hero-cities{ display:flex; flex-direction:column; gap:12px; }
.gt-hero-city-card{
  display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.94); border-radius: var(--radius-sm);
  padding:9px; box-shadow: var(--shadow-sm);
}
.gt-hero-city-card img{ width:52px; height:52px; border-radius:8px; object-fit:cover; flex:0 0 auto; }
.gt-hero-city-card strong{ display:block; font-size:14px; color:var(--ink); font-family:'Fraunces',serif; }
.gt-hero-city-card span{ display:block; font-size:11.5px; color:var(--ink-soft); }

/* ---------- Popular tours: horizontal scroll strip with arrows ---------- */
.gt-scroll-strip-wrap{ position:relative; }
.gt-scroll-strip{
  display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x proximity; padding-bottom:10px; margin-bottom:6px;
  scrollbar-width:none;
}
.gt-scroll-strip::-webkit-scrollbar{ display:none; }
.gt-scroll-strip .gt-tour-card{ flex:0 0 270px; scroll-snap-align:start; margin-bottom:0; }
.gt-scroll-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:50%;
  background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm); display:flex; align-items:center;
  justify-content:center; color:var(--ink); cursor:pointer; z-index:5;
}
.gt-scroll-arrow.prev{ left:-14px; }
.gt-scroll-arrow.next{ right:-14px; }
.gt-scroll-arrow:hover{ color:var(--brand); border-color:var(--brand); }
@media (max-width:600px){ .gt-scroll-arrow{ display:none; } }

/* ---------- Destinations row + "Customize Your Trip" side panel ---------- */
.gt-dest-flex{ display:flex; gap:30px; align-items:flex-start; }
.gt-dest-flex .gt-dest-grid-col{ flex:1 1 auto; min-width:0; }
.gt-customize-panel{
  flex:0 0 260px; background: var(--accent); color:#fff; border-radius: var(--radius); padding:26px 22px;
  text-align:left;
}
.gt-customize-panel h3{ color:#fff; font-size:19px; margin-top:0; }
.gt-customize-panel p{ color:#cfe3d7; font-size:13.5px; line-height:1.6; }
.gt-customize-panel .btn-brand{ margin-top:6px; }
@media (max-width:900px){ .gt-dest-flex{ flex-direction:column; } .gt-customize-panel{ flex:1 1 auto; width:100%; } }

/* ---------- "Plan Your Trip" full form section ---------- */
.gt-plan-section{ background: var(--paper-soft); padding:56px 0; }
.gt-plan-card{
  max-width:640px; margin:0 auto; background:#fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding:30px 34px;
}
.gt-plan-card h2{ margin-top:0; font-size:24px; text-align:center; }
.gt-plan-card > p{ color:var(--ink-soft); text-align:center; margin-bottom:22px; font-size:14px; }
.gt-plan-card .form-control{ border-radius: var(--radius-sm); border:1px solid var(--line); box-shadow:none; height:44px; font-size:14px; }
.gt-plan-card textarea.form-control{ height:auto; }
.gt-plan-card .btn-brand{ width:100%; justify-content:center; margin-top:6px; }

/* ---------- Guest reviews: real quote cards ---------- */
.gt-quote-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .gt-quote-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .gt-quote-grid{ grid-template-columns:1fr; } }
.gt-quote-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:22px; box-shadow: var(--shadow-sm); }
.gt-quote-card .stars{ color:var(--gold); font-size:13px; margin-bottom:10px; }
.gt-quote-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.65; font-style:italic; }
.gt-quote-card .who{ margin-top:12px; font-size:13px; font-weight:600; color:var(--ink); }
.gt-quote-card .who span{ display:block; font-weight:400; font-size:12px; color:var(--ink-soft); }
.gt-reviews-links{ text-align:center; margin-top:26px; display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

/* ---------- Explore Tours by Theme grid ---------- */
.gt-theme-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:900px){ .gt-theme-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .gt-theme-grid{ grid-template-columns:1fr; } }
.gt-theme-card{
  display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm);
  padding:14px 16px; font-size:13.5px; font-weight:600; color:var(--ink);
}
.gt-theme-card:hover{ border-color:var(--brand); color:var(--brand); }
.gt-theme-card .icon{ width:36px; height:36px; border-radius:50%; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:14px; flex:0 0 auto; }
.gt-theme-card small{ display:block; font-weight:400; font-size:11.5px; color:var(--ink-soft); }

/* ---------- CTA banner: two buttons ---------- */
.gt-cta-banner .cta-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }

/* ---------- Hero carousel (real slides: image + real duration/title + real link) ---------- */
.gt-hero-carousel{ position:relative; height:480px; overflow:hidden; color:#fff; }
.gt-hero-carousel .slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; visibility:hidden; transition:opacity .8s ease; display:flex; align-items:center; z-index:1;
}
.gt-hero-carousel .slide.active{ opacity:1; visibility:visible; z-index:2; }
.gt-hero-carousel .slide::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(20,26,22,.82) 0%, rgba(20,26,22,.55) 45%, rgba(20,26,22,.25) 100%);
}
.gt-hero-carousel .slide-inner{ position:relative; z-index:2; }
.gt-hero-carousel .eyebrow{ text-transform:uppercase; letter-spacing:.14em; font-size:12.5px; font-weight:600; color:var(--gold); }
.gt-hero-carousel h1{ color:#fff; font-size:40px; margin:10px 0 20px; max-width:620px; }
.gt-hero-carousel .dots{ position:absolute; z-index:3; bottom:22px; left:0; right:0; display:flex; gap:8px; justify-content:center; }
.gt-hero-carousel .dots button{
  width:9px; height:9px; border-radius:50%; border:1.5px solid #fff; background:transparent; padding:0; cursor:pointer;
}
.gt-hero-carousel .dots button.active{ background:#fff; }
.gt-hero-carousel .arrow{
  position:absolute; z-index:3; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.7); background:rgba(0,0,0,.15); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.gt-hero-carousel .arrow.prev{ left:20px; }
.gt-hero-carousel .arrow.next{ right:20px; }
.gt-hero-carousel .arrow:hover{ background:rgba(0,0,0,.35); }
@media (max-width:600px){ .gt-hero-carousel h1{ font-size:28px; } .gt-hero-carousel{ height:400px; } }

/* ---------- Trust strip (real claims, right under hero) ---------- */
.gt-trust-strip{ background:#fff; border-bottom:1px solid var(--line); padding:22px 0; }
.gt-trust-strip .row{ display:flex; flex-wrap:wrap; }
.gt-trust-item{ display:flex; align-items:center; gap:12px; padding:10px 22px; flex:1 1 220px; border-left:1px dotted var(--line); }
.gt-trust-item:first-child{ border-left:none; }
.gt-trust-item .fa{ font-size:22px; color:var(--brand); flex:0 0 auto; }
.gt-trust-item span{ font-size:13.5px; color:var(--ink-soft); font-weight:500; line-height:1.4; }
.gt-trust-item img{ height:44px; flex:0 0 auto; }
@media (max-width:900px){ .gt-trust-item{ border-left:none; border-top:1px dotted var(--line); flex:1 1 45%; } }

/* ---------- Welcome text section (real descriptive copy + real "who we are" card) ---------- */
.gt-welcome{ padding:56px 0; }
.gt-welcome .row{ display:flex; gap:40px; flex-wrap:wrap; }
.gt-welcome-text{ flex:1 1 520px; min-width:280px; }
.gt-welcome-text p{ color:var(--ink-soft); line-height:1.75; font-size:14.5px; }
.gt-welcome-card{ flex:0 0 340px; background:var(--paper-soft); border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.gt-welcome-card h3{ margin-top:0; font-size:18px; }
.gt-who-list{ list-style:none; padding:0; margin:0; }
.gt-who-list li{ display:flex; gap:10px; align-items:flex-start; padding:9px 0; border-bottom:1px dashed var(--line); font-size:13.5px; color:var(--ink-soft); }
.gt-who-list li:last-child{ border-bottom:none; }
.gt-who-list .fa{ color:var(--brand); margin-top:2px; }
@media (max-width:900px){ .gt-welcome-card{ flex:1 1 100%; } }

/* ---------- Guest video grid (real YouTube embeds already on the live site) ---------- */
.gt-video-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:900px){ .gt-video-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .gt-video-grid{ grid-template-columns:1fr; } }
.gt-video-card{ border-radius: var(--radius-sm); overflow:hidden; box-shadow: var(--shadow-sm); background:#000; aspect-ratio:16/10; }
.gt-video-card iframe{ width:100%; height:100%; border:0; display:block; }

/* Full package grid: flexbox instead of Bootstrap's float columns, so cards of
   different title-wrap heights don't break row-clearing and leave orphan gaps. */
.gt-flex-row.row{ display:flex; flex-wrap:wrap; margin-left:-10px; margin-right:-10px; }
.gt-flex-row.row > [class*="col-"]{ float:none; margin-bottom:20px; }

/* ---------- Trip planner bar (GeTS-style: heading + 3 real selects + 2 CTAs) ---------- */
.gt-trip-planner{ background: var(--accent); padding:28px 0 34px; }
.gt-trip-planner h2{ color:#fff; font-size:20px; margin:0 0 16px; }
.gt-trip-planner .planner-row{ display:flex; gap:10px; flex-wrap:wrap; }
.gt-trip-planner select, .gt-trip-planner input{
  flex:1 1 200px; height:46px; border-radius: var(--radius-sm); border:none; padding:0 14px; font-size:13.5px; color:var(--ink);
}
.gt-trip-planner .btn-brand{ flex:0 0 auto; }

/* ---------- Package theme rows (curated, real groupings) ---------- */
.gt-theme-row{ margin-bottom:8px; }

/* ---------- Stats band (only verifiable real numbers) ---------- */
.gt-stats{ background: var(--paper-soft); padding:40px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.gt-stats .row{ display:flex; flex-wrap:wrap; text-align:center; }
.gt-stats-item{ flex:1 1 220px; padding:10px; }
.gt-stats-item .num{ font-family:'Fraunces',serif; font-size:32px; color:var(--brand); font-weight:600; }
.gt-stats-item .label{ font-size:12.5px; color:var(--ink-soft); margin-top:4px; }

/* ---------- FAQ (accordion, real evergreen operational content only) ---------- */
.gt-faq{ max-width:820px; margin:0 auto; }
.gt-faq-item{ border-bottom:1px solid var(--line); }
.gt-faq-item summary{ cursor:pointer; padding:18px 4px; font-weight:600; font-size:14.5px; color:var(--ink); list-style:none; display:flex; justify-content:space-between; align-items:center; }
.gt-faq-item summary::-webkit-details-marker{ display:none; }
.gt-faq-item summary::after{ content:"\f107"; font-family:FontAwesome; color:var(--ink-soft); }
.gt-faq-item[open] summary::after{ content:"\f106"; }
.gt-faq-item p{ padding:0 4px 18px; color:var(--ink-soft); font-size:13.5px; line-height:1.7; margin:0; }

/* ---------- Header overflow fix ----------
   Below ~1400px the brand text, full nav and CTA buttons no longer reliably
   fit on one line — nothing shrank until the 991px nav-collapse breakpoint,
   so the brand ran into "Home" and "Contact" was clipped behind the CTA
   buttons. Shrinking text/gaps alone chases exact pixel widths, which shift
   with whatever font actually renders (system-font fallback measures wider
   than the intended web font, so a threshold tuned against one font can
   still clip on another machine) - so alongside the tightened spacing, the
   nav row is forced onto its own full-width line in this range. That makes
   the fix independent of exact text width: the top line (brand + CTA +
   toggle) always has the room a header alone needs, and the nav below it
   simply wraps if it ever needs to, instead of clipping against a neighbour.
   (Placed last in the file so it wins over the earlier unconditional
   .gt-search-icon / .btn-whatsapp rules.) */
@media (max-width: 1400px){
  .gt-header .container{ gap:10px; flex-wrap:wrap; row-gap:8px; }
  .gt-header .navbar-brand{ font-size:16px; gap:7px; }
  .gt-nav{ order:3; flex:1 1 100%; margin-top:0; min-width:100%; }
  .gt-nav ul{ gap:10px; flex-wrap:wrap; justify-content:flex-start; }
  .gt-nav a{ font-size:12.5px; }
  .gt-header-cta{ gap:6px; }
  .gt-header-cta .btn-brand{ padding:9px 14px; }
}
@media (max-width: 1180px){
  .gt-search-icon{ display:none; }
  /* icon-only WhatsApp button: the label is a bare text node (no span in
     the markup), so collapse it with font-size:0 and restore just the icon */
  .gt-header-cta .btn-whatsapp{ padding:10px; font-size:0; gap:0; }
  .gt-header-cta .btn-whatsapp .fa{ font-size:16px; }
}
@media (max-width: 767px){
  /* Below this width .gt-nav is already hidden and .gt-mobile-cta (the
     fixed bottom Plan-My-Trip/WhatsApp bar) takes over, so the header CTA
     group — previously left with only "Plan My Trip", still wide enough to
     get clipped against the brand on narrow phones — can drop out too. */
  .gt-header-cta{ display:none; }
}

/* ---------- Sitemap page ---------- */
.gt-sitemap-list{ list-style:none; padding:0; margin:0; }
.gt-sitemap-list li{ padding:9px 0; border-bottom:1px solid var(--line); }
.gt-sitemap-list li:last-child{ border-bottom:none; }
.gt-sitemap-list a{ color:var(--ink); font-size:14px; }
.gt-sitemap-list a:hover{ color:var(--brand); }

/* ---------- Legal / long-form prose pages (Privacy Policy) ---------- */
.gt-legal{ max-width:820px; margin:32px auto 56px; }
.gt-legal h2{ font-size:18px; margin-top:28px; margin-bottom:10px; }
.gt-legal p, .gt-legal li{ color:#4a524c; line-height:1.7; }
.gt-legal ul{ padding-left:20px; }
.gt-legal a{ color:var(--brand); }

/* ---------- Privacy note under enquiry forms ---------- */
.gt-form-privacy-note{ font-size:12px; color:#8b938c; margin:10px 0 0; text-align:center; }
.gt-form-privacy-note a{ color:#6b756e; text-decoration:underline; }
