/* ============================================================
   India Travel With Vicky — Global Stylesheet
   Colors: #F19C79 #A44A3F #CBDFBD #F6F4D2 #D4E09B
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --peach: #F19C79;
  --brick: #A44A3F;
  --sage: #CBDFBD;
  --cream: #F6F4D2;
  --lime: #D4E09B;
  --dark: #2B2118;
  --dark-80: rgba(43, 33, 24, 0.8);
  --white: #FEFEFE;
  --shadow-sm: 0 2px 8px rgba(43, 33, 24, 0.08);
  --shadow-md: 0 4px 20px rgba(43, 33, 24, 0.12);
  --shadow-lg: 0 8px 40px rgba(43, 33, 24, 0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brick);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--peach);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--brick);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Navigation (CSS-only hamburger) --- */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition);
}

.nav-toggle-label span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-label span::before {
  content: '';
  top: -8px;
}

.nav-toggle-label span::after {
  content: '';
  top: 8px;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--peach);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover {
  color: var(--brick);
}

/* Hamburger active state */
.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}
.nav-toggle:checked ~ .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle:checked ~ .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
  animation: fadeUp 1s ease both;
}

.hero-overlay h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brick);
  color: var(--white);
}

.btn-primary:hover {
  background: #8C3E35;
  color: var(--white);
}

.btn-secondary {
  background: var(--peach);
  color: var(--dark);
}

.btn-secondary:hover {
  background: #E08B66;
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1EBE5A;
  color: var(--white);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-sage {
  background: var(--sage);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6B5D52;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--peach);
  margin: 1rem auto;
  border-radius: 3px;
}

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.08);
}

.tour-card-img figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius) 0 0 0;
}

.tour-card-body {
  padding: 1.5rem;
}

.tour-card-body h3 {
  margin-bottom: 0.5rem;
}

.tour-card-body p {
  font-size: 0.95rem;
  color: #6B5D52;
  margin-bottom: 1rem;
}

.tour-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--peach);
  opacity: 0.3;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: #5A4E44;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-source {
  font-size: 0.75rem;
  color: #9B8C80;
}

.stars {
  color: #F5A623;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

/* ============================================================
   INTRO / TEXT SECTIONS
   ============================================================ */
.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1rem;
}

.intro-text p {
  color: #6B5D52;
}

.intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.intro-img figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius) 0 0 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.page-hero .hero-img {
  opacity: 0.45;
}

.page-hero .hero-overlay {
  animation: fadeUp 0.8s ease both;
}

.page-hero .hero-overlay h1 {
  color: var(--white);
}

.page-hero .hero-overlay p {
  color: rgba(255,255,255,0.85);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #9B8C80;
}

.breadcrumb a {
  color: var(--brick);
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary {
  counter-reset: itin;
}

.itin-stop {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.itin-marker {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.itin-marker::before {
  counter-increment: itin;
  content: counter(itin);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brick);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.itin-marker::after {
  content: '';
  flex: 1;
  width: 2px;
  background: var(--sage);
  margin-top: 0.5rem;
}

.itin-stop:last-child .itin-marker::after {
  display: none;
}

.itin-content h4 {
  margin-bottom: 0.3rem;
}

.itin-content p {
  color: #6B5D52;
  font-size: 0.95rem;
}

/* ============================================================
   HIGHLIGHT BOXES
   ============================================================ */
.highlight-box {
  background: var(--lime);
  border-left: 4px solid var(--brick);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-icon-wa { background: #E8F8ED; color: #25D366; }
.contact-icon-phone { background: #FFF0EB; color: var(--peach); }
.contact-icon-fb { background: #EBF0FF; color: #1877F2; }
.contact-icon-ig { background: #FFEEF5; color: #E1306C; }

.contact-card h4 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #6B5D52;
  margin-bottom: 1rem;
}

/* ============================================================
   SERVICE FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #6B5D52;
  margin-bottom: 0;
}

/* ============================================================
   REVIEWS LINKS
   ============================================================ */
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--brick);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left a {
  color: var(--peach);
  font-weight: 600;
}

.footer-left a:hover {
  color: var(--white);
}

.footer-left p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-right span {
  font-size: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--peach);
  transform: scale(1.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* ============================================================
   SAME-DAY TOUR LIST
   ============================================================ */
.day-tour-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.day-tour {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.day-tour:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.day-tour-img {
  position: relative;
  overflow: hidden;
}

.day-tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform var(--transition-slow);
}

.day-tour:hover .day-tour-img img {
  transform: scale(1.06);
}

.day-tour-img figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius) 0 0 0;
}

.day-tour-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.day-tour-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: #9B8C80;
}

.day-tour-meta strong {
  color: var(--dark);
}

.day-tour-body h3 {
  margin-bottom: 0.5rem;
}

.day-tour-body p {
  color: #6B5D52;
  font-size: 0.95rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Fade-in animation for elements */
.fade-in {
  animation: fadeUp 0.8s ease both;
}

.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 5rem 2rem 2rem;
    z-index: 105;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .main-nav a::after {
    display: none;
  }

  /* Overlay */
  .nav-toggle:checked ~ .nav-overlay {
    display: block;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 102;
  }

  .intro-row {
    grid-template-columns: 1fr;
  }

  .day-tour {
    grid-template-columns: 1fr;
  }

  .day-tour-img img {
    min-height: 180px;
    max-height: 220px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero { min-height: 70vh; }
  .page-hero { min-height: 35vh; }
}

@media (max-width: 480px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
