/* ========== GENERAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdf1f4;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .container {
    /* width: 98%; */
    padding: 10px 5px;
  }
}

/* ========== MODERN RESPONSIVE HEADER - FIXED FOR MOBILE ========== */
.header {
  background: linear-gradient(135deg, #663399 0%, #8B5FBF 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar {
  background: transparent !important;
  padding: 0.5rem 0;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.2s ease;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-nav {
  gap: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-link {
  color: white !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0 !important;
  border-radius: 0;
  transition: none;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.nav-link:hover,
.nav-link:focus {
  color: white !important;
  background: transparent;
  transform: none;
}

.nav-link.active {
  color: #FFB347 !important;
  background: transparent;
  font-weight: 600;
}

.dropdown-menu {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
  position: static;
}

.dropdown-item {
  color: white;
  font-weight: 500;
  padding: 10px 0 10px 24px;
  transition: none;
  border: none;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: transparent;
  color: #FFB347;
  padding-left: 24px;
}

.btn-book-now {
  background: linear-gradient(105deg, #FFB347, #FF9800);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  transition: none;
  box-shadow: none;
  font-size: 0.95rem;
  width: auto;
  margin-top: 8px;
}

.btn-book-now:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(105deg, #FFB347, #FF9800);
}

/* ========== MOBILE (max-width: 991px) ========== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: transparent;
    border-radius: 0;
    margin-top: 12px;
    padding: 0;
  }

  .navbar-nav {
    gap: 0;
    padding: 0;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    white-space: normal;
    text-align: left;
    padding: 12px 0 !important;
    font-size: 0.95rem;
    transition: none;
    border-radius: 0;
    display: block;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: white !important;
    background: transparent;
    transform: none;
  }

  .nav-link.active {
    color: #FFB347 !important;
    background: transparent;
    font-weight: 600;
  }

  .dropdown-menu {
    background: transparent;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    box-shadow: none;
    padding: 0;
    position: static;
  }

  .dropdown-menu .dropdown-item {
    color: white;
    text-align: left;
    padding: 10px 16px 10px 24px;
    transition: none;
    border: none;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    margin: 4px 8px;
    border-radius: 6px;
  }

  .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFB347;
    padding-left: 24px;
  }

  .dropdown-divider {
    display: none;
  }

  .btn-book-now {
    width: auto;
    margin: 12px 0 0 0;
    display: inline-block;
    text-align: center;
    transition: none;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .btn-book-now:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(105deg, #FFB347, #FF9800);
  }
}

/* ========== SMALL PHONES (max-width: 480px) ========== */
@media (max-width: 480px) {
  .logo-img {
    height: 42px;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 10px 0 !important;
  }

  .btn-book-now {
    font-size: 0.85rem;
    padding: 8px 16px !important;
  }
}

/* ========== DESKTOP (min-width: 992px) ========== */
@media (min-width: 992px) {
  .navbar-nav {
    gap: 0.25rem;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: row;
    width: auto;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .nav-item {
    margin: 0 5px;
  }

  .nav-link {
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem !important;
    border-radius: 40px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
    width: auto;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #FFB347 !important;
    background: rgba(255, 179, 71, 0.15);
    transform: none;
  }

  .nav-link.active {
    color: #FFB347 !important;
    background: rgba(255, 179, 71, 0.2);
    font-weight: 600;
  }

  .dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    width: auto;
    position: absolute;
  }

  .dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s;
    border: none;
    font-size: 1rem;
  }

  .dropdown-item:hover {
    background: #f3e9ff;
    color: #663399;
    padding-left: 1.8rem;
  }

  .dropdown-divider {
    display: block;
  }

  .btn-book-now {
    background: linear-gradient(105deg, #FFB347, #FF9800);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.55rem 1.5rem !important;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    font-size: 0.95rem;
    width: auto;
    margin: 0;
    display: inline-block;
  }

  .btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4) !important;
    background: linear-gradient(105deg, #FF9800, #F57C00) !important;
  }
}

/* Prevent content from hiding under fixed header */
body {
  scroll-padding-top: 80px;
}



.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 280px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 51, 153, 0.1), rgba(139, 95, 191, 0.1));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 0.8s ease;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.hero-description {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

@media (max-width: 768px) {
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 11px 20px;
    font-size: 14px;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #FFB347, #FF9800);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 25px;
  }
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: #663399;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 6px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: #8B5FBF;
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 12px;
  }
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1f4, #fce4ec);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(139, 95, 191, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B5FBF 0%, #FFB347 100%);
  transition: all 0.4s ease;
}

.service-card.premium-card::before {
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(102, 51, 153, 0.25);
  border-color: rgba(139, 95, 191, 0.3);
}

.service-card.premium-card:hover {
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-card.highlighted {
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
  border-top: 4px solid #FFB347;
  transform: scale(1.05);
}

.service-card.highlighted:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon-bg {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB347 0%, #FF9800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.service-icon-bg::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB347 0%, #FF9800 100%);
  z-index: -1;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-bg {
  transform: scale(1.1) rotateZ(5deg);
  box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
}

.service-icon-bg.premium-bg {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.service-card:hover .service-icon-bg.premium-bg {
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.service-card h3 {
  font-size: 24px;
  color: #663399;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-subtitle {
  font-size: 14px;
  color: #8B5FBF;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 25px 0;
  text-align: left;
}

.feature {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature i {
  color: #FFB347;
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.service-card:hover .feature {
  padding-left: 12px;
  background: rgba(255, 179, 71, 0.05);
}

.premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.service-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  color: #FF9800;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  margin: 15px 0 15px 0;
  border: 1px solid rgba(255, 179, 71, 0.3);
  letter-spacing: 0.3px;
}

.trust-badge i {
  font-size: 14px;
}

.trust-badge.premium-trust {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

.trust-badge.premium-trust i {
  color: #FFD700;
}

.service-card .duration {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.service-card .description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 28px;
  color: #FFB347;
  font-weight: 700;
  margin: 15px 0;
  letter-spacing: -0.5px;
}

.price .per-person {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  margin-top: 5px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 280px;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 51, 153, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(180deg, #fce4ec, #fdf1f4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(102, 51, 153, 0.15);
}

.feature-icon {
  font-size: 45px;
  color: #FFB347;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 18px;
  color: #663399;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #FFB347;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.stars {
  color: #FFB347;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  color: #663399;
}

.testimonial-author strong {
  font-weight: 700;
}

.testimonial-author span {
  font-size: 12px;
  color: #8B5FBF;
  font-weight: 500;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1f4, #fce4ec);
}

/* ========== BOOKING FORM ========== */
.booking-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(102, 51, 153, 0.15);
  border-top: 5px solid #FFB347;
  max-width: 700px;
  margin: 0 auto;
}

.booking-card h2 {
  color: #663399;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 25px;
}

input,
select,
textarea,
.form-control {
  padding: 14px;
  border: 2px solid #E8D4C0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #FFF9FA;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  border-color: #FFB347;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.1);
}

input[type="submit"],
button[type="submit"] {
  padding: 14px 40px;
  background: linear-gradient(135deg, #FFB347, #FF9800);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #663399, #4A2470);
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 0;
  box-shadow: 0 -4px 15px rgba(102, 51, 153, 0.2);
}

.footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer a {
  color: #FFB347;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .nav-container {
    /* flex-direction: column; */
    gap: 15px;
  }

  .navbar {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.highlighted {
    transform: scale(1);
  }

  .service-card.highlighted:hover {
    transform: scale(1) translateY(-10px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 25px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-text h3 {
    font-size: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding: 20px;
    padding-left: 30px;
  }

  .timeline-marker {
    font-size: 16px;
  }

  .timeline-item h3 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 12px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 25px;
  }

  .value-icon {
    font-size: 40px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .value-card p {
    font-size: 13px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: Extra Small (< 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero {
    min-height: 250px !important;
  }

  .hero-title {
    font-size: 28px;
  }

  .timeline-section {
    padding: 40px 0;
  }

  .values-section {
    padding: 40px 0;
  }

  .stats-section {
    padding: 40px 0;
  }
}

/* ========== ABOUT PAGE STYLES ========== */
.about-section {
  padding: 80px 0;
  background: #FFFFFF;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 25px 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .about-content {
    gap: 15px;
  }
}

.about-text h2 {
  font-size: 38px;
  color: #663399;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .about-text p {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.about-text h3 {
  font-size: 22px;
  color: #663399;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-text h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .about-text h3 {
    font-size: 16px;
    margin-top: 15px;
  }
}

.responsive-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(102, 51, 153, 0.2);
}

/* Timeline Styles */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1f4, #fce4ec);
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 25px 0;
  }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
}

.timeline-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFB347;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .timeline-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding: 15px;
  }
}

.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(102, 51, 153, 0.15);
}

.timeline-marker {
  font-size: 18px;
  font-weight: 700;
  color: #FFB347;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
  .timeline-marker {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .timeline-marker {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.timeline-item h3 {
  font-size: 18px;
  color: #663399;
  margin-bottom: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .timeline-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .timeline-item h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.timeline-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-item p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .timeline-item p {
    font-size: 11px;
  }
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: white;
}

@media (max-width: 768px) {
  .values-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .values-section {
    padding: 25px 0;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
}

.value-card {
  text-align: center;
  padding: 35px;
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
  border-radius: 12px;
  border: 2px solid #E1BEE7;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .value-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 20px;
  }
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
  border-color: #FFB347;
}

.value-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .value-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .value-icon {
    font-size: 35px;
    margin-bottom: 10px;
  }
}

.value-card h3 {
  font-size: 20px;
  color: #663399;
  margin-bottom: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .value-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .value-card p {
    font-size: 12px;
  }
}

/* Statistics Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #663399, #8B5FBF);
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 25px 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 179, 71, 0.3);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .stat-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .stat-card {
    padding: 20px 15px;
  }
}

.stat-card:hover {
  background: rgba(255, 179, 71, 0.1);
  border-color: #FFB347;
  transform: translateY(-8px);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #FFB347;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 26px;
    margin-bottom: 5px;
  }
}

.stat-label {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stat-label {
    font-size: 12px;
  }
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1f4, #fce4ec);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 25px 0;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    gap: 20px;
  }
}

.contact-info h2 {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFB347;
}

@media (max-width: 768px) {
  .info-card {
    padding: 20px;
    gap: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .info-card {
    padding: 15px;
    gap: 12px;
    margin-bottom: 15px;
  }
}

.info-icon {
  font-size: 40px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .info-icon {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .info-icon {
    font-size: 30px;
  }
}

.info-content h3 {
  font-size: 18px;
  color: #663399;
  margin-bottom: 8px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .info-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .info-content h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.info-content p {
  font-size: 13px;
  color: #666;
  margin: 3px 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-content p {
    font-size: 12px;
    margin: 2px 0;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .info-content p {
    font-size: 11px;
    margin: 1px 0;
  }
}

/* Contact Form */
.contact-form-wrapper h2 {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #FFB347;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }
}

.form-group {
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 18px;
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #663399;
  font-size: 14px;
}

@media (max-width: 480px) {
  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #E8D4C0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #FAFAF8;
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 13px;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFB347;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 25px 0;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    gap: 15px;
    margin-top: 20px;
  }
}

.faq-card {
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #FFB347;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .faq-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .faq-card {
    padding: 20px;
  }
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.2);
}

.faq-card h3 {
  font-size: 16px;
  color: #663399;
  margin-bottom: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .faq-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.faq-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-card p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .faq-card p {
    font-size: 11px;
  }
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #fdf1f4;
  width: 100%;
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 25px 0;
  }
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 500px;
  margin: 0;
}

@media (max-width: 768px) {
  .map-placeholder {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .map-placeholder {
    height: 300px;
  }
}

/* ========== PRIVACY POLICY PAGE STYLES ========== */
.privacy-section {
  padding: 80px 0;
  background: white;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-card {
  background: linear-gradient(135deg, #FFF8DC, #FFEFD5);
  padding: 35px;
  margin-bottom: 25px;
  border-radius: 12px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.policy-card h3 {
  font-size: 22px;
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 700;
  margin-top: 0;
}

.policy-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-card:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.policy-list li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.policy-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 16px;
}

.contact-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 4px solid #FFD700;
}

.contact-box p {
  margin: 8px 0;
  font-size: 14px;
}

/* ========== BOOKING MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #f9f7f4;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #A0522D;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #8B4513;
}

.modal-content .booking-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
}

.modal-content .booking-card h2 {
  color: #8B4513;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
    max-height: 85vh;
  }

  .close-btn {
    font-size: 28px;
    right: 10px;
    top: 10px;
  }
}