/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #faf9f6;
  color: #1e2b2b;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a9d8f;
  background: rgba(42, 157, 143, 0.12);
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f2b2b;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4d5f5f;
  max-width: 640px;
  margin-bottom: 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: #1a6b6b;
  color: #fff;
}
.btn-primary:hover {
  background: #0f4f4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 107, 107, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1a6b6b;
  border: 1.5px solid #1a6b6b;
  padding: 8px 20px;
  font-size: 0.85rem;
}
.btn-outline:hover {
  background: #1a6b6b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-tripadvisor {
  background: #34e0a1;
  color: #0f2b2b;
  padding: 12px 32px;
  font-weight: 600;
}
.btn-tripadvisor:hover {
  background: #2ac98f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 224, 161, 0.35);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: scale(1.02);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0;
  transition: 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar.scrolled .nav-logo {
  color: #0f2b2b;
}
.nav-logo .logo-accent {
  color: #f4a261;
  font-style: italic;
}
.nav-logo i {
  color: #f4a261;
}
.nav-logo-img {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f4a261;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
.navbar.scrolled .nav-toggle {
  color: #0f2b2b;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f4a261;
  transition: 0.3s;
}
.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  width: 100%;
}
.navbar.scrolled .nav-link {
  color: #1e2b2b;
}
.navbar.scrolled .nav-link:hover {
  color: #0f2b2b;
}
.navbar.scrolled .nav-link::after {
  background: #1a6b6b;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./images/0.jpg") center/cover no-repeat;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(6, 30, 30, 0.65) 0%,
    rgba(6, 30, 30, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 10vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: floatDown 2.4s infinite ease-in-out;
}
@keyframes floatDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   GALLERY (horizontal scroll)
   ============================================ */
.gallery-section {
  padding: 64px 0 72px;
  background: #fff;
}
.gallery-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 24px 20px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}
.gallery-scroll::-webkit-scrollbar-track {
  background: #eaeaea;
  border-radius: 12px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: #2a9d8f;
  border-radius: 12px;
}

.gallery-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================
   INCLUDES SECTION (NEW)
   ============================================ */
.includes-section {
  background: #fff;
  border-radius: 24px;
  padding: 32px 36px;
  margin: 8px 0 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eae8e2;
}
.includes-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #0f2b2b;
  text-align: center;
  margin-bottom: 24px;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.includes-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1e2b2b;
  background: #f8f7f4;
  padding: 10px 14px;
  border-radius: 40px;
}
.includes-grid div i {
  color: #1a6b6b;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.all-inclusive-badge {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a6b6b;
  background: rgba(26, 107, 107, 0.06);
  padding: 10px 20px;
  border-radius: 40px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.all-inclusive-badge i {
  color: #f4a261;
  margin-right: 8px;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-section {
  padding: 72px 0 80px;
  background: #f5f3ee;
}
.packages-section:nth-of-type(odd) {
  background: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 12px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.package-card:hover .package-image img {
  transform: scale(1.05);
}
.package-day {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 43, 43, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.package-body {
  padding: 20px 22px 24px;
}
.package-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2b2b;
  margin-bottom: 6px;
}
.package-desc {
  font-size: 0.95rem;
  color: #4d5f5f;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-table {
  margin-top: 48px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #eae8e2;
}
.pricing-table h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #0f2b2b;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.pricing-item {
  display: flex;
  flex-direction: column;
  background: #f8f7f4;
  padding: 12px 16px;
  border-radius: 12px;
}
.pricing-item span:first-child {
  font-size: 0.8rem;
  color: #4d5f5f;
}
.pricing-item strong {
  font-size: 1.4rem;
  color: #1a6b6b;
  font-weight: 700;
}
.pricing-item span:last-child {
  font-size: 0.75rem;
  color: #6a7f7f;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info .section-title {
  font-size: 2.4rem;
}
.contact-details {
  margin: 24px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.contact-details li i {
  width: 36px;
  height: 36px;
  background: rgba(26, 107, 107, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a6b6b;
  font-size: 0.9rem;
}
.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0eeea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a6b6b;
  transition: 0.25s;
}
.contact-socials a:hover {
  background: #1a6b6b;
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: #f8f7f4;
  padding: 32px 36px;
  border-radius: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #1e2b2b;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dddcd6;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a9d8f;
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.12);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 72px 0 80px;
  background: #f5f3ee;
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin: 12px 0 28px;
  border-radius: 24px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 8px;
}
.testimonial-card {
  background: #fff;
  padding: 32px 36px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-stars {
  color: #f4a261;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e2b2b;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: #0f2b2b;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: #4d5f5f;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
  z-index: 5;
}
.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.carousel-prev {
  left: 16px;
}
.carousel-next {
  right: 16px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0f2b2b;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand .footer-logo i {
  color: #f4a261;
}
.footer-logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f4a261;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-links h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: 0.2s;
}
.footer-links a:hover {
  color: #f4a261;
}
.footer-newsletter h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.footer-form {
  display: flex;
  gap: 6px;
}
.footer-form input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
}
.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-form button {
  background: #f4a261;
  border: none;
  border-radius: 40px;
  width: 44px;
  color: #0f2b2b;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.footer-form button:hover {
  background: #e8914a;
}

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

/* ============================================
   MODALS
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 36px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1e2b2b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.2s;
  z-index: 3;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.modal-image-content {
  padding: 8px;
  background: transparent;
  box-shadow: none;
  max-width: 90vw;
}
.modal-image-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
}
.modal-image-content .modal-close {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.modal-image-content .modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ===== PACKAGE MODAL (FULL SCREEN FEEL) ===== */
.modal-package-content {
  max-width: 90vw;
  max-height: 90vh;
  padding: 40px 44px;
}
.modal-package-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #0f2b2b;
  margin-bottom: 4px;
  padding-right: 40px;
}
.modal-package-content .package-meta {
  color: #4d5f5f;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.modal-package-content .package-full-desc {
  line-height: 1.8;
  color: #1e2b2b;
}
.modal-package-content .package-full-desc p {
  margin-bottom: 12px;
}
.modal-package-content .package-full-desc ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 16px;
}
.modal-package-content .package-full-desc ul li {
  margin-bottom: 4px;
}

/* One-time fee note inside modal */
.package-inclusive-note {
  background: #eaf5f2;
  border-left: 5px solid #1a6b6b;
  padding: 14px 20px;
  border-radius: 12px;
  margin: 20px 0 18px;
  font-size: 1rem;
  color: #0f2b2b;
}
.package-inclusive-note i {
  color: #f4a261;
  margin-right: 10px;
}

/* Extra images carousel inside modal */
.modal-extra-images {
  margin: 16px 0 24px;
}
.modal-extra-images h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f2b2b;
  margin-bottom: 10px;
}
.extra-images-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.extra-images-scroll::-webkit-scrollbar {
  height: 4px;
}
.extra-images-scroll::-webkit-scrollbar-thumb {
  background: #2a9d8f;
  border-radius: 12px;
}
.extra-images-scroll img {
  flex: 0 0 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.extra-images-scroll img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp button inside modal */
.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.modal-whatsapp-btn:hover {
  background: #1ebe5c;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .includes-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 20px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    align-items: flex-start;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-link {
    color: #1e2b2b !important;
    font-size: 1.1rem;
  }
  .nav-link::after {
    background: #1a6b6b !important;
  }
  .navbar.scrolled .nav-logo {
    color: #0f2b2b;
  }
  .navbar.scrolled .nav-toggle {
    color: #0f2b2b;
  }

  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    padding: 24px 20px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .carousel-prev {
    left: 8px;
  }
  .carousel-next {
    right: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .modal-content {
    padding: 24px 20px;
    max-height: 70vh;
  }
  .modal-package-content {
    padding: 28px 20px;
  }
  .modal-package-content h2 {
    font-size: 1.6rem;
  }
  .extra-images-scroll img {
    flex: 0 0 140px;
    height: 110px;
  }
  .includes-section {
    padding: 24px 18px;
  }
  .includes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .includes-grid div {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 500px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form {
    padding: 20px 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .includes-grid {
    grid-template-columns: 1fr;
  }
}
