/* Meetings Page Specific Styles */

.meetings-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)),
                url('../images/r111.jpeg') center/cover;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 80px;
}

.meetings-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Event Types Section */
/* .event-types-carousel {
  padding: 80px 0;
  background: var(--background-light);
  overflow: hidden;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: slideCarousel 15s linear infinite;
}

@keyframes slideCarousel {
  0% { transform: translateX(0); } */
  /* 100% { transform: translateX(-50%); } adjust if more cards */
/* } */
/* .event-card { */
  /* flex: 0 0 250px; fixed narrower width for vertical look */
  /* height: 400px;    taller card */
  /* background: var(--white); */
  /* border-radius: 20px; */
  /* overflow: hidden; */
  /* box-shadow: var(--shadow); */
  /* transition: all 0.3s ease; */
/* } */

/* .event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.event-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}


.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.event-card:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.carousel-track {
  display: flex; */
  /* gap: 3rem; previously 2rem */
  /* animation: slideCarousel 15s linear infinite; */
/* } */


/* Event Types Section */
 .event-carousel-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
  }

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

  .event-carousel-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .event-carousel-wrapper {
    overflow: hidden;
    position: relative;
  }

  .event-carousel-track {
    display: flex;
    gap: 3rem;
    transition: transform 0.6s ease-in-out;
  }

  .event-carousel-card {
    flex: 0 0 250px;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .event-carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .event-carousel-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .event-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .event-carousel-card:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
  }

  /* ✅ Responsive: 1 card per screen on mobile */
  @media (max-width: 768px) {
    .event-carousel-card {
      flex: 0 0 100%;
    }
  }


/* .event-card:hover video {
  transform: scale(1.1);
  filter: brightness(60%);
} */

/* .event-content {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
} */

/* .event-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
} */
/* 
.event-content p {
  line-height: 1.6;
  color: var(--text-dark);
} */




/* Event Spaces Gallery */
.event-spaces {
    padding: 40px 0;
}

.spaces-gallery {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
      grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
}

.space-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.space-item:hover {
    transform: translateY(-5px);
}

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

.space-item:hover img {
    transform: scale(1.1);
}

.space-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(145, 0, 75, 0.9));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.space-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.space-overlay p {
    opacity: 0.9;
}

/* Benefits Section */
/* .benefits {
    padding: 80px 0;
    background: var(--background-light);
}

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

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    line-height: 1.7;
    color: var(--text-dark);
} */



.benefits {
  position: relative;
  background: none;
  border-radius: 0;
  color: #fff;
  padding: 80px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/beautiful-starry-sky-town.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.5rem;
  color: #91004B;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  padding: 0.7rem;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(145, 0, 75, 0.2);
}

.benefit-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.benefit-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(145, 0, 75, 0.3);
  transition: background 0.3s ease;
}

.benefit-item:hover .benefit-image::before {
  background: rgba(145, 0, 75, 0.5);
}

.benefit-item h3 {
  font-size: 1.5rem;
  color: #91004B;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .benefits {
    padding: 40px 15px;
    background-attachment: scroll;
  }

  .benefit-image {
    height: 150px;
  }

  .benefit-item h3 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* Inquiry Section */
.inquiry-section {
  padding: 50px 0;
  background: linear-gradient(rgba(145, 0, 75, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1551776235-dde6d482980f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.inquiry-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.inquiry-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.inquiry-subtitle,
.inquiry-form label {
  color: #fff;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

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

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

.inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(145, 0, 75, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(145, 0, 75, 0.3);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .meetings-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
    }
    
    .spaces-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-container {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* Booking/ Checkout form  */

/* ==============================
   GLOBAL STYLES
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

/* Background Wrapper */
.booking-wrapper,
.bookingpage {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/snow-covered-mountains-against-sky.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #333;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 2rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero p.visible {
  opacity: 1;
  transform: translateY(0);
  margin-left: 4rem;
}

.btn-book {
  padding: 1rem 2.5rem;
  background: #91004B;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 2rem;
}

.btn-book:hover {
  background: #7A003F;
  transform: scale(1.05);
}

/* ==============================
   RESORTS SECTION
============================== */
.resorts-section {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.resorts-section h2 {
  font-size: 2.5rem;
  color: #91004B;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.resort-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.resort-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.resort-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 3rem;
}

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

.resort-image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(145, 0, 75, 0.3); */
  /* background: none; */
  transition: background 0.3s ease;
}

/* .resort-image:hover::before { */
  /* background: rgba(145, 0, 75, 0.5); */
/* } */

.resort-item h3 {
  font-size: 1.5rem;
  color: #91004B;
  margin-bottom: 0.5rem;
}

.resort-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* ==============================
   LIGHTBOX
============================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #91004B;
}

/* ==============================
   BOOKING FORM SECTION
============================== */
.booking-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.booking-content {
  max-width: 900px;
  margin: auto;
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.booking-content h2 {
  font-size: 2.5rem;
  color: #91004B;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

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

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

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #91004B;
  outline: none;
}

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

.pay-btn {
  margin-top: 2rem;
  padding: 1rem;
  width: 100%;
  font-size: 1.2rem;
  background: #91004B;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pay-btn:hover {
  background: #7A003F;
  box-shadow: 0 10px 25px rgba(145, 0, 75, 0.4);
}

/* ==============================
   MODAL BOOK-NOW
============================== */
.book-now-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.book-now-modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.booknow-container {
  display: flex;
  flex-wrap: wrap;
}

.booknow-left {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

.booknow-left img {
  width: 150px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.booknow-right {
  flex: 1;
  padding: 30px;
  background-color: #fff0f5;
}

.booknow-right h2 {
  margin-bottom: 20px;
  color: #800020;
}

.booknow-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booknow-right input,
.booknow-right button {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.booknow-right button {
  background-color: #800020;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.resort-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* ==============================
   RESORT CHECKOUT SECTION
============================== */
/* .resort-checkout {
  padding: 20px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #333;
}

.resort-checkout .checkout-header h1 {
  font-size: 2.5rem;
  color: #91004B;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease forwards;
}

.resort-checkout .checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.resort-checkout .form-section,
.resort-checkout .summary-section {
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.resort-checkout h2 {
  color: #91004B;
}

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

.resort-checkout .form-group input,
.resort-checkout .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.resort-checkout .payment-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.resort-checkout .payment-option {
  flex: 1;
  padding: 10px;
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}

.resort-checkout .payment-option.active,
.resort-checkout .payment-option:hover {
  background: #91004B;
  color: #fff;
  border-color: #7A003F;
}

.resort-checkout .payment-details {
  display: none;
}

.resort-checkout .payment-details.active {
  display: block;
}

.resort-checkout .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.resort-checkout .summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.resort-checkout .confirm-btn {
  width: 100%;
  padding: 15px;
  background: #91004B;
  color: #fff;
  border: none;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
} */



.resort-checkout {
  padding: 3rem 1rem;
  /* background: linear-gradient(rgba(145, 0, 75, 0.5), rgba(0, 0, 0, 0.5)); */
}

.checkout-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

.checkout-header .subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.checkout-grid {
  display: flex;
  justify-content: center;
}

.form-section {
  /* background: #fff; */
    background: linear-gradient(rgba(145, 0, 75, 0.5), rgba(0, 0, 0, 0.5));

  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 900px;
}

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

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  /* color: #444; */
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: none;
  min-height: 80px;
}

h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

/* ===== Payment/Booking Buttons ===== */
.payment-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  background: #f1f1f1;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-option:hover {
  background: #e4e4e4;
}

/* WhatsApp Btn */
.whatsapp-btn {
  background: #25D366;
  color: #fff !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whatsapp-btn:hover {
  background: #1ebc57;
}

.cash-details {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .form-columns {
    grid-template-columns: 1fr;
  }
}




/* ==============================
   MEDIA QUERIES
============================== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .resorts-section h2,
  .booking-content h2 { font-size: 2rem; }
  .resort-image { height: 150px; }
  .resort-item h3 { font-size: 1.3rem; }
  .booking-content form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .booknow-container { flex-direction: column; }
  .resort-checkout .checkout-grid { grid-template-columns: 1fr; }
}
