/* =============================================
   GERANOS TRAVEL — Main Stylesheet
   Brand: Forest Green + Gold | geranostravel.com
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Nunito:wght@400;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --green:        #1B7535;
  --green-dark:   #0D4A20;
  --green-deeper: #09321A;
  --green-light:  #E8F5EC;
  --gold:         #F5C518;
  --gold-dark:    #C49A10;
  --cream:        #FDF7EE;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --muted:        #5C5C5C;
  --subtle:       #8A8A8A;
  --border:       #E2E2DA;
  --red:          #D42828;
  --orange:       #E8650A;
  --blue:         #4AABE0;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);

  --max-width: 1160px;
  --pad-x:     clamp(20px, 5vw, 60px);
  --pad-y:     clamp(48px, 7vw, 80px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--pad-y) var(--pad-x); max-width: var(--max-width); margin: 0 auto; }
.section-full { padding: var(--pad-y) var(--pad-x); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }

/* --- Typography --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(32px, 5vw, 50px); }
h2 { font-size: clamp(26px, 3.5vw, 36px); color: var(--green-dark); }
h3 { font-size: clamp(18px, 2.5vw, 22px); color: var(--green-dark); }
.lead { font-size: 15px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 11px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  padding: 0 var(--pad-x);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 38px; height: 38px; flex-shrink: 0; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
}
.nav-brand-name em { color: var(--gold); font-style: normal; }
.nav-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--green-deeper);
  padding: 20px var(--pad-x);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.hero-petal {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  opacity: 0.055;
  pointer-events: none;
}
.hero-petal-left {
  position: absolute;
  left: -80px;
  bottom: 60px;
  width: 220px;
  height: 220px;
  opacity: 0.035;
  pointer-events: none;
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 80px) var(--pad-x) clamp(40px, 6vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bar {
  background: rgba(0,0,0,0.32);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-bar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.hero-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: all 0.2s;
}
.hero-pill:hover,
.hero-pill.active { background: var(--green); border-color: var(--green); }

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest-img {
  height: 172px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Destination gradient placeholders — replace with actual photos */
.dest-img-punjab     { background: linear-gradient(160deg, #C47832 0%, #7A3A10 100%); }
.dest-img-gujarat    { background: linear-gradient(160deg, #D4A020 0%, #8B5C10 100%); }
.dest-img-rajasthan  { background: linear-gradient(160deg, #C04040 0%, #6A1818 100%); }
.dest-img-kerala     { background: linear-gradient(160deg, #28A050 0%, #0D5A28 100%); }
.dest-img-ladakh     { background: linear-gradient(160deg, #4AABE0 0%, #1A5A9B 100%); }
.dest-img-chandigarh { background: linear-gradient(160deg, #7060D4 0%, #3A2890 100%); }
.dest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dest-img-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 0 12px;
  line-height: 1.6;
  pointer-events: none;
}
.dest-body { padding: 18px 20px 20px; }
.dest-body h3 { margin-bottom: 5px; font-size: 21px; }
.dest-tagline { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.dest-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.dest-card:hover .dest-link { gap: 8px; }

/* =============================================
   WHY US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27,117,53,0.1);
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-sm); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card h3 { margin-bottom: 10px; font-size: 20px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* =============================================
   EXPERIENCES
   ============================================= */
.exp-row {
  display: flex;
  gap: 12px;
}
.exp-tile {
  flex: 1;
  min-height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.exp-tile:hover { transform: scale(1.02); }
.exp-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 55%);
}
.exp-bg { position: absolute; inset: 0; }
.exp-bg-village  { background: linear-gradient(150deg, #2A9B5A 0%, #0D5A28 100%); }
.exp-bg-food     { background: linear-gradient(150deg, #D85A20 0%, #7A2A08 100%); }
.exp-bg-festival { background: linear-gradient(150deg, #D4A020 0%, #7A5A08 100%); }
.exp-bg-nature   { background: linear-gradient(150deg, #2A7BBB 0%, #0A3A70 100%); }
.exp-bg-heritage { background: linear-gradient(150deg, #8B6840 0%, #4A3018 100%); }
.exp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 1;
}
.exp-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
.exp-sub  { font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--green-light);
  position: absolute;
  top: 14px;
  left: 22px;
  user-select: none;
  font-style: italic;
}
.testi-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
  padding-top: 18px;
  font-style: italic;
}
.testi-author { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.testi-context { font-size: 11px; color: var(--muted); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--green-dark);
  text-align: center;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(245,197,24,0.08) 0%, transparent 65%);
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 12px; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner .lead { color: rgba(255,255,255,0.65); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .eyebrow { color: var(--gold); justify-content: center; }

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img-1 { background: linear-gradient(135deg, #1B7535 0%, #0D4A20 100%); }
.blog-img-2 { background: linear-gradient(135deg, #D85A20 0%, #7A2A08 100%); }
.blog-img-3 { background: linear-gradient(135deg, #4AABE0 0%, #1A5A9B 100%); }
.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body { padding: 18px 18px 20px; }
.blog-body h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.blog-excerpt { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: 11px; color: var(--subtle); display: flex; justify-content: space-between; }
.read-more { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--green-deeper); color: rgba(255,255,255,0.72); }
.footer-main { padding: clamp(40px, 6vw, 64px) var(--pad-x); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: 11px; color: var(--gold); letter-spacing: 1.2px; font-style: italic; margin-bottom: 14px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 7px; flex-wrap: wrap; }
.social-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 12px; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-nl-text { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.6; margin-bottom: 14px; }
.footer-nl-form { display: flex; gap: 8px; }
.footer-nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-nl-form input:focus { border-color: rgba(255,255,255,0.4); }
.footer-nl-form button {
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  padding: 9px 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-nl-form button:hover { background: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
}
.footer-bottom a { color: rgba(255,255,255,0.32); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 16px; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.wa-float svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .exp-row { flex-wrap: wrap; }
  .exp-tile { flex: 1 1 calc(50% - 6px); min-width: 140px; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .destinations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .exp-tile { flex: 1 1 calc(50% - 6px); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .exp-tile { flex: 1 1 100%; }
}
