/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.bg-light { background-color: var(--color-bg-light); }
.bg-white { background-color: var(--color-white); }
.bg-light-green { background-color: #EAF0E6; }
.bg-light-yellow { background-color: #FFF8E7; }
.bg-yellow-pattern { background-color: #F5E6B8; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-center { align-items: center; }
.flex-reverse { flex-direction: row-reverse; }
.w-50 { width: 50%; }
.pr-40 { padding-right: 40px; }
.pl-40 { padding-left: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mx-3 { margin-left: 15px; margin-right: 15px; }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }
.dark-outline { color: var(--color-primary); border: 2px solid var(--color-primary); background: transparent; }
.dark-outline:hover { background: var(--color-primary); color: var(--color-white); }
.circle-img { border-radius: 50%; width: 380px; height: 380px; object-fit: cover; border: 12px solid var(--color-white); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.border-top { border-top: 1px solid var(--color-border); }

/* =====================================================
   SECTION TITLES
   ===================================================== */
.section-title { text-align: center; margin-bottom: 45px; }
.section-title h2 { font-size: 2.6rem; margin-bottom: 12px; }
.section-title h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; }
.section-title p { color: var(--color-text-light); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* =====================================================
   DESTINATIONS
   ===================================================== */
.iconic-destinations-title { text-align: center; margin-bottom: 45px; }
.explore-subtitle { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.explore-subtitle .text { margin: 0 16px; font-size: 0.88rem; color: var(--color-text-light); font-family: var(--font-body); }
.explore-subtitle .line { width: 55px; height: 1.5px; background: var(--color-primary); opacity: 0.5; }
.iconic-destinations-title h2 { font-size: 2.8rem; margin-bottom: 12px; color: var(--color-text); font-style: italic; }
.iconic-destinations-title p { color: var(--color-text-light); font-size: 1rem; max-width: 750px; margin: 0 auto; font-style: italic; }

.destinations-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .destinations-grid { grid-template-columns: repeat(4, 1fr); } }

.destination-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.destination-card:hover img { transform: scale(1.06); }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 45%; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); z-index: 1; pointer-events: none; }
.destination-card .card-content { position: absolute; bottom: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; }
.destination-card h3 { color: var(--color-white); margin: 0; font-size: 1.15rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-body); }
.icon-link {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
  display: flex; justify-content: center; align-items: center;
  color: var(--color-white); font-size: 0.7rem; transition: var(--transition); flex-shrink: 0;
}
.icon-link:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }

/* =====================================================
   EXPERIENCES CAROUSEL
   ===================================================== */
.experiences-carousel { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scrollbar-width: none; }
.experiences-carousel::-webkit-scrollbar { display: none; }
.experience-card { min-width: 230px; text-align: center; flex-shrink: 0; }
.experience-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
.experience-card h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.slider-nav button {
  background: var(--color-white); border: 1px solid var(--color-border);
  width: 42px; height: 42px; border-radius: 50%; color: var(--color-primary);
  cursor: pointer; transition: var(--transition); margin-left: 10px;
}
.slider-nav button:hover { background: var(--color-primary); color: var(--color-white); }

/* =====================================================
   TOURS
   ===================================================== */
.tours-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tours-tabs button {
  padding: 10px 25px; border-radius: 30px; background: transparent;
  border: 1px solid var(--color-border); font-weight: 600;
  color: var(--color-text-light); cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.tours-tabs button.active, .tours-tabs button:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

.tours-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tours-grid { grid-template-columns: repeat(3, 1fr); } }

.tour-card { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: var(--transition); }
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.tour-img { position: relative; }
.tour-img img { width: 100%; height: 220px; object-fit: cover; }
.tour-img .badge { position: absolute; top: 14px; left: 14px; background: var(--color-accent); color: var(--color-white); padding: 5px 12px; border-radius: 5px; font-size: 0.78rem; font-weight: 700; }
.tour-content { padding: 22px; }
.tour-content h3 { font-size: 1.2rem; margin-bottom: 12px; min-height: 50px; font-family: var(--font-body); font-weight: 700; }
.tour-meta { color: var(--color-text-light); margin-bottom: 12px; font-size: 0.9rem; }
.tour-meta i { color: var(--color-accent); margin-right: 5px; }
.tour-price { font-size: 1rem; margin-bottom: 18px; border-top: 1px solid var(--color-border); padding-top: 14px; }
.tour-price strong { color: var(--color-primary); font-size: 1.25rem; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.features-infographic { position: relative; max-width: 800px; margin: 0 auto; min-height: 400px; display: flex; justify-content: center; align-items: center; }
.center-circle {
  width: 200px; height: 200px; background: var(--color-white); border-radius: 50%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; border: 5px solid var(--color-accent); z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.center-circle h3 { margin-bottom: 5px; font-size: 1.1rem; }
.center-circle p { font-size: 0.78rem; color: var(--color-text-light); margin: 0; }
.feature-item { position: absolute; display: flex; align-items: center; width: 280px; }
.icon-circle {
  width: 48px; height: 48px; background: var(--color-primary); color: var(--color-white);
  border-radius: 50%; display: flex; justify-content: center; align-items: center;
  font-weight: bold; font-size: 1.1rem; flex-shrink: 0;
}
.feature-item .text { padding: 0 14px; }
.feature-item h4 { margin-bottom: 4px; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.feature-item p { font-size: 0.85rem; margin: 0; color: var(--color-text-light); }
.item-1 { top: 15px; left: 0; }
.item-2 { top: 15px; right: 0; flex-direction: row-reverse; text-align: right; }
.item-3 { bottom: 15px; left: 0; }
.item-4 { bottom: 15px; right: 0; flex-direction: row-reverse; text-align: right; }

.hero-break-image { position: relative; }

/* =====================================================
   LODGES
   ===================================================== */
.lodges-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .lodges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lodges-grid { grid-template-columns: repeat(4, 1fr); } }

.lodge-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: var(--transition); background: var(--color-white); }
.lodge-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.lodge-card img { width: 100%; height: 220px; object-fit: cover; }
.lodge-content { padding: 18px; }
.lodge-content h3 { font-size: 1.1rem; margin-bottom: 5px; font-family: var(--font-body); font-weight: 700; }
.lodge-content p { color: var(--color-text-light); font-size: 0.88rem; margin: 0; }
.lodge-content i { color: var(--color-accent); margin-right: 4px; }

/* =====================================================
   PARTNERS
   ===================================================== */
.partners-logos { display: flex; justify-content: center; gap: 40px; align-items: center; flex-wrap: wrap; }
.partners-logos span { color: var(--color-text-light); }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-content h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; }
.about-image { text-align: center; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { background: var(--color-white); padding: 28px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.testimonial-card .stars { color: var(--color-accent); margin-bottom: 14px; }
.testimonial-card h3 { font-size: 1.15rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 700; }
.testimonial-card p { font-style: italic; color: var(--color-text-light); margin-bottom: 18px; }
.author strong { display: block; color: var(--color-primary); }
.author span { font-size: 0.82rem; color: var(--color-text-light); }
.text-green { color: #00aa6c; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative; padding: 100px 0; text-align: center;
  color: var(--color-white); background-size: cover;
  background-position: center; background-attachment: fixed;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--color-white); font-size: 2.5rem; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-image img { border-radius: 12px; width: 100%; height: 480px; object-fit: cover; }
.accordion-item { background: var(--color-white); margin-bottom: 12px; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.accordion-header { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-header h4 { margin: 0; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.accordion-header i { color: var(--color-accent); transition: var(--transition); }
.accordion-body { padding: 0 20px 18px; display: none; color: var(--color-text-light); }

/* =====================================================
   PRE-FOOTER & FOOTER
   ===================================================== */
.pre-footer { background: var(--color-white); padding: 50px 0; border-top: 1px solid var(--color-border); }
.pre-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.pre-footer h2 { margin-bottom: 18px; font-size: 1.8rem; }
.pre-footer h2 .text-primary { color: var(--color-primary); }
.partner-logos { margin-top: 18px; display: flex; gap: 20px; color: var(--color-text-light); font-family: var(--font-body); }
.award-badge { text-align: center; }
.award-badge i { font-size: 3.5rem; color: #D4AF37; margin-bottom: 8px; display: block; }
.award-badge p { font-weight: bold; font-family: var(--font-heading); color: var(--color-primary); font-size: 0.9rem; }

.site-footer { background: #111; color: #ccc; }
.footer-contact-bar { display: flex; justify-content: space-between; align-items: center; padding: 35px 0; border-bottom: 1px solid #333; margin-bottom: 35px; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 60px; width: auto; }
.contact-info-items { display: flex; gap: 35px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item i { font-size: 1.4rem; color: var(--color-accent); }
.contact-item p { margin: 0; font-size: 0.82rem; }
.contact-item strong { color: var(--color-white); }
.footer-widgets { display: grid; grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
@media (min-width: 640px) { .footer-widgets { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-widgets { grid-template-columns: 1fr 1fr 1.5fr 1.5fr; } }
.widget h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.widget ul { list-style: none; }
.widget ul li { margin-bottom: 10px; }
.widget ul li a { color: #bbb; transition: var(--transition); font-size: 0.92rem; }
.widget ul li a:hover { color: var(--color-accent); padding-left: 5px; }
.categories-grid { display: flex; gap: 25px; }
.newsletter-form { display: flex; margin-top: 14px; margin-bottom: 18px; }
.newsletter-form input { flex: 1; padding: 10px 16px; border: none; border-radius: 30px 0 0 30px; outline: none; font-family: var(--font-body); }
.newsletter-form button { border-radius: 0 30px 30px 0; padding: 10px 18px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: #333; display: flex; justify-content: center; align-items: center;
  color: var(--color-white); transition: var(--transition);
}
.social-icons a:hover { background: var(--color-accent); color: var(--color-primary); }
.footer-bottom { background: #000; padding: 18px 0; font-size: 0.88rem; }
.bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.bottom-links a { color: #bbb; margin-left: 15px; }
.bottom-links a:hover { color: var(--color-accent); }

/* =====================================================
   TORN EDGES
   ===================================================== */
.torn-edge-top {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 30" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,30 L0,0 Q10,15 20,0 T40,0 T60,0 T80,0 T100,0 T120,0 T140,0 T160,0 T180,0 T200,0 T220,0 T240,0 T260,0 T280,0 T300,0 T320,0 T340,0 T360,0 T380,0 T400,0 T420,0 T440,0 T460,0 T480,0 T500,0 T520,0 T540,0 T560,0 T580,0 T600,0 T620,0 T640,0 T660,0 T680,0 T700,0 T720,0 T740,0 T760,0 T780,0 T800,0 T820,0 T840,0 T860,0 T880,0 T900,0 T920,0 T940,0 T960,0 T980,0 L1000,0 L1000,30 Z" fill="%23ffffff"/></svg>');
  height: 30px; margin-top: -29px; position: relative; z-index: 10;
}
.torn-edge-bottom {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 30" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0 L0,30 Q10,15 20,30 T40,30 T60,30 T80,30 T100,30 T120,30 T140,30 T160,30 T180,30 T200,30 T220,30 T240,30 T260,30 T280,30 T300,30 T320,30 T340,30 T360,30 T380,30 T400,30 T420,30 T440,30 T460,30 T480,30 T500,30 T520,30 T540,30 T560,30 T580,30 T600,30 T620,30 T640,30 T660,30 T680,30 T700,30 T720,30 T740,30 T760,30 T780,30 T800,30 T820,30 T840,30 T860,30 T880,30 T900,30 T920,30 T940,30 T960,30 T980,30 L1000,30 L1000,0 Z" fill="%23ffffff"/></svg>');
  height: 30px; margin-bottom: -29px; position: relative; z-index: 10;
}
.bg-white-edge.torn-edge-top {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 30" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,30 L0,0 Q10,15 20,0 T40,0 T60,0 T80,0 T100,0 T120,0 T140,0 T160,0 T180,0 T200,0 T220,0 T240,0 T260,0 T280,0 T300,0 T320,0 T340,0 T360,0 T380,0 T400,0 T420,0 T440,0 T460,0 T480,0 T500,0 T520,0 T540,0 T560,0 T580,0 T600,0 T620,0 T640,0 T660,0 T680,0 T700,0 T720,0 T740,0 T760,0 T780,0 T800,0 T820,0 T840,0 T860,0 T880,0 T900,0 T920,0 T940,0 T960,0 T980,0 L1000,0 L1000,30 Z" fill="%23EAF0E6"/></svg>');
}

/* =====================================================
   DESTINATION PAGE
   ===================================================== */
.destination-hero {
  position: relative; height: 55vh; min-height: 350px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: top center;
}
.destination-hero .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.destination-hero .hero-content { position: relative; z-index: 2; text-align: center; }
.destination-hero .hero-title { font-size: 3.2rem; margin-bottom: 18px; color: var(--color-white); }
.destination-hero .hero-text { font-size: 1.1rem; max-width: 750px; margin: 0 auto; color: rgba(255,255,255,0.9); }

.destination-content .content-row { display: flex; gap: 40px; align-items: center; margin-bottom: 60px; }
.destination-content .content-text { flex: 1; }
.destination-content .content-image { flex: 1; }
.destination-content .content-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; }
.destination-content .content-text h2 { margin-bottom: 18px; }
.destination-content .content-text p { color: var(--color-text-light); margin-bottom: 14px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features-infographic { flex-direction: column; height: auto; gap: 25px; min-height: auto; }
  .feature-item { position: static; width: 100%; justify-content: center; text-align: left !important; flex-direction: row !important; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .section-title h2 { font-size: 2rem; }
  .iconic-destinations-title h2 { font-size: 2.2rem; }
  .pre-footer-inner, .bottom-inner { flex-direction: column; text-align: center; }
  .footer-contact-bar { flex-direction: column; text-align: center; }
  .contact-info-items { flex-direction: column; align-items: center; }
  .destination-content .content-row { flex-direction: column !important; }
  .destination-content .content-text, .destination-content .content-image { width: 100%; }
  .cta-content h2 { font-size: 1.8rem; }
}
