/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #2c1810;
  background-color: #faf8f5;
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid #d97706;
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-display: swap;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn:focus,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  border-color: #d97706;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #b45309, #d97706);
  border-color: #b45309;
}

.btn-secondary {
  background: transparent;
  color: #d97706;
  border-color: #d97706;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #d97706;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #2c1810;
  border-color: #d1d5db;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #f3f4f6;
  border-color: #d97706;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
  loading: eager;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.nav-menu a {
  text-decoration: none;
  color: #2c1810;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #d97706;
  background: rgba(217, 119, 6, 0.1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #2c1810;
  border-radius: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f3f4f6;
  color: #d97706;
}

/* Language Switcher */
.lang-switch {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.lang-switch:hover,
.lang-switch:focus {
  background: linear-gradient(135deg, #b45309, #d97706);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hamburger:hover,
.hamburger:focus {
  background: rgba(217, 119, 6, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c1810;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: eager;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.4), rgba(217, 119, 6, 0.3));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tours Section */
.tours {
  padding: 6rem 0;
  background: #faf8f5;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #2c1810;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
  position: relative;
  will-change: transform;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #d97706;
}

.tour-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  loading: lazy;
}

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

/* Tour Badges */
.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tour-badge.combo {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.tour-badge.family {
  background: linear-gradient(135deg, #059669, #10b981);
}

.tour-badge.budget {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.tour-badge.sunset {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.tour-content {
  padding: 2.5rem;
}

.tour-content h3 {
  color: #2c1810;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.tour-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.tour-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #faf8f5;
  border-radius: 15px;
  border-left: 4px solid #d97706;
}

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-info span {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.tour-price {
  text-align: right;
}

.tour-price .price {
  font-size: 2rem;
  font-weight: 900;
  color: #d97706;
  font-family: "Montserrat", sans-serif;
  display: block;
  line-height: 1;
}

.tour-price .price-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.tour-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.tour-actions .btn-outline {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
}

.tour-actions .btn-outline:hover {
  background: #f9fafb;
  color: #2c1810;
  border-color: #d1d5db;
}

.tour-actions .btn-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  border: 2px solid #d97706;
}

.tour-actions .btn-primary:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

/* Tour Option Cards */
.tour-options {
  margin: 3rem 0;
}

.tour-options h3 {
  color: #2c1810;
  margin-bottom: 2rem;
}

.option-card {
  background: #faf8f5;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #d97706;
}

.option-card h4 {
  color: #2c1810;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.option-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Tour Hero Section */
.tour-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.tour-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.tour-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.5);
  z-index: -1;
}

.tour-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 1;
}

.tour-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tour-hero-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tour-hero-details .duration,
.tour-hero-details .price {
  background: rgba(217, 119, 6, 0.9);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Tour Details Section */
.tour-details {
  padding: 6rem 0;
  background: white;
}

.tour-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tour-main-content h2 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}

.tour-main-content p {
  color: #6b5b73;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.tour-highlights {
  background: #faf8f5;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.tour-highlights h3 {
  color: #2c1810;
  margin-bottom: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.detail-item {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #d97706;
}

.detail-item strong {
  color: #2c1810;
}

.included-excluded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.included,
.excluded {
  background: #faf8f5;
  padding: 2rem;
  border-radius: 20px;
}

.included h3 {
  color: #059669;
  margin-bottom: 1rem;
}

.excluded h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.included ul,
.excluded ul {
  list-style: none;
  padding: 0;
}

.included li,
.excluded li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.included li:last-child,
.excluded li:last-child {
  border-bottom: none;
}

.tour-description {
  margin-top: 3rem;
}

.tour-description h3 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}

/* Booking Form */
.booking-form-container {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-form {
  background: linear-gradient(135deg, #faf8f5, #f3f4f6);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.booking-form h3 {
  color: #2c1810;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c1810;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-buttons .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Tour Gallery */
.tour-gallery {
  padding: 6rem 0;
  background: #faf8f5;
}

.tour-gallery h2 {
  text-align: center;
  color: #2c1810;
  margin-bottom: 3rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background: white;
}

.reviews-header {
  text-align: center;
}

.reviews-header h2 {
  color: #2c1810;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
}

.rating-text {
  color: #6b7280;
  font-weight: 600;
}

.tripadvisor-logo {
  height: 30px;
}

/* Related Tours */
.related-tours {
  padding: 6rem 0;
  background: #faf8f5;
}

.related-tours h2 {
  text-align: center;
  color: #2c1810;
  margin-bottom: 3rem;
}

.related-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Preview Section */
.about-preview {
  padding: 6rem 0;
  background: #faf8f5;
}

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

.about-text h2 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}

.about-text h3 {
  color: #2c1810;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: #6b5b73;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.commitment-list li {
  background: #faf8f5;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border-left: 4px solid #d97706;
  line-height: 1.6;
}

.commitment-list strong {
  color: #2c1810;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background: white;
}

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

.gallery-item {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
}

.stats h2 {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: #faf8f5;
}

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

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
  font-style: italic;
  color: #6b5b73;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author strong {
  color: #2c1810;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #d97706;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2c1810, #44403c);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #d97706;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d97706;
}

.social-links {
  margin-top: 1rem;
}

.social-link {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background: #d97706;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* About Page Styles */
.about-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(rgba(44, 24, 16, 0.6), rgba(44, 24, 16, 0.6)),
    url("/placeholder.svg?height=600&width=1200") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.5);
  z-index: -1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.about-image-section {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
  background: rgba(217, 119, 6, 0.9);
  color: white;
  padding: 1rem;
  border-radius: 0 0 20px 20px;
  margin-top: -5px;
  text-align: center;
}

.image-caption p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.mission-statement {
  background: linear-gradient(135deg, #faf8f5, #f3f4f6);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #d97706;
  margin: 2rem 0;
}

.mission-statement p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: #2c1810;
}

.tour-options-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.tour-options-list li {
  background: #faf8f5;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  border-left: 4px solid #d97706;
}

.tour-options-list a {
  color: #d97706;
  text-decoration: none;
  font-weight: 600;
}

.tour-options-list a:hover {
  text-decoration: underline;
}

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

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  color: #2c1810;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: #6b5b73;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.contact-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.6);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-content {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section {
  padding: 2rem;
}

.contact-info-section h2 {
  color: #2c1810;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-section > p {
  color: #6b5b73;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #faf8f5;
  border-radius: 15px;
  border-left: 4px solid #d97706;
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.contact-details h3 {
  color: #2c1810;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details a {
  color: #d97706;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details span {
  color: #6b5b73;
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  margin-top: 0.3rem;
}

.quick-booking {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.quick-booking h3 {
  color: white;
  margin-bottom: 1rem;
}

.quick-booking p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-form-section {
  background: white;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.contact-form h3 {
  color: #2c1810;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form > p {
  color: #6b5b73;
  text-align: center;
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #4b5563;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #faf8f5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item h3 {
  color: #2c1810;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #6b5b73;
  line-height: 1.6;
  margin: 0;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f3f1ed;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.map-info-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.map-info-item h3 {
  color: #2c1810;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.map-info-item p {
  color: #6b5b73;
  line-height: 1.6;
  margin: 0;
}

/* Legal Pages Styles */
.legal-content {
  padding: 120px 0 80px;
  background: white;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-header h1 {
  color: #2c1810;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.last-updated {
  color: #6b7280;
  font-style: italic;
  font-size: 1.1rem;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  color: #2c1810;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #d97706;
  padding-bottom: 0.5rem;
}

.legal-text h3 {
  color: #2c1810;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-text li {
  color: #4b5563;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.legal-text strong {
  color: #2c1810;
  font-weight: 600;
}

.legal-text a {
  color: #d97706;
  text-decoration: none;
  font-weight: 500;
}

.legal-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .logo img {
    height: 65px;
  }

  .nav-container {
    padding: 1.1rem 1.8rem;
  }

  .nav-menu {
    gap: 2rem;
  }

  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo img {
    height: 55px;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 1rem;
    display: block;
  }

  .lang-switch {
    margin: 1rem auto;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(217, 119, 6, 0.1);
    margin-top: 0.5rem;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    gap: 4px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #2c1810;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

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

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

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

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-card {
    max-width: 100%;
  }

  .tour-content {
    padding: 2rem;
  }

  .tour-details {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .tour-price {
    text-align: center;
  }

  .tour-actions {
    flex-direction: column;
  }

  .tour-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tour-content {
    padding: 1.5rem;
  }

  .tour-details {
    padding: 1rem;
  }

  .tour-price .price {
    font-size: 1.8rem;
  }

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

  .about-text h2 {
    font-size: 1.8rem;
  }

  .contact-info-section h2 {
    font-size: 2rem;
  }
}

/* New About Page Styles */
.about-hero-new {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(217, 119, 6, 0.3));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.9);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
}

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

/* Story Section */
.story-section {
  padding: 8rem 0;
  background: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.story-text h2 {
  font-size: 3rem;
  color: #2c1810;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.3rem;
  color: #6b5b73;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 500;
}

.story-timeline {
  margin-top: 3rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.timeline-year {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-weight: 900;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: center;
}

.timeline-content h3 {
  color: #2c1810;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.timeline-content p {
  color: #6b5b73;
  line-height: 1.6;
  margin: 0;
}

.story-visual {
  position: relative;
}

.image-stack {
  position: relative;
  height: 500px;
}

.stack-image-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.stack-image-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Mission Section */
.mission-section {
  padding: 8rem 0;
  background: #faf8f5;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.mission-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #e5e7eb;
}

.mission-card.primary {
  border-top-color: #d97706;
  background: linear-gradient(135deg, #faf8f5, white);
}

.mission-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  color: #2c1810;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.mission-card p {
  color: #6b5b73;
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 8rem 0;
  background: white;
}

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

.section-header h2 {
  font-size: 3rem;
  color: #2c1810;
  margin-bottom: 1.5rem;
}

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

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.feature-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-card.reverse .feature-content {
  order: 1;
}

.feature-card.reverse .feature-image {
  order: 2;
}

.feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.feature-content h3 {
  color: #2c1810;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: #6b5b73;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #6b5b73;
  font-size: 1rem;
}

.feature-content li::before {
  content: "✓";
  background: #d97706;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background: #faf8f5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

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

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-info h3 {
  color: #2c1810;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #d97706;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.member-info p {
  color: #6b5b73;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2c1810, #44403c);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* New Contact Page Styles */
.contact-hero-new {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.contact-hero-new .hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quick-contact {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.quick-btn.whatsapp {
  background: rgba(37, 211, 102, 0.9);
  color: white;
}

.quick-btn.phone {
  background: rgba(217, 119, 6, 0.9);
  color: white;
}

.quick-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Contact Methods Section */
.contact-methods-section {
  padding: 6rem 0;
  background: white;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.method-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
}

.method-card.primary {
  border-color: #25d366;
  background: linear-gradient(135deg, #faf8f5, white);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.method-card h3 {
  color: #2c1810;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.method-number {
  color: #d97706;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.method-desc {
  color: #6b5b73;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.method-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.method-card.primary .method-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

/* Contact Main Section */
.contact-main-section {
  padding: 8rem 0;
  background: #faf8f5;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
  color: #2c1810;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-header p {
  color: #6b5b73;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

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

.contact-form-new .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-new label {
  color: #2c1810;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.checkbox-group {
  margin-top: 1rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #2c1810;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6b5b73;
  font-size: 0.95rem;
}

.benefit-icon {
  color: #059669;
  font-weight: bold;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #faf8f5;
  border-radius: 10px;
  border-left: 4px solid #d97706;
}

.time {
  font-weight: 700;
  color: #2c1810;
  font-size: 1.1rem;
}

.desc {
  color: #6b5b73;
  font-size: 0.9rem;
}

/* Map Section New */
.map-section-new {
  padding: 8rem 0;
  background: white;
}

.map-header {
  text-align: center;
  margin-bottom: 4rem;
}

.map-header h2 {
  color: #2c1810;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.map-header p {
  color: #6b5b73;
  font-size: 1.1rem;
}

/* FAQ Section New */
.faq-section-new {
  padding: 8rem 0;
  background: #faf8f5;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  color: #2c1810;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #6b5b73;
  font-size: 1.1rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #faf8f5;
}

.faq-question h3 {
  color: #2c1810;
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #d97706;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: #6b5b73;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive Design for New Layouts */
@media (max-width: 1024px) {
  .story-content,
  .feature-card,
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-card.reverse .feature-content,
  .feature-card.reverse .feature-image {
    order: unset;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .contact-hero-new .hero-content h1 {
    font-size: 3rem;
  }

  .story-text h2,
  .section-header h2,
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .timeline-year {
    align-self: center;
  }

  .image-stack {
    height: 400px;
  }

  .mission-grid,
  .team-grid,
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quick-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-new .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .feature-content h3 {
    font-size: 1.6rem;
  }

  .feature-image img {
    height: 250px;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .story-text h2,
  .section-header h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }

  .mission-card,
  .method-card,
  .info-card {
    padding: 2rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .image-stack {
    height: 300px;
  }

  .stack-image-1,
  .stack-image-2 {
    width: 85%;
    height: 70%;
  }
}
