/* Tourshut Holiday Project - Pure HTML/CSS/JS Version */
/* CSS Variables */
:root {
  --color-primary: #1a6b4a;
  --color-secondary: #FDDC08;
  --color-dark: #1a1a1a;
  --color-light: #f5f5f5;
  --color-tour-text: #333333;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-tour-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #145a3e;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #e5c507;
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.scrolled .nav-link {
  color: var(--color-dark);
}

.header.scrolled .logo-text {
  color: var(--color-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-white);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

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

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

.book-btn {
  background: var(--color-secondary);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

.book-btn:hover {
  background: #e5c507;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
  background: var(--color-dark);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 200;
  padding: 2rem;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 500;
}

.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
  padding: 0 1rem;
  max-width: 900px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--color-secondary);
  font-style: italic;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-white-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Stats Section */
.stats-section {
  background: var(--color-white);
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-top: -4rem;
  position: relative;
  z-index: 20;
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--color-light);
}

.stat-item:last-child,
.stat-item:nth-child(2) {
  border-right: none;
}

.stat-icon {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.stat-label {
  color: var(--color-tour-text);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-tour-text);
  opacity: 0.8;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: var(--color-white);
}

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

.about-images {
  position: relative;
}

.about-main-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.about-stats {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

.about-stat-badge {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
}

.about-stat span {
  font-size: 0.875rem;
  color: var(--color-tour-text);
  opacity: 0.7;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--color-secondary);
  font-style: italic;
}

.about-content > p {
  margin-bottom: 1.5rem;
  color: var(--color-tour-text);
  opacity: 0.8;
  line-height: 1.8;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.about-link:hover {
  gap: 0.75rem;
}

/* Destinations Section */
.destinations-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.destinations-header h2 {
  font-size: 2.5rem;
}

.destinations-header p {
  color: var(--color-tour-text);
  opacity: 0.7;
}

.view-all {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-all:hover {
  gap: 0.75rem;
}

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

.destination-card {
  position: relative;
  height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  display: block;
}

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

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent, transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--color-white);
}

.destination-info span {
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.destination-info h3 {
  font-size: 1.5rem;
}

/* Services Section (What We Offer) */
.services-section {
  background: var(--color-light);
}

.services-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-style: italic;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card .icon {
  color: var(--color-primary);
}

.service-card:hover .icon {
  color: var(--color-white);
}

/* Our Services Section */
.our-services-section {
  background: var(--color-white);
}

.our-services-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .our-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.our-service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-light);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.our-service-card:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-5px);
}

.our-service-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.our-service-card:hover .our-service-icon {
  background: var(--color-white);
  color: var(--color-primary);
}

.our-service-icon svg {
  width: 28px;
  height: 28px;
}

.our-service-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Core Values Section */
.values-section {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-section .container {
  position: relative;
  z-index: 10;
}

.values-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255,255,255,0.1);
}

.value-icon {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1rem;
  color: var(--color-white);
}

/* Testimonials Section */
.testimonials-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 8px;
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.quote-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--color-tour-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--color-tour-text);
  opacity: 0.6;
}

/* CTA Section */
.cta-section {
  padding: 3rem 1rem;
}

.cta-box {
  background: var(--color-primary);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-blur-1,
.cta-blur-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-blur-1 {
  top: 0;
  right: 0;
  background: rgba(255,255,255,0.1);
  transform: translate(50%, -50%);
}

.cta-blur-2 {
  bottom: 0;
  left: 0;
  background: rgba(201,169,98,0.2);
  transform: translate(-50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.cta-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

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

.footer-links a {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.footer-contact h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-contact .icon {
  color: var(--color-secondary);
}

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

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.floating-whatsapp {
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
}

.floating-call {
  bottom: 5.5rem;
  right: 1.5rem;
  background: var(--color-primary);
  animation: pulse 2s infinite;
}

.floating-enquiry {
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-primary);
  animation: bounce 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 107, 74, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(26, 107, 74, 0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Popup Modal */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 60;
}

.popup-overlay.active {
  display: block;
}

.popup-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  border-radius: 1.5rem;
  padding: 2rem;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 70;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-modal.active {
  display: block;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-tour-text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.popup-close:hover {
  background: var(--color-light);
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.popup-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.popup-header p {
  color: var(--color-tour-text);
  opacity: 0.6;
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-light);
  border: 1px solid var(--color-light);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
}

.form-group .error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: var(--color-white);
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--color-primary);
}

.toast.error {
  background: #ef4444;
}

/* Page Header */
.page-header {
  position: relative;
  color: var(--color-white);
  padding: 8rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

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

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Different background images for each page */
.page-header-about::before {
  content: '';
  background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.page-header-gallery::before {
  content: '';
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.page-header-contact::before {
  content: '';
  background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1920&auto=format&fit=crop') center/cover;
}

/* About Page */
.about-page-content {
  background: var(--color-white);
  padding: 4rem 0;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text h2 span {
  color: var(--color-secondary);
  font-style: italic;
}

.about-text p {
  color: var(--color-tour-text);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card,
.vision-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 1rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-overlay span {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--color-tour-text);
  opacity: 0.8;
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--color-tour-text);
  opacity: 0.8;
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.hidden-sm {
  display: none;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hidden-sm {
    display: inline;
  }
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-box h2 {
    font-size: 3rem;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: 1px solid var(--color-light);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .destinations-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
