/* ===== VARIABLES & BASE STYLES ===== */
:root {
  --primary: #1a6d38;
  --primary-light: #2e8b57;
  --secondary: #f9a825;
  --dark: #333;
  --light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.3s ease;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-sm: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  font-size: var(--font-size-base);
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 40px 0;
}

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

.section-title h2 {
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #ff6b00;
  border-color: #ff6b00;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ff6b00;
}

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

.btn-secondary:hover {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

.btn i {
  margin-right: 8px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.logo img {
  height: 5rem;
  width: auto;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: var(--font-size-sm);
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

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

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: slideDown 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  animation: slideUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* ===== PACKAGES SECTION ===== */
.packages {
  background-color: white;
}

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

.package-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-img {
  height: 200px;
  overflow: hidden;
}

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

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

.package-content {
  padding: 25px;
}

.package-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
}

.package-features li {
  padding: 2px 0;
  position: relative;
  padding-left: 25px;
}

.package-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: #f8f9fa;
}

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

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #1e293b;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(96, 165, 250, 0.2);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  padding: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.gallery-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: #f8f9fa;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  width: 300%;
  animation: slide 12s infinite ease-in-out;
}

.testimonial-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

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

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

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

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== BOOKING SECTION ===== */
.booking-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 109, 56, 0.2);
}

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

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
  border-radius: 24px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
  overflow: hidden;
  position: relative;
  margin: 1rem auto;
  max-width: 100%;
}

.contact::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
}

.contact-info {
  background: rgba(30, 41, 59, 0);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #0a0d0f;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #0a0d0f;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-item:hover {
  background: rgba(30, 41, 59, 0.9);
  transform: translateX(5px);
  border-left: 4px solid #60a5fa;
}

.contact-item i {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-item div {
  font-size: 1.1rem;
  color: #f1f5f9;
  font-weight: 500;
}

.mail-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WhatsApp Button Styles */
.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.3rem 2rem;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  margin-top: 1rem;
  animation: pulse-green 3s infinite;
}

.whatsapp-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.whatsapp-contact:hover::before {
  left: 100%;
}

.whatsapp-contact:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  letter-spacing: 0.5px;
}

.whatsapp-contact:active {
  transform: translateY(-2px) scale(1.01);
}

.whatsapp-contact i {
  font-size: 1.6rem;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.whatsapp-contact:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Map Container Styles */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  height: 100%;
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.4s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  color: #cbd5e1;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
  color: white;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #405de6, #e1306c, #f77737);
}

.social-icon.twitter:hover {
  background: #1da1f2;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  margin: 5vh auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  animation: zoomIn 0.4s ease;
}

.lightbox-img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.nav-btn {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: rgba(96, 165, 250, 0.7);
  transform: scale(1.1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2001;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #60a5fa;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.image-title {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  max-width: 80%;
}

.zoom-hint {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #cbd5e1;
  font-size: 0.9rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.zoom-hint i {
  color: #60a5fa;
}

.keyboard-hint {
  text-align: center;
  margin-top: 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.keyboard-hint span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #1e293b;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 0 5px;
}

.keyboard-hint kbd {
  background-color: #334155;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-33.333%);
  }
  58% {
    transform: translateX(-33.333%);
  }
  66% {
    transform: translateX(-66.666%);
  }
  91% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

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

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet styles (768px and below) */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .header-container {
    padding: 28px 12px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0 0 30px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

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

  .btn {
    width: 80%;
    max-width: 250px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

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

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

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

  .gallery-item {
    height: 220px;
  }

  .lightbox-content {
    width: 95%;
    height: 70vh;
    margin: 10vh auto;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    padding: 0;
  }

  .lightbox-nav {
    padding: 0 1rem;
  }

  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }

  .image-title {
    font-size: 1.2rem;
    bottom: 60px;
  }

  .zoom-hint {
    font-size: 0.8rem;
    top: 15px;
    padding: 6px 12px;
  }

  /* Contact Section Mobile */
  .contact {
    border-radius: 16px;
    margin: 1rem;
  }

  .contact-content {
    gap: 2.5rem;
  }

  .contact-info {
    border-radius: 16px;
    padding: 2rem;
  }

  .contact-info h3 {
    font-size: 1.7rem;
  }

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

  .contact-item {
    padding: 1rem;
    margin-bottom: 1.2rem;
    flex-direction: row;
    align-items: center;
  }

  .contact-item i {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-right: 1rem;
  }

  .contact-item div {
    font-size: 1rem;
    word-break: break-word;
  }

  .whatsapp-contact {
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    margin-top: 0.5rem;
  }

  .whatsapp-contact i {
    font-size: 1.4rem;
    margin-right: 10px;
  }

  .map-container {
    border-radius: 16px;
    height: 350px;
  }

  .map-container iframe {
    min-height: 350px;
  }

  .social-media {
    margin-top: 2rem;
    gap: 0.8rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .section {
    padding: 30px 0;
  }

  .booking-form {
    padding: 25px;
  }

  .package-card,
  .testimonial-card {
    padding: 20px;
  }

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

  .gallery-item {
    height: 250px;
  }

  .lightbox-img.zoomed {
    transform: scale(1.2);
  }

  /* Contact Section Small Mobile */
  .contact {
    padding: 2.5rem 0;
    margin: 0.5rem;
    border-radius: 12px;
  }

  .container {
    padding: 0.9rem 0.8rem;
  }

  .section-title h2 {
    font-size: 1.9rem;
  }

  .section-title::after {
    width: 80px;
    height: 4px;
    bottom: -12px;
  }

  .contact-info {
    padding: 1.5rem;
    border-radius: 12px;
  }

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

  .contact-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .contact-details {
    margin-bottom: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid transparent;
  }

  .contact-item:hover {
    transform: translateX(3px);
    border-left: 3px solid #60a5fa;
  }

  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.8rem;
    width: 42px;
    height: 42px;
  }

  .contact-item div {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .whatsapp-contact {
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    animation: pulse-green-mobile 3s infinite;
  }

  @keyframes pulse-green-mobile {
    0% {
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    }
    50% {
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    }
    100% {
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    }
  }

  .whatsapp-contact i {
    font-size: 1.3rem;
    margin-right: 8px;
  }

  .map-container {
    height: 300px;
    border-radius: 12px;
  }

  .map-container iframe {
    min-height: 300px;
  }

  .social-media {
    margin-top: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .floating-icons {
    display: none;
  }
}

/* Small mobile styles (360px and below) */
@media (max-width: 360px) {
  .section.contact {
    padding: 1rem 0;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-item {
    padding: 1rem 0.8rem;
  }

  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .contact-item div {
    font-size: 0.9rem;
  }

  .whatsapp-contact {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .map-container {
    height: 280px;
  }

  .map-container iframe {
    min-height: 280px;
  }

  .social-media {
    gap: 0.6rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .section.contact {
    padding: 1.5rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .map-container {
    height: 250px;
  }

  .map-container iframe {
    min-height: 250px;
  }

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

  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .contact-details {
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    flex-direction: row;
  }

  .contact-item i {
    margin-right: 0.8rem;
    margin-bottom: 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .contact-item:hover {
    transform: none;
  }

  .contact-info:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .map-container:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }

  .contact-item:active {
    background: rgba(30, 41, 59, 0.9);
    transform: scale(0.98);
  }

  .whatsapp-contact:active {
    transform: scale(0.96);
  }

  .social-icon:active {
    transform: scale(0.9);
  }
}

/* Print styles */
@media print {
  .whatsapp-contact,
  .social-media,
  .floating-icons,
  .map-container {
    display: none;
  }

  .contact-info {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}
/* packages view  */
/* View All Button Styles */
.view-all-container {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-view-all {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 14px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 109, 56, 0.3);
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 109, 56, 0.4);
  letter-spacing: 0.5px;
}

.btn-view-all i {
  font-size: 1.2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: -20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hide all packages container on homepage */
.all-packages {
  display: none;
}
