/* ========================================
   CeylonTrail Tours — Main Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --deep-green: #1a3c2a;
  --forest-green: #2d5a3f;
  --emerald: #3a7d5c;
  --warm-gold: #c8a951;
  --gold-light: #e0c97a;
  --sand: #f5f0e6;
  --beige: #faf7f0;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --dark-text: #1a1a1a;
  --body-text: #444444;
  --light-gray: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-card: 0 6px 24px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  color: var(--dark-text);
  line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Styling --- */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--deep-green);
}

.section-subtitle {
  text-align: center;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--warm-gold);
  color: var(--deep-green);
}

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

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--deep-green);
}

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

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

.btn-dark {
  background: var(--deep-green);
  color: var(--white);
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 60, 42, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo .logo-accent {
  color: var(--warm-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-main.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,42,0.85) 0%, rgba(45,90,63,0.7) 50%, rgba(26,60,42,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 .highlight {
  color: var(--warm-gold);
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warm-gold);
  display: block;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   FEATURED DESTINATIONS
   ======================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.destination-card:hover .overlay {
  background: linear-gradient(to top, rgba(26,60,42,0.9) 0%, rgba(26,60,42,0.3) 60%);
}

.destination-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.destination-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.destination-card .btn {
  align-self: flex-start;
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ========================================
   TOUR PACKAGES
   ======================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.package-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .card-image img {
  transform: scale(1.05);
}

.package-card .card-image .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--warm-gold);
  color: var(--deep-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card .card-body h3 {
  margin-bottom: 8px;
}

.package-card .duration {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.package-card .locations {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.package-card .description {
  color: var(--body-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}

.package-card .includes {
  margin-bottom: 16px;
}

.package-card .includes h4 {
  font-size: 0.85rem;
  color: var(--deep-green);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card .includes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.package-card .includes ul li {
  background: var(--sand);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--forest-green);
  font-weight: 500;
}

.package-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.package-card .price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--deep-green);
  font-weight: 700;
}

.package-card .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--body-text);
  font-family: var(--font-body);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
  background: var(--sand);
}

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

.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-card .icon {
  width: 72px;
  height: 72px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .icon {
  background: var(--warm-gold);
}

.feature-card .icon svg {
  width: 32px;
  height: 32px;
  color: var(--forest-green);
  transition: var(--transition);
}

.feature-card:hover .icon svg {
  color: var(--deep-green);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--body-text);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-mark {
  font-family: var(--font-primary);
  font-size: 4rem;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 600;
}

.testimonial-card .author-info span {
  font-size: 0.8rem;
  color: var(--body-text);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: var(--deep-green);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-main.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 2.4rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 12px;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--warm-gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--warm-gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

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

.footer-social a:hover {
  background: var(--warm-gold);
  color: var(--deep-green);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

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

/* ========================================
   PAGE HERO (Interior Pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-main.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 2.8rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro .text h2 {
  color: var(--deep-green);
  margin-bottom: 16px;
}

.about-intro .text p {
  margin-bottom: 16px;
}

.about-intro .image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro .image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--sand);
  padding: 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--warm-gold);
}

.mv-card h3 {
  color: var(--deep-green);
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--deep-green);
  padding: 60px 40px;
  border-radius: var(--radius-md);
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-item .number {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--warm-gold);
  display: block;
  margin-bottom: 8px;
}

.stat-item .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

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

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.team-card .avatar {
  width: 100%;
  height: 250px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--forest-green);
}

.team-card .info {
  padding: 20px;
}

.team-card .info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .info span {
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   DESTINATIONS PAGE
   ======================================== */
.destinations-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card-full {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.dest-card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.dest-card-full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dest-card-full h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.dest-card-full p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 8px 24px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--body-text);
}

.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

.gallery-item .caption h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}

.gallery-item .caption span {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}

.lightbox .close:hover {
  color: var(--warm-gold);
}

.lightbox .caption {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  color: var(--white);
}

.lightbox .caption h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.lightbox .caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  color: var(--deep-green);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--beige);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58,125,92,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info {
  padding: 40px;
  background: var(--deep-green);
  border-radius: var(--radius-md);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
  color: var(--warm-gold);
}

.contact-info-item h4 {
  color: var(--warm-gold);
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.6;
}

.map-placeholder {
  margin-top: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--warm-gold);
}

.map-placeholder p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ========================================
   BOOKING CONFIRMATION MODAL
   ======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal .success-icon {
  width: 72px;
  height: 72px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal .success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.modal h2 {
  color: var(--deep-green);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.modal p {
  color: var(--body-text);
  margin-bottom: 24px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .destinations-grid,
  .destinations-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-green);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .destinations-grid,
  .destinations-grid-full {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .contact-form,
  .contact-info {
    padding: 24px;
  }

  .modal {
    padding: 32px 24px;
  }
}
