@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary: #035c39;
  --primary-rgb: 3, 92, 57;
  --primary-light: #068d58;
  --primary-dark: #023a24;
  --primary-glow: rgba(6, 141, 88, 0.15);
  --accent: #d35400; /* Warm terracotta/orange accent for highlights */
  --accent-light: #e67e22;
  --bg-light: #fbfaf7; /* Soft cream background */
  --bg-dark: #022b1b; /* Dark forest background for footer/hero overlay */
  --card-bg: #ffffff;
  --text-main: #1b2a24; /* Dark slate green for high contrast text */
  --text-muted: #5a6e65; /* Muted forest gray */
  --text-light: #ffffff;
  
  /* Borders and Shadows */
  --border-color: #e3ece8;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(3, 92, 57, 0.08), 0 4px 6px -2px rgba(3, 92, 57, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(3, 92, 57, 0.12), 0 10px 10px -5px rgba(3, 92, 57, 0.04);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(3, 92, 57, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 92, 57, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(211, 84, 0, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

/* Header & Sticky Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(2, 43, 27, 0.95);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  object-fit: cover;
  transition: var(--transition);
}

header.scrolled .logo img {
  width: 38px;
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light);
  transition: var(--transition);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(2, 43, 27, 0.75), rgba(2, 43, 27, 0.85)), url('https://dinhoecotour.wordpress.com/wp-content/uploads/2023/08/1680187697462.jpeg?w=1024') no-repeat center center;
  background-size: cover;
  color: var(--text-light);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.2s;
}

.hero h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--accent-light);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  fill: currentColor;
}

/* About Section */
.about {
  padding: 7rem 0;
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card-bg);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
}

.feature-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  pointer-events: none;
}

/* Contact Quick Bar */
.contact-quick {
  display: flex;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 2.5rem 0;
  border-bottom: 5px solid var(--accent);
}

.quick-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quick-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.quick-info h4 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-info p, .quick-info a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Tours Section */
.tours {
  padding: 7rem 0;
  background-color: #ffffff;
}

.tours-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.tab-btn {
  padding: 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  background-color: var(--bg-light);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.tab-btn:hover {
  background-color: rgba(3, 92, 57, 0.05);
  color: var(--primary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(3, 92, 57, 0.25);
}

.tours-container {
  display: none;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.tours-container.active {
  display: grid;
}

/* Tour Cards */
.tour-card {
  display: grid;
  grid-template-columns: 450px 1fr;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(3, 92, 57, 0.2);
}

.tour-card-image {
  position: relative;
  height: 100%;
  min-height: 350px;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tour-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-card-header {
  margin-bottom: 1.5rem;
}

.tour-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-meta svg {
  color: var(--primary-light);
}

.tour-card-content h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.tour-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

/* Timeline/Itinerary */
.itinerary-toggle {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.itinerary-toggle:hover {
  color: var(--primary);
}

.itinerary-toggle svg {
  transition: var(--transition);
}

.itinerary-toggle.open svg {
  transform: rotate(180deg);
}

.itinerary-flow {
  display: none;
  position: relative;
  border-left: 2px dashed var(--primary-light);
  margin-left: 0.75rem;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.itinerary-flow.open {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.itinerary-step {
  position: relative;
  margin-bottom: 1.5rem;
}

.itinerary-step:last-child {
  margin-bottom: 0;
}

.itinerary-step::before {
  content: '';
  position: absolute;
  left: calc(-1.5rem - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg-light);
  box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.15);
}

.itinerary-step h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.itinerary-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Interactive Calculator inside Tour Cards */
.calc-box {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
}

.calc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-title svg {
  color: var(--accent);
}

.calc-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.calc-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.people-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.people-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.people-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.people-count {
  width: 30px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.calc-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tour-actions {
  display: flex;
  gap: 1rem;
}

.tour-actions .btn {
  flex: 1;
}

/* Gallery Section */
.gallery {
  padding: 7rem 0;
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 4px solid #ffffff;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 43, 27, 0.8), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.gallery-overlay h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(2, 27, 18, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
}

/* Contact & Inquiry Builder Section */
.contact {
  padding: 7rem 0;
  background-color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-info p, .contact-info a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card:hover .contact-icon {
  background-color: var(--accent);
  transform: rotate(5deg);
}

/* Inquiry Form */
.contact-form-wrapper {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.form-input, .form-select, .form-textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.inquiry-preview {
  grid-column: span 2;
  background-color: rgba(3, 92, 57, 0.03);
  border: 1px dashed var(--primary-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin: 1rem 0;
}

.inquiry-preview h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.preview-text {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: pre-wrap;
  line-height: 1.5;
}

.form-actions {
  grid-column: span 2;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.form-actions .btn {
  flex: 1;
}

/* Footer styling */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  border-top: 5px solid var(--primary-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-light);
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  object-fit: cover;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact svg {
  color: var(--accent-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tour-card {
    grid-template-columns: 1fr;
  }
  
  .tour-card-image {
    height: 300px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  header {
    background-color: rgba(2, 43, 27, 0.95);
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(2, 43, 27, 0.98);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-slow);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  /* Menu icon animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .tours-tabs {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .tab-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    flex: 1 1 40%;
    text-align: center;
  }
  
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-actions {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .tours-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  .tour-actions {
    flex-direction: column;
  }
}
