/* ============================================
   Jusoor Travel - Bali Eid Adventure
   Pure CSS - No frameworks
   Mobile-First Responsive Design
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #1a2456;
  --navy-dark: #0f1535;
  --navy-light: #2a3a7a;
  --gold: #f5a623;
  --gold-light: #ffc85a;
  --gold-dark: #d4891a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #e8ecf4;
  --gray: #8892b0;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-badge--gold {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
}

.section-badge--gold-dark {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold-light);
  font-size: 0.875rem;
}

.section-title {
  font-size: 1.625rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-title--white {
  color: var(--white);
}

.section-desc {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}

/* ---- Language Toggle (Fixed - hidden on mobile) ---- */
.lang-toggle-fixed {
  position: fixed;
  top: 1.25rem;
  z-index: 50;
  display: none;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.25rem;
}

[dir="rtl"] .lang-toggle-fixed {
  right: 20px;
}

[dir="ltr"] .lang-toggle-fixed {
  left: 20px;
}

.lang-toggle-fixed button {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn-active {
  background: var(--gold);
  color: var(--navy-dark);
}

.lang-btn-inactive {
  background: var(--navy-dark);
  color: var(--white);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.25rem;
}

.navbar-left {
  flex: 0 0 auto;
}

.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-right {
  flex: 0 0 auto;
}

.navbar-logo {
  height: 2.5rem;
  width: 85px;
  object-fit: contain;
}

.nav-lang-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.6875rem;
  border: none;
  background: rgba(245, 166, 35, 0.1);
  color: var(--navy-dark);
  cursor: pointer;
  transition: background 0.3s;
}

.nav-lang-btn:hover {
  background: rgba(245, 166, 35, 0.1);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.6875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-dark);
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn--full {
  width: 100%;
}

.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---- SVG Icons ---- */
.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background-image: url('../images/tanah-lot.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
  overflow: hidden;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15, 21, 53, 0.88),
    rgba(15, 21, 53, 0.65),
    rgba(26, 36, 86, 0.80)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: var(--gold-light);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.625rem;
}

.hero-title {
  font-size: clamp(1.25rem, 6vw, 2rem);
  color: var(--white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-title .gold {
  color: var(--gold);
  display: block;
  font-size: clamp(1.5rem, 7vw, 2.25rem);
  margin-top: 0.125rem;
}

.hero-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  padding: 0;
}

.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-dates .separator {
  opacity: 0.5;
}

.hero-dates .icon {
  color: var(--gold);
  width: 1rem;
  height: 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 260px;
  font-size: 0.8125rem;
  padding: 0.625rem 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.5625rem;
  animation: bounce 2s infinite;
  text-align: center;
  padding: 0 1rem;
  width: 90%;
  max-width: 320px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- Seats Banner ---- */
.seats-banner {
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-weight: 700;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ---- Stats Section ---- */
.stats {
  background: linear-gradient(to right, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 2rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-number {
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.6875rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* ---- Pricing Section ---- */
.pricing {
  padding: 3rem 1rem;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  border: 2px solid var(--gray-light);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  order: -1;
}

.price-card--featured:hover {
  box-shadow: 0 15px 30px rgba(26, 36, 86, 0.3);
  transform: scale(1.02);
}

.price-card--featured .price-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.price-card--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.price-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
}

[dir="rtl"] .price-card-badge {
  right: auto;
  left: 0.75rem;
}

.price-label {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 0.375rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', serif;
}

.price-card--disabled .price-amount {
  color: var(--navy);
}

.price-unit {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.price-timing {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.price-timing--closed {
  color: #ef4444;
  font-weight: 700;
  opacity: 1;
}

/* Visa Notice */
.visa-notice {
  border: 2px solid var(--gold);
  background: rgba(255, 243, 205, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto 1.5rem;
}

.visa-notice-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.visa-notice h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.visa-notice p {
  color: var(--gray);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.group-discount {
  text-align: center;
  color: var(--gray);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
}

/* ---- Itinerary Section ---- */
.itinerary {
  padding: 3rem 1rem;
  background: var(--white);
}

/* Sketch Itinerary */
.sketch-itinerary {
  background: linear-gradient(to right, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.sketch-header {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.75rem 1rem;
}

.sketch-header h3 {
  font-size: 1.125rem;
  font-weight: 900;
}

.sketch-body {
  padding: 1rem;
}

.sketch-day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0.75rem;
}

.sketch-day:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sketch-day-badge {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.6875rem;
  flex-shrink: 0;
}

.sketch-day-title {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Detailed Itinerary */
.detailed-itinerary {
  background: var(--off-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.detailed-header {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.detailed-header h3 {
  font-size: 1.125rem;
  font-weight: 900;
}

.detailed-body {
  padding: 1.25rem 1rem;
}

.day-block {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

[dir="rtl"] .day-block {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1rem;
}

.day-block:last-child {
  margin-bottom: 0;
}

.day-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.day-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.day-info {
  flex: 1;
}

.day-title {
  font-size: 1.0625rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.day-activities {
  list-style: none;
}

.day-activities li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.day-activities li .bullet {
  color: var(--gold);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.day-activities li span {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.8125rem;
}

/* ---- Includes Section ---- */
.includes {
  background: linear-gradient(to right, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 3rem 1rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.includes-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.includes-title--included {
  color: var(--gold);
}

.includes-title--excluded {
  color: #f87171;
}

.includes-list li {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.includes-list .check-icon {
  color: #4ade80;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.includes-list .x-icon {
  color: #f87171;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

/* ---- Gallery Section ---- */
.gallery {
  padding: 3rem 1rem;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 0.5rem;
  height: 8rem;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  height: 10rem;
}

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

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

/* ---- Booking Section ---- */
.booking {
  padding: 3rem 1rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.8125rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}

.contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--gray);
}

.contact-value {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

.btn-whatsapp-main {
  margin-top: 1.5rem;
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--off-white);
  border-radius: 1rem;
  padding: 1.5rem;
}

.booking-form-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 2px solid var(--gray-light);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
  color: var(--navy);
  font-size: 0.875rem;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

[dir="rtl"] .form-group select {
  background-position: left 0.875rem center;
  padding-right: 0.875rem;
  padding-left: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 4rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  color: #16a34a;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.form-success p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-logo {
  height: 3.5rem;
  margin: 0 auto 0.75rem;
}

.footer-tagline {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
}

.footer-contact {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--navy-dark);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.6875rem;
  color: var(--gray);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.3s;
  text-decoration: none;
}

[dir="rtl"] .whatsapp-float {
  left: 1.25rem;
}

[dir="ltr"] .whatsapp-float {
  right: 1.25rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
}

/* ---- Hidden helper ---- */
.hidden {
  display: none !important;
}

/* ============================================
   Tablet (min-width: 480px)
   ============================================ */
@media (min-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero-title .gold {
    font-size: 2.75rem;
  }

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

  .hero-dates {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-buttons {
    flex-direction: row;
    padding: 0;
  }

  .hero-buttons .btn {
    width: auto;
    max-width: none;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .section-desc {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .gallery-item {
    height: 10rem;
  }

  .gallery-item:first-child {
    height: 12rem;
  }

  .day-image {
    height: 12rem;
  }

  .seats-banner {
    font-size: 0.8125rem;
  }
}

/* ============================================
   Tablet Landscape (min-width: 640px)
   ============================================ */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .navbar-inner {
    padding: 0.75rem 1.5rem;
  }

  .navbar-logo {
    height: 4rem;
    width: 140px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title .gold {
    font-size: 3.25rem;
  }

  .hero-desc {
    font-size: 1.125rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .price-card {
    padding: 2rem;
  }

  .price-amount {
    font-size: 2.75rem;
  }

  .visa-notice {
    flex-direction: row;
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    height: 12rem;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    height: 12rem;
  }

  .sketch-day-badge {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }

  .sketch-day-title {
    font-size: 1rem;
  }

  .day-title {
    font-size: 1.25rem;
  }

  .day-activities li span {
    font-size: 0.875rem;
  }

  .stats {
    padding: 3rem 1.5rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .seats-banner {
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
  }
}

/* ============================================
   Desktop (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .navbar-inner {
    padding: 1rem 1.5rem;
  }

  .navbar-logo {
    height: 5rem;
    width: 170px;
  }

  .nav-lang-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .btn--lg {
    padding: 0.875rem 2rem;
    font-size: 1.0625rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-title .gold {
    font-size: 3.75rem;
  }

  .hero-desc {
    font-size: 1.25rem;
  }

  .hero-dates {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-scroll {
    font-size: 0.8125rem;
    max-width: none;
  }

  .section-badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 1.125rem;
  }

  .stats {
    padding: 4rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .pricing {
    padding: 5rem 1.5rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .itinerary {
    padding: 5rem 1.5rem;
  }

  .sketch-header {
    padding: 1rem 2rem;
  }

  .sketch-header h3 {
    font-size: 1.5rem;
  }

  .sketch-body {
    padding: 2rem;
  }

  .sketch-day-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .sketch-day-title {
    font-size: 1.125rem;
  }

  .detailed-header {
    padding: 1rem 2rem;
  }

  .detailed-header h3 {
    font-size: 1.5rem;
  }

  .detailed-body {
    padding: 2rem;
  }

  .day-content {
    flex-direction: row;
    gap: 2rem;
  }

  .day-image {
    width: 16rem;
    height: 12rem;
  }

  .day-title {
    font-size: 1.5rem;
  }

  .day-activities li span {
    font-size: 0.9375rem;
  }

  .includes {
    padding: 5rem 1.5rem;
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .includes-title {
    font-size: 1.5rem;
  }

  .includes-list li {
    font-size: 0.9375rem;
  }

  .gallery {
    padding: 5rem 1.5rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-item {
    height: 16rem;
  }

  .gallery-item:first-child {
    height: 16rem;
  }

  .booking {
    padding: 5rem 1.5rem;
  }

  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

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

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

  .booking-form-wrapper {
    padding: 2rem;
  }

  .booking-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem;
  }

  .footer-logo {
    height: 5rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-contact {
    font-size: 0.875rem;
  }

  .footer-links {
    gap: 1.5rem;
    font-size: 0.875rem;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  .whatsapp-float {
    width: 3.5rem;
    height: 3.5rem;
    bottom: 2rem;
  }

  [dir="rtl"] .whatsapp-float {
    left: 2rem;
  }

  [dir="ltr"] .whatsapp-float {
    right: 2rem;
  }

  .whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .lang-toggle-fixed {
    display: flex;
  }
}

/* ============================================
   Large Desktop (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .navbar-inner {
    padding: 1rem 2rem;
  }

  .navbar-logo {
    height: 6rem;
    width: 200px;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-title .gold {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .gallery-item {
    height: 20rem;
  }

  .gallery-item:first-child {
    height: 20rem;
  }

  .price-card--featured:hover {
    transform: scale(1.03);
  }

  .day-image {
    width: 18rem;
    height: 14rem;
  }
}

/* ============================================
   Extra Large Desktop (min-width: 1280px)
   ============================================ */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-title .gold {
    font-size: 5rem;
  }
}

/* ---- RTL specific adjustments ---- */
[dir="rtl"] {
  font-family: 'Cairo', 'Poppins', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Cairo', 'Playfair Display', serif;
  letter-spacing: 0;
}

/* ---- Print styles ---- */
@media print {
  .navbar,
  .lang-toggle-fixed,
  .whatsapp-float,
  .hero-scroll {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
  }
}
