@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;700&family=Montserrat:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body.lang-ar .en { display: none !important; }
body.lang-en .ar { display: none !important; }
body.lang-ar { font-family: 'Alexandria', sans-serif; direction: rtl; }
body.lang-en { font-family: 'Montserrat', sans-serif; direction: ltr; }

.font-light { font-weight: 300 !important; }
.font-bold { font-weight: 700 !important; }

:root {
  --bg-cream: #FDFBF7;
  --text-navy: #0F1E36;
  --gold-accent: #C5A059;
}

/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-navy);
  overflow-x: hidden !important;
  width: 100% !important;
}

.hero { 
  position: relative; 
  width: 100%; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  overflow: hidden; 
}

.hero-video { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  z-index: -2; 
}

.hero-overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(to bottom, rgba(15, 30, 54, 0.6), rgba(15, 30, 54, 0.2)); 
  z-index: -1; 
}

.hero-content { 
  position: relative; 
  z-index: 1; 
  padding: 0 20px; 
  max-width: 1200px; 
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

body.lang-en .hero-title {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem) !important;
}

.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  z-index: 1000;
}
.logo img { 
  height: 105px; /* Increased from 85px */
  width: auto; 
  object-fit: contain; 
}
.main-nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: #FFFFFF; text-decoration: none; font-size: 1rem; transition: 0.3s; }
.main-nav a:hover { color: var(--gold-accent, #D4AF37); }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}
.lang-btn:hover { background: #FFFFFF; color: #000000; }

.cta-btn { 
  display: inline-block; 
  margin-top: 30px; 
  background: transparent; 
  border: 1.5px solid rgba(255, 255, 255, 0.8); 
  color: #FFFFFF; 
  padding: 15px 40px; 
  border-radius: 50px; 
  text-decoration: none; 
  font-size: 1.2rem; 
  backdrop-filter: blur(5px);
  transition: all 0.3s ease; 
}
.cta-btn:hover { 
  background: #FFFFFF; 
  color: #000000; 
  border-color: #FFFFFF; 
}

/* Why Yemen Section */
.why-yemen {
  padding: 100px 20px;
  width: 100%;
  max-width: 100%;
  background-color: var(--bg-cream);
}

.why-yemen-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  width: 100%;
}

.why-yemen-title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  color: #0F1E36;
  margin-bottom: 15px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
}

body.lang-en .why-yemen-title {
  font-family: 'Cormorant Garamond', serif;
}

.why-yemen-subtitle {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Cairo', sans-serif;
}

body.lang-en .why-yemen-subtitle {
  font-family: 'Inter', sans-serif;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  border-radius: 16px;
  overflow: hidden;
  background: var(--text-navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 40px 60px 80px 60px;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

body.lang-en .slide-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
body.lang-ar .slide-overlay {
  background: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

/* Animations for sequential text */
.slide.active .slide-title {
  animation: slideUpFade 0.6s ease forwards 0.2s;
}
.slide.active .slide-desc {
  animation: slideUpFade 0.6s ease forwards 0.4s;
}
.slide.active .slide-cta {
  animation: slideUpFade 0.6s ease forwards 0.6s;
}

.slide-title, .slide-desc, .slide-cta {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.slide-desc {
  color: #E0E0E0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 25px;
  line-height: 1.6;
}

.slide-cta {
  display: inline-block;
  background: var(--gold-accent, #C9A84C);
  color: var(--text-navy, #0F1E36);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.slide-cta:hover {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: var(--gold-accent, #C9A84C);
}

body.lang-en .prev-btn { left: 20px; }
body.lang-en .next-btn { right: 20px; }
body.lang-ar .prev-btn { right: 20px; transform: translateY(-50%) rotate(180deg); }
body.lang-ar .next-btn { left: 20px; transform: translateY(-50%) rotate(180deg); }

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dots-container {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--gold-accent, #C9A84C);
  width: 30px;
  border-radius: 5px;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold-accent, #C9A84C);
}

body.lang-ar .progress-bar {
  margin-left: auto;
  margin-right: 0;
}

@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

@media (max-width: 768px) {
  .slider-container {
    aspect-ratio: 4 / 5;
  }
  .slide {
    padding: 30px 20px 80px 20px;
  }
}

/* Mega Dropdown Menu */
.main-nav ul li.has-dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 750px;
  max-width: 90vw;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1050;
  overflow: hidden;
}

.has-dropdown:hover .mega-dropdown,
.has-dropdown.dropdown-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 25px;
  gap: 30px;
}

/* Featured Card */
.featured-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.featured-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.featured-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.featured-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
}

.featured-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #E0E0E0;
  font-family: 'Cairo', sans-serif;
}

/* Links Columns */
.links-col {
  border-right: 1px solid #EAEAEA;
  padding-right: 20px;
}

/* Fix borders for LTR mode if needed */
body.lang-en .links-col {
  border-right: none;
  border-left: 1px solid #EAEAEA;
  padding-right: 0;
  padding-left: 20px;
}

.mega-dropdown .links-col ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-dropdown .links-col li a {
  color: var(--text-navy, #333333);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
}

/* Hover Arrow Effect */
.mega-dropdown .links-col li a::after {
  content: '←';
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.3s ease;
  margin-right: auto;
  color: var(--gold-accent, #C9A84C);
}

body.lang-en .mega-dropdown .links-col li a {
  font-family: 'Inter', sans-serif;
}

body.lang-en .mega-dropdown .links-col li a::after {
  content: '→';
  transform: translateX(15px);
  margin-right: 0;
  margin-left: auto;
}

.mega-dropdown .links-col li a:hover {
  color: var(--gold-accent, #C9A84C);
}

.mega-dropdown .links-col li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Active Link Example */
.mega-dropdown .links-col li.active a {
  color: var(--gold-accent, #C9A84C);
  border-bottom: 2px solid var(--gold-accent, #C9A84C);
  padding-bottom: 2px;
  display: inline-flex;
}

/* Destinations Section */
#destinations {
  background-color: #F5F2EB;
  padding: 100px 20px;
  font-family: 'Cairo', sans-serif;
}

body.lang-en #destinations {
  font-family: 'Inter', sans-serif;
}
body.lang-en #destinations h2 {
  font-family: 'Cormorant Garamond', serif;
}

.dest-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.dest-badge {
  display: inline-block;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.dest-title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  color: #1B2A4A;
  margin-bottom: 15px;
  font-weight: 700;
}

.dest-subtitle {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.6;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.destinations-carousel {
  display: flex; /* Force single row */
  overflow-x: scroll; /* Allow horizontal scrolling */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; /* Snap items to center */
  -webkit-overflow-scrolling: touch; /* For smooth mobile scrolling */
  gap: 25px; /* Maintain existing spacing */
  padding: 10px 0;
  width: 100%;
}

.destinations-carousel::-webkit-scrollbar {
  display: none; /* Hide the scrollbar for agency-level look */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 251, 247, 0.7); /* Cream color with opacity */
  border: none;
  color: #1B2A4A; /* Brand Navy color */
  font-size: 2rem;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: 0.3s;
}

.slider-arrow:hover {
  background: rgba(15, 30, 54, 0.1); /* Slight navy hover */
}

.prev-arrow { left: -30px; }
.next-arrow { right: -30px; }

.dest-card-wrap {
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
  flex: 0 0 280px; /* Force each card to a specific width */
  scroll-snap-align: center; /* Snap items to center */
}

.dest-card-wrap.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.dest-card {
  position: relative;
  height: 420px;
  background-color: transparent;
  clip-path: polygon(50% 0%, 95% 12%, 100% 35%, 100% 100%, 0% 100%, 0% 35%, 5% 12%);
  transition: all 0.4s ease;
  padding: 0px;
}

.dest-card-wrap:hover .dest-card,
.dest-card-wrap:focus-visible .dest-card {
  background-color: #C9A84C;
  padding: 2px;
}

.dest-card-wrap:hover,
.dest-card-wrap:focus-visible {
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}

.dest-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1B2A4A;
  clip-path: polygon(50% 0%, 95% 12%, 100% 35%, 100% 100%, 0% 100%, 0% 35%, 5% 12%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  text-align: center;
}

.dest-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.dest-card-wrap:hover .dest-card-img,
.dest-card-wrap:focus-visible .dest-card-img {
  opacity: 0.9;
}

.dest-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dest-card h3 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .dest-card h3 {
  font-family: 'Cormorant Garamond', serif;
}

.dest-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #C9A84C;
  margin: 10px auto 0 auto;
  transition: width 0.4s ease;
}

.dest-card-desc {
  color: #FFFFFF;
  font-size: 13px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

/* Map Section */
#map-explorer {
  background-color: var(--text-navy, #0d1f33);
  padding: 100px 5%;
  color: #fff;
  font-family: 'Cairo', sans-serif;
}
body.lang-en #map-explorer {
  font-family: 'Inter', sans-serif;
}

/* Map Section Header */
.map-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.map-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  margin-bottom: 16px;
}
.map-main-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
}
.map-subtitle {
  color: #B0C4DE;
  font-size: 16px;
  font-family: 'Cairo', sans-serif;
}

body.lang-en .map-badge,
body.lang-en .map-main-title,
body.lang-en .map-subtitle {
  font-family: 'Inter', sans-serif;
}

.map-container-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 380px !important; /* Map 1fr, Panel 380px */
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  border: none !important;
  background: transparent !important;
}

/* Info Panel */
.map-info-panel {
  grid-column: 2; /* Force Panel to Second Column */
  grid-row: 1;
  background: #16263F;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.panel-default {
  padding: 40px 30px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.panel-default .panel-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .panel-default .panel-title {
  font-family: 'Inter', sans-serif;
}

.panel-default-icon {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.default-map-pin {
  width: 55px;
  height: 55px;
  stroke: #C9A84C;
  fill: rgba(201, 168, 76, 0.1);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
  animation: floatPin 2.5s ease-in-out infinite;
}

@keyframes floatPin {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 4px 6px rgba(201, 168, 76, 0.3));
  }
  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 12px 18px rgba(201, 168, 76, 0.65));
  }
}

.gov-image-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-bottom: 0px;
  position: relative;
}
.gov-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.map-info-panel.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.map-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.map-close-btn:hover {
  background: rgba(0,0,0,0.8);
}

.map-img-container {
  position: relative;
  width: 100%;
  height: 180px;
}

.map-info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-info-badge {
  position: absolute;
  bottom: 15px;
  right: 25px;
  background: #d89837;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  z-index: 2;
}
body.lang-en .map-info-badge {
  right: auto;
  left: 25px;
  font-family: 'Inter', sans-serif;
}

.map-info-content {
  padding: 25px;
  padding-top: 25px;
}

.map-info-title {
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
}
body.lang-en .map-info-title {
  font-family: 'Inter', sans-serif;
}

.map-info-desc {
  font-size: 13px;
  color: #B0C4DE;
  line-height: 1.8;
  margin-bottom: 25px;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .map-info-desc {
  font-family: 'Inter', sans-serif;
}

.map-highlights-title {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}
body.lang-en .map-highlights-title {
  color: #C9A84C;
  font-size: 14px;
  font-weight: 700;
  margin: 15px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .highlight-item {
  font-family: 'Inter', sans-serif;
}

.btn-explore {
  display: block;
  width: 100%;
  background: var(--gold-accent, #C9A84C);
  color: #0d1f33;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .btn-explore {
  font-family: 'Inter', sans-serif;
}
.btn-explore:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* SVG Map Layout */
.map-svg-container {
  grid-column: 1; /* Force Map to First Column */
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yemen-map-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.map-svg-container text {
  font-size: 10px;
  font-weight: 700;
  fill: rgba(255,255,255,0.9);
  pointer-events: none;
  font-family: 'Cairo', sans-serif;
  text-anchor: middle;
}
body.lang-en .map-svg-container text {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
}

.map-sea-text {
  font-size: 18px !important;
  font-weight: 800;
  fill: rgba(255,255,255,0.15) !important;
  font-family: 'Cairo', sans-serif;
  pointer-events: none;
  letter-spacing: 2px;
}
body.lang-en .map-sea-text {
  font-family: 'Inter', sans-serif;
}

.map-strait-text {
  font-size: 7.5px !important;
  font-weight: 600;
  fill: rgba(255,255,255,0.25) !important;
  font-family: 'Cairo', sans-serif;
  pointer-events: none;
  text-anchor: middle;
}
body.lang-en .map-strait-text {
  font-family: 'Inter', sans-serif;
  font-size: 6px !important;
}

.island-label {
  font-size: 7px !important;
  fill: rgba(255,255,255,0.5) !important;
  font-weight: 600 !important;
}

.gov-path {
  fill: #14223A;
  stroke: rgba(201, 168, 76, 0.3);
  stroke-width: 0.6px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gov-path:hover {
  fill: rgba(201, 168, 76, 0.15);
  stroke: rgba(201, 168, 76, 0.6);
  stroke-width: 0.8px;
}

.gov-path.active {
  fill: rgba(201, 168, 76, 0.3) !important;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
  stroke: rgba(201, 168, 76, 0.7);
  stroke-width: 1px;
}

.gov-label {
  fill: rgba(255, 255, 255, 0.7);
  font-family: 'Cairo', sans-serif;
  font-size: 10px;
  font-weight: 600;
  pointer-events: none;
  transition: all 0.3s;
  text-anchor: middle;
}
body.lang-en .gov-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
}

.gov-path:hover + .gov-label,
.gov-path.active + .gov-label,
.gov-label.label-hover,
.gov-label.label-active {
  fill: #ffffff;
}

@media (max-width: 992px) {
  .map-container-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .map-info-panel {
    width: 100% !important;
    height: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 2 !important;
  }
  .map-svg-container {
    padding: 20px;
    height: 400px !important;
    width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 1 !important;
  }
}

.dest-card-wrap:hover .dest-card-desc,
.dest-card-wrap:focus-visible .dest-card-desc {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
}

.dest-btn {
  background-color: #C9A84C;
  color: #1B2A4A;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}
body.lang-en .dest-btn {
  font-family: 'Inter', sans-serif;
}

.dest-card-wrap:hover .dest-btn,
.dest-card-wrap:focus-visible .dest-btn {
  opacity: 1;
  transform: translateY(0);
}

/* responsive is no longer needed for the removed grid layout */

/* Destinations Mega Dropdown */
.dropdown-dest {
  width: 850px;
}

.dest-dropdown-grid {
  grid-template-columns: 1fr 1.5fr 1fr;
}

.mega-col-title {
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #C9A84C;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
body.lang-en .mega-col-title {
  font-family: 'Inter', sans-serif;
}

.dest-feat-card {
  display: block;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  text-decoration: none;
}

.dest-feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: transform 0.4s ease;
}

.dest-feat-card:hover img {
  transform: scale(1.05);
}

.dest-feat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

.dest-feat-badge {
  position: absolute;
  top: 8px;
  background: #C9A84C;
  color: #1B2A4A;
  font-size: 10px;
  border-radius: 4px;
  padding: 3px 6px;
  z-index: 2;
  font-weight: bold;
}

/* Base logic assumes RTL structure by default */
.dest-feat-badge {
  right: 8px;
}
body.lang-en .dest-feat-badge {
  right: auto;
  left: 8px;
}

.dest-feat-label {
  position: absolute;
  bottom: 8px;
  color: #FFFFFF;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
}

.dest-feat-label {
  right: 8px;
}
body.lang-en .dest-feat-label {
  right: auto;
  left: 8px;
  font-family: 'Inter', sans-serif;
}

.dest-motivation-text {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
  font-family: 'Cairo', sans-serif;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
body.lang-en .dest-motivation-text {
  font-family: 'Inter', sans-serif;
}

.dest-stat-row {
  font-size: 14px;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 8px;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .dest-stat-row {
  font-family: 'Inter', sans-serif;
}

.dest-gov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}

.dest-gov-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-gov-link {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

body.lang-en .mega-gov-link {
  font-family: 'Inter', sans-serif;
}

.mega-gov-link:hover {
  color: #C9A84C;
  transform: translateX(-4px);
}

body.lang-en .mega-gov-link:hover {
  transform: translateX(4px);
}

.mega-gov-link::after {
  content: '←';
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  margin-right: 6px;
  color: #C9A84C;
  display: inline-block;
}

body.lang-en .mega-gov-link::after {
  content: '→';
  margin-right: 0;
  margin-left: 6px;
  transform: translateX(4px);
}

.mega-gov-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.dest-planner-txt {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
body.lang-en .dest-planner-txt {
  font-family: 'Inter', sans-serif;
}

.dest-planner-cta {
  display: block;
  background: #C9A84C;
  color: #1B2A4A;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
}
body.lang-en .dest-planner-cta {
  font-family: 'Inter', sans-serif;
}

.dest-planner-cta:hover {
  background: #b8943d;
}

.dest-divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
  width: 100%;
}

.dest-info-row {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  color: #777;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
body.lang-en .dest-info-row {
  font-family: 'Inter', sans-serif;
}

/* Force all main sections to be full width but with agency-level side padding */
section {
  width: 100%;
  max-width: 100%;
  padding-left: 4% !important;
  padding-right: 4% !important;
  box-sizing: border-box;
}

/* If you are using a specific .container class for these sections, update it: */
.container, 
.destinations-section .container,
.map-section .container,
.slider-wrapper,
.map-container-wrapper,
.slider-container {
  max-width: 1800px !important; /* Massive width for ultra-wide monitors */
  width: 100% !important;
  margin: 0 auto;
}

/* OVERHAUL INFO PANEL TO MATCH DESIGN */
.map-info-panel {
  border: 1px solid rgba(255,255,255,0.05);
}
.gov-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.gov-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gov-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(22,38,63,1) 0%, rgba(22,38,63,0) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
body[dir='rtl'] .gov-image-overlay {
  align-items: flex-end;
}
.map-info-badge {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  background: #C9A84C;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}
.map-info-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}
.map-info-desc {
  color: #A0B3C6;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.map-info-content {
  padding: 20px;
}
.btn-explore {
  display: block;
  width: 100%;
  text-align: center;
  background: #C9A84C;
  color: #0d1f33;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.btn-explore:hover {
  background: #b8943d;
}
.highlight-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #DDE2E8;
  font-size: 12px;
}
.hl-check-icon {
  width: 14px;
  height: 14px;
  stroke: #C9A84C;
  flex-shrink: 0;
}
.map-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
}
body[dir='rtl'] .map-close-btn {
  left: 15px;
  right: auto;
}

/* Experiences Section Styling (Milky White Background) */
.experiences-section {
  background-color: var(--bg-cream) !important;
  padding: 72px 0 !important;
  overflow: hidden;
  width: 100%;
}

.exp-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px !important;
  margin-bottom: 28px !important;
  width: 100%;
  direction: rtl !important;
  text-align: right !important;
}

.exp-header-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(197, 160, 89, 0.15) !important;
  color: var(--gold-accent) !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  border-radius: 20px;
  padding: 4px 12px !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 40px !important;
  font-weight: 300 !important;
  letter-spacing: -1px;
  color: var(--text-navy) !important;
  margin: 0;
  line-height: 1.2;
}

.exp-title em {
  font-style: italic;
  font-weight: 400;
}

.exp-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--text-navy);
  opacity: 0.7;
  margin: 0;
}

body.lang-en .exp-subtitle {
  font-family: 'Inter', sans-serif !important;
}

.exp-nav-arrows {
  display: flex;
  gap: 12px;
}

.exp-arrow-btn {
  background: transparent !important;
  color: var(--text-navy) !important;
  border: 1px solid rgba(15, 30, 54, 0.15) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: none !important;
  outline: none;
}

.exp-arrow-btn span {
  display: inline-block;
  line-height: 1;
}

.exp-arrow-btn:hover {
  background: var(--gold-accent) !important;
  border-color: var(--gold-accent) !important;
  color: var(--text-navy) !important;
  transform: scale(1.05);
}

/* Horizontal scrollable wrapper */
.exp-slider-container {
  width: 100%;
  padding: 0 40px 24px !important;
}

.exp-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
  scrollbar-width: none; /* Firefox */
}

.exp-slider-track::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/* Card Styling */
.exp-slider-card {
  position: relative;
  flex: 0 0 260px !important;
  height: 380px !important;
  border-radius: 16px !important;
  overflow: hidden;
  scroll-snap-align: start !important;
  transition: border 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.exp-slider-card:hover {
  border: 1.5px solid rgba(197, 160, 89, 0.4) !important;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.exp-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  z-index: 0;
}

.exp-slider-card:hover .exp-card-img {
  transform: scale(1.06) !important;
  filter: brightness(0.6) !important;
}

.exp-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 18, 35, 0.92) 0%, rgba(10, 18, 35, 0) 80%) !important;
  z-index: 1;
}

.exp-card-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 700;
  z-index: 2;
  direction: ltr !important;
}

.exp-card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(197, 160, 89, 0.15) !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  color: var(--gold-accent) !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px !important;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right !important;
  direction: rtl !important;
  transform: translateY(4px) !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.exp-slider-card:hover .exp-card-content {
  transform: translateY(0) !important;
}

.exp-card-tagline {
  font-size: 9px !important;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.exp-card-title {
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4;
  margin: 0 !important;
}

.exp-card-hover-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.exp-slider-card:hover .exp-card-hover-reveal {
  max-height: 120px !important;
  opacity: 1 !important;
  margin-top: 12px !important;
}

.exp-card-desc {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
}

body.lang-en .exp-card-desc {
  font-family: 'Inter', sans-serif !important;
}

.exp-card-link {
  color: var(--gold-accent) !important;
  text-decoration: none;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.exp-card-link:hover {
  color: #FFFFFF !important;
}

/* Dots Centered Below Scroll */
.exp-dots-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 28px !important;
  width: 100%;
}

.exp-dot {
  background: rgba(15, 30, 54, 0.12) !important;
  border: none !important;
  outline: none;
  width: 24px !important;
  height: 3px !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  padding: 0 !important;
}

.exp-dot.active {
  background: var(--gold-accent) !important;
  width: 36px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .experiences-section {
    padding: 50px 0 !important;
  }
  .exp-header-container {
    padding: 0 20px !important;
  }
  .exp-slider-container {
    padding: 0 20px 16px !important;
  }
  .exp-slider-card {
    flex: 0 0 80vw !important;
    height: 115vw !important;
  }
}

/* Footer Section Styling (Luxury Navy Background) */
.main-footer-section {
  background-color: #0B1829 !important;
  color: #FFFFFF;
  padding: 80px 4% 0 4% !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Cairo', sans-serif;
  width: 100%;
}
body.lang-en .main-footer-section {
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr; /* 4 columns: Brand, Links, Links, Newsletter */
  gap: 50px;
  padding-bottom: 60px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 25px;
  position: relative;
}

.footer-brand-logo {
  height: 105px; /* Premium size logo */
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-logo-container {
  display: flex;
  justify-content: flex-start;
}

.footer-brand-desc {
  font-size: 13px;
  color: #A0B2C6;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #A0B2C6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: #C9A84C;
  color: #0B1829;
  border-color: #C9A84C;
  transform: translateY(-3px);
}

.social-icon-btn .feather-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Links Columns */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-list li a {
  color: #A0B2C6;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: #C9A84C;
  transform: translateX(-5px);
}
body.lang-en .footer-links-list li a:hover {
  transform: translateX(5px);
}

/* Newsletter Column */
.newsletter-desc {
  font-size: 13px;
  color: #A0B2C6;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

.newsletter-form {
  margin-bottom: 12px;
  width: 100%;
}

.newsletter-form .input-group {
  display: flex;
  background: #16253A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  width: 100%;
  max-width: 360px;
  transition: border-color 0.3s;
}

.newsletter-form .input-group:focus-within {
  border-color: #C9A84C;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 10px 15px;
  font-size: 14px;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.newsletter-btn {
  background: #C9A84C;
  color: #0B1829;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.newsletter-btn:hover {
  background: #FFFFFF;
}

.send-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.newsletter-disclaimer {
  font-size: 11px;
  color: #708A9F;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  margin-top: 60px;
}

.footer-bottom-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  color: #708A9F;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom-left a {
  color: #708A9F;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-left a:hover {
  color: #C9A84C;
}

.bottom-separator {
  color: rgba(255, 255, 255, 0.1);
}

/* Responsive Grid */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Community Share Section Styling */
.community-section {
  background-color: #FDFBF7 !important;
  padding: 100px 4% !important;
  font-family: 'Cairo', sans-serif;
  width: 100%;
}
body.lang-en .community-section {
  font-family: 'Inter', sans-serif;
}

.community-container {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.community-header {
  text-align: center;
  margin-bottom: 45px;
}

.community-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.community-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #0F1E36;
  font-weight: 800;
  margin-bottom: 15px;
}

.community-subtitle {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.share-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(15, 30, 54, 0.05);
  border: 1px solid rgba(15, 30, 54, 0.03);
}

.share-upload-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed rgba(201, 168, 76, 0.25);
  background: #FAF9F6;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.03);
}

.upload-icon-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #FAF0D9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  transition: background 0.3s;
}

.upload-zone:hover .upload-icon-container {
  background: #C9A84C;
}

.upload-icon {
  width: 22px;
  height: 22px;
  stroke: #C9A84C;
  transition: stroke 0.3s;
}

.upload-zone:hover .upload-icon {
  stroke: #FFFFFF;
}

.upload-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F1E36;
  margin-bottom: 6px;
}

.upload-hint {
  font-size: 12px;
  color: #708A9F;
}

/* Form group & inputs */
.form-group {
  width: 100%;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(15, 30, 54, 0.08);
  background: #FAF9F6;
  font-size: 14px;
  color: #0F1E36;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #C9A84C;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.08);
}

/* Custom styles for select elements */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 15px;
  padding-left: 45px;
}

body.lang-en .form-select {
  background-position: right 20px center;
  padding-left: 20px;
  padding-right: 45px;
}

/* Select options dropdown color */
.form-select option {
  background-color: #FFFFFF;
  color: #0F1E36;
}

/* Submit button */
.submit-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #C9A84C;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 50px;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.submit-share-btn:hover {
  background: #0F1E36;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 30, 54, 0.25);
}

.send-share-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Governorate Detail Page Styles */
.governorate-page {
  background-color: var(--bg-cream, #FAF8F5);
}

.governorate-page .main-header {
  position: relative;
  background-color: var(--text-navy, #0F1E36);
  padding: 15px 5%;
}



.gov-content-section {
  padding: 80px 5%;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

.gov-grid-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Columns */
.gov-main-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gov-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 30px;
}

/* Card Styling */
.gov-section-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 30, 54, 0.04);
  border: 1px solid rgba(15, 30, 54, 0.03);
}

.gov-card-header-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-navy, #0F1E36);
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.15);
  padding-bottom: 12px;
  font-family: 'Cairo', sans-serif;
  position: relative;
}

.gov-card-header-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold-accent, #C9A84C);
}
body.lang-en .gov-card-header-title::after {
  right: auto;
  left: 0;
}

.gov-detailed-desc {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.8;
  margin: 0;
  font-family: 'Cairo', sans-serif;
}
body.lang-en .gov-detailed-desc {
  font-family: 'Inter', sans-serif;
}

/* Highlights Grid */
.gov-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Sidebar Facts Card */
/* ==========================================
   Governorate Detail Page Premium Upgrades
   ========================================== */

.gov-detail-main {
  width: 100%;
  background-color: var(--bg-cream);
}

/* Widescreen Hero Section */
.gov-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px 8% !important;
  z-index: 1;
}

.gov-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 30, 54, 0.8) 0%, rgba(15, 30, 54, 0.4) 60%, rgba(15, 30, 54, 0.9) 100%);
  z-index: -1;
}

.gov-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  direction: rtl !important;
}

body.lang-en .gov-hero-grid {
  direction: ltr !important;
}

.gov-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right !important;
}

body.lang-en .gov-hero-right {
  align-items: flex-start;
  text-align: left !important;
}

.gov-hero-badge {
  display: inline-block;
  color: var(--gold-accent) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.gov-hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 90px !important;
  font-weight: 300 !important;
  color: #FFFFFF !important;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gov-hero-tagline {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

body.lang-en .gov-hero-tagline {
  font-family: 'Inter', sans-serif !important;
}

.gov-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--gold-accent) !important;
  color: var(--text-navy) !important;
  padding: 16px 36px !important;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.gov-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Hero Left Column (Facts Card) */
.gov-hero-facts {
  background: rgba(15, 30, 54, 0.65) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px !important;
  width: 100%;
}

.hero-fact-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.hero-fact-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.hero-fact-item:first-child {
  padding-top: 0;
}

.hero-fact-label {
  font-size: 10px !important;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-fact-val {
  font-size: 20px !important;
  font-weight: 700;
  color: #FFFFFF !important;
  font-family: 'Cairo', sans-serif;
}

body.lang-en .hero-fact-val {
  font-family: 'Inter', sans-serif !important;
}

/* Sections Layout */
.gov-detail-section {
  padding: 80px 8% !important;
  width: 100%;
}

.gov-detail-section.light {
  background-color: var(--bg-cream);
}

.gov-detail-section.dark {
  background-color: var(--text-navy) !important;
  color: #FFFFFF;
}

/* Capsule badge style */
.section-capsule {
  display: inline-block;
  background: rgba(197, 160, 89, 0.1) !important;
  color: var(--gold-accent) !important;
  border: 1px solid rgba(197, 160, 89, 0.2) !important;
  border-radius: 30px;
  padding: 6px 18px !important;
  font-size: 11px !important;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title-large {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 44px !important;
  font-weight: 300 !important;
  color: var(--text-navy);
  margin-bottom: 24px;
}

.gov-detail-section.dark .section-title-large {
  color: #FFFFFF !important;
}

/* About Paragraph */
.about-paragraph {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-navy);
  max-width: 900px;
}

body.lang-en .about-paragraph {
  font-family: 'Inter', sans-serif !important;
}

/* Slider Section (Destinations) */
.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  direction: rtl;
}

body.lang-en .slider-header-row {
  direction: ltr;
}

/* Destinations Cards */
.dest-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
  scrollbar-width: none;
}

.dest-slider-track::-webkit-scrollbar {
  display: none;
}

.dest-card-premium {
  position: relative;
  flex: 0 0 280px !important;
  height: 400px !important;
  border-radius: 16px !important;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1.5px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.dest-card-premium:hover {
  border-color: rgba(197, 160, 89, 0.4) !important;
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.dest-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card-premium:hover .dest-card-img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.dest-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 18, 35, 0.95) 0%, rgba(10, 18, 35, 0.2) 60%, rgba(10, 18, 35, 0) 100%);
  z-index: 1;
}

.dest-card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 700;
  z-index: 2;
  direction: ltr;
}

.dest-card-info-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.lang-ar .dest-card-info-box {
  align-items: flex-start;
  text-align: right;
}

body.lang-en .dest-card-info-box {
  align-items: flex-start;
  text-align: left;
}

.dest-card-tag {
  color: var(--gold-accent) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.dest-card-title {
  color: #FFFFFF !important;
  font-size: 18px !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Activities Grid (3 Columns) */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 32px;
  direction: rtl;
}

body.lang-en .activities-grid {
  direction: ltr;
  text-align: left !important;
}

.activity-card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px !important;
  padding: 32px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right !important;
}

body.lang-en .activity-card-premium {
  align-items: flex-start;
  text-align: left !important;
}

.activity-card-premium:hover,
.activity-card-premium.active {
  border-bottom: 4px solid var(--gold-accent) !important;
  outline: 1px solid rgba(197, 160, 89, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.act-card-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  direction: ltr;
}

.act-card-difficulty {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 10px !important;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 10px;
}

body.lang-en .act-card-num { right: auto; left: 24px; }
body.lang-en .act-card-difficulty { left: auto; right: 24px; }

.act-card-difficulty.easy {
  background: rgba(46, 204, 113, 0.15) !important;
  color: #2ecc71 !important;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.act-card-difficulty.medium {
  background: rgba(241, 196, 15, 0.15) !important;
  color: #f1c40f !important;
  border: 1px solid rgba(241, 196, 15, 0.3);
}

.act-card-difficulty.hard {
  background: rgba(231, 76, 60, 0.15) !important;
  color: #e74c3c !important;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.act-card-icon-container {
  color: var(--gold-accent);
  width: 44px;
  height: 44px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.act-card-icon-container svg {
  width: 100%;
  height: 100%;
}

.act-card-title {
  color: #FFFFFF !important;
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.act-card-desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.act-card-meta {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}

.act-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.act-meta-label {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 700;
}

.act-meta-val {
  font-size: 13px !important;
  color: var(--gold-accent) !important;
  font-weight: 700;
}

/* Heritage Columns (4 Columns) */
.heritage-split-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  direction: rtl;
}

body.lang-en .heritage-split-columns {
  direction: ltr;
}

.heritage-col-premium {
  padding: 40px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.lang-en .heritage-col-premium {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
  text-align: left !important;
}

.heritage-col-premium:last-child {
  border-left: none !important;
}

body.lang-en .heritage-col-premium:last-child {
  border-right: none !important;
}

.heritage-col-icon {
  color: var(--gold-accent);
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease, color 0.4s ease;
}

.heritage-col-icon svg {
  width: 100%;
  height: 100%;
}

.heritage-col-title {
  color: #FFFFFF !important;
  font-size: 18px !important;
  font-weight: 700;
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s ease;
}

.heritage-col-desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
}

/* Split Cuisine Section (2 Columns) */
.cuisine-split-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  direction: rtl;
}

body.lang-en .cuisine-split-layout {
  grid-template-columns: 1fr 380px;
  direction: ltr;
}

.cuisine-left-column {
  display: flex;
  justify-content: center;
}

.cuisine-active-card {
  position: relative;
  width: 380px;
  height: 360px;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px !important;
}

.cuisine-active-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
  transition: opacity 0.5s ease-in-out;
}

.cuisine-active-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 30, 54, 0.95) 0%, rgba(15, 30, 54, 0.3) 60%, rgba(15, 30, 54, 0) 100%);
  z-index: 1;
}

.cuisine-active-label {
  position: relative;
  z-index: 2;
  font-size: 9px !important;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
  text-align: right !important;
}

.cuisine-active-title {
  position: relative;
  z-index: 2;
  color: #FFFFFF !important;
  font-size: 24px !important;
  font-weight: 700;
  margin: 0;
  text-align: right !important;
}

.cuisine-active-desc {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  font-weight: 400;
  text-align: right !important;
}

body.lang-en .cuisine-active-label,
body.lang-en .cuisine-active-title,
body.lang-en .cuisine-active-desc {
  text-align: left !important;
}

.cuisine-right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right !important;
}

body.lang-en .cuisine-right-column {
  align-items: flex-start;
  text-align: left !important;
}

.cuisine-menu-list {
  list-style: none;
  width: 100%;
  margin-top: 32px;
  padding: 0;
}

.cuisine-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 30, 54, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: var(--text-navy);
}

body.lang-en .cuisine-menu-item {
  font-family: 'Inter', sans-serif !important;
}

.cuisine-menu-item:hover,
.cuisine-menu-item.active {
  color: var(--gold-accent) !important;
  font-weight: 700;
  border-bottom-color: var(--gold-accent);
}

.cuisine-menu-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cuisine-menu-arrow {
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold-accent);
  font-weight: 700;
}

.cuisine-menu-item.active .cuisine-menu-arrow {
  opacity: 1;
}

.cuisine-menu-en-name {
  font-size: 13px;
  opacity: 0.5;
  font-family: 'Inter', sans-serif !important;
}

.cuisine-menu-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 12px;
  opacity: 0.4;
}

/* Split Travel Guide & Weather Section */
.guide-weather-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 500px;
}

.guide-left-side {
  background-color: var(--bg-cream);
  padding: 80px 8% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right !important;
}

body.lang-en .guide-left-side {
  align-items: flex-start;
  text-align: left !important;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 32px;
}

.guide-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  direction: rtl;
}

body.lang-en .guide-item {
  direction: ltr;
}

.guide-icon-box {
  background: rgba(197, 160, 89, 0.1) !important;
  border-radius: 12px;
  padding: 12px;
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.guide-icon-box svg {
  width: 20px;
  height: 20px;
}

.guide-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-item-title {
  color: var(--text-navy) !important;
  font-size: 16px !important;
  font-weight: 700;
  margin: 0;
}

.guide-item-desc {
  color: rgba(15, 30, 54, 0.6) !important;
  font-size: 13px !important;
  line-height: 1.6;
  margin: 0;
}

/* Weather Side (Dark) */
.weather-right-side {
  background-color: var(--text-navy) !important;
  padding: 80px 8% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right !important;
  color: #FFFFFF;
}

body.lang-en .weather-right-side {
  align-items: flex-start;
  text-align: left !important;
}

.wx-live-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.wx-live-city {
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wx-main-temp-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.wx-large-temp {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 110px !important;
  font-weight: 300 !important;
  color: #FFFFFF !important;
  line-height: 1;
  margin: 0;
}

.wx-deg-symbol {
  font-size: 32px;
  color: var(--gold-accent) !important;
  margin-top: 12px;
  font-weight: 300;
}

.wx-condition-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.wx-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  direction: rtl;
}

body.lang-en .wx-metrics-row {
  direction: ltr;
}

.wx-metric-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wx-metric-lbl {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.wx-metric-val {
  font-size: 18px !important;
  color: #FFFFFF !important;
  font-weight: 700;
}

/* Bottom CTA Banner (Solid Gold) */
.gov-bottom-cta-banner {
  background-color: var(--gold-accent) !important;
  padding: 60px 8% !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
}

body.lang-en .gov-bottom-cta-banner {
  direction: ltr;
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-banner-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 44px !important;
  font-weight: 300 !important;
  color: var(--text-navy) !important;
  margin: 0;
  line-height: 1.2;
}

.cta-banner-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  color: rgba(15, 30, 54, 0.8) !important;
  margin: 0;
}

body.lang-en .cta-banner-subtitle {
  font-family: 'Inter', sans-serif !important;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  border: 1.5px solid var(--text-navy) !important;
  color: var(--text-navy) !important;
  padding: 14px 32px !important;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-banner-btn:hover {
  background-color: var(--text-navy) !important;
  color: #FFFFFF !important;
  border-color: var(--text-navy) !important;
}

/* Back Button in aside is removed */

/* Responsive Layout */
@media (max-width: 992px) {
  .gov-hero {
    padding-top: 100px !important;
  }
  .gov-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gov-hero-title {
    font-size: 60px !important;
  }
  .cuisine-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cuisine-left-column {
    order: 2;
  }
  body.lang-en .cuisine-left-column {
    order: 2;
  }
  .cuisine-active-card {
    width: 100%;
  }
  .guide-weather-split {
    grid-template-columns: 1fr;
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .heritage-split-columns {
    grid-template-columns: 1fr 1fr;
  }
  .heritage-col-premium {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .heritage-col-premium:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  body.lang-en .heritage-col-premium {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  body.lang-en .heritage-col-premium:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 768px) {
  .gov-detail-section {
    padding: 60px 20px !important;
  }
  .gov-hero {
    padding: 100px 20px 60px 20px !important;
  }
  .gov-hero-facts {
    padding: 20px !important;
  }
  .heritage-split-columns {
    grid-template-columns: 1fr;
  }
  .heritage-col-premium {
    border-left: none !important;
    border-right: none !important;
    padding: 24px !important;
  }
  .gov-bottom-cta-banner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .cta-banner-title {
    font-size: 32px !important;
  }
}

/* Heritage Section Light Theme overrides */
.gov-detail-section.light .heritage-split-columns {
  border-top: 1px solid rgba(15, 30, 54, 0.1);
}

.gov-detail-section.light .heritage-col-premium {
  border-left: 1px solid rgba(15, 30, 54, 0.1);
}

body.lang-en .gov-detail-section.light .heritage-col-premium {
  border-left: none;
  border-right: 1px solid rgba(15, 30, 54, 0.1);
}

.gov-detail-section.light .heritage-col-premium:last-child {
  border-left: none !important;
}

body.lang-en .gov-detail-section.light .heritage-col-premium:last-child {
  border-right: none !important;
}

.gov-detail-section.light .heritage-col-title {
  color: var(--text-navy) !important;
}

.gov-detail-section.light .heritage-col-desc {
  color: rgba(15, 30, 54, 0.7) !important;
}

/* Responsive Overrides for Heritage Section Light Theme */
@media (max-width: 992px) {
  .gov-detail-section.light .heritage-col-premium {
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 30, 54, 0.1);
  }
  .gov-detail-section.light .heritage-col-premium:nth-child(even) {
    border-left: 1px solid rgba(15, 30, 54, 0.1) !important;
  }
  body.lang-en .gov-detail-section.light .heritage-col-premium:nth-child(even) {
    border-left: none !important;
    border-right: 1px solid rgba(15, 30, 54, 0.1) !important;
  }
}

@media (max-width: 768px) {
  .gov-detail-section.light .heritage-col-premium {
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 30, 54, 0.1);
  }
}

/* Micro-interaction Hover Effects for Heritage columns */
.heritage-col-premium:hover {
  background: rgba(197, 160, 89, 0.03) !important;
}

.heritage-col-premium:hover .heritage-col-icon {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(197, 160, 89, 0.3));
}

.heritage-col-premium:hover .heritage-col-title {
  transform: translateY(-4px);
  color: var(--gold-accent) !important;
}

.gov-detail-section.light .heritage-col-premium:hover .heritage-col-desc {
  color: var(--text-navy) !important;
}

.gov-detail-section.dark .heritage-col-premium:hover .heritage-col-desc {
  color: #FFFFFF !important;
}

/* ==========================================
   Agriculture Crops Section (Luxury Revamp)
   ========================================== */
.agri-luxury-section {
  width: 100%;
  margin-top: 80px;
  padding: 60px 0 20px 0;
  border-top: 1px solid rgba(15, 30, 54, 0.06);
}

.agri-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  direction: rtl; /* Right-to-Left by default */
}

body.lang-en .agri-container {
  direction: ltr; /* Left-to-Right for English */
}

/* Interactive Botanical Viewer Card */
.agri-viewer-card {
  position: relative;
  width: 100%;
  padding-bottom: 120%; /* Vertical aspect ratio */
  border-radius: 24px;
  z-index: 2;
}

.agri-viewer-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B1829; /* Dark luxury base background */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(15, 30, 54, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.agri-img-frame {
  position: absolute;
  top: 20px;
  right: -20px; /* Offset behind the image */
  left: 20px;
  bottom: -20px;
  border: 1.5px solid var(--gold-accent);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.lang-en .agri-img-frame {
  right: 20px;
  left: -20px;
}

.agri-viewer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(4px) brightness(0.5);
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.agri-viewer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 24, 41, 0.2) 0%, rgba(11, 24, 41, 0.85) 80%);
  z-index: 1;
}

/* Glowing Graphic Showcase (The interactive SVG) */
.agri-graphic-showcase {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 15px 30px rgba(197, 160, 89, 0.25));
}

.botanical-svg {
  width: 100%;
  height: 100%;
}

/* Animated dripping drop */
@keyframes drip {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

.dripping-drop {
  animation: drip 2.5s infinite ease-in;
}

/* Scientific Specimen Label overlay */
.agri-specimen-label-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px !important;
  background: linear-gradient(to top, rgba(11, 24, 41, 0.95) 0%, rgba(11, 24, 41, 0.7) 70%, rgba(11, 24, 41, 0) 100%);
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.specimen-scientific {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: 20px !important;
  color: var(--gold-accent) !important;
  margin-bottom: 12px;
  font-weight: 300;
  text-align: center;
}

.specimen-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specimen-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-lbl {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
}

.stat-bar {
  flex-grow: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 150px;
}

.stat-bar-fill {
  height: 100%;
  background: var(--gold-accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Hover animation offsets */
.agri-viewer-card:hover .agri-img-frame {
  transform: translate(-8px, 8px);
}

body.lang-en .agri-viewer-card:hover .agri-img-frame {
  transform: translate(8px, 8px);
}

/* Content Area */
.agri-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  width: 100%;
}

body.lang-en .agri-content-wrapper {
  text-align: left;
}

.agri-luxury-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 48px !important;
  font-weight: 300 !important;
  color: var(--text-navy);
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.agri-subtitle-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(15, 30, 54, 0.6);
  margin-top: 0;
  margin-bottom: 36px;
  max-width: 580px;
}

body.lang-en .agri-subtitle-desc {
  font-family: 'Inter', sans-serif !important;
}

/* Specimen List styled as luxury entries */
.agri-specimen-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.agri-specimen-item {
  display: flex;
  gap: 24px;
  padding: 24px !important;
  border-radius: 16px;
  background: rgba(197, 160, 89, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  align-items: flex-start;
}

.agri-specimen-item:hover,
.agri-specimen-item.active {
  background: #FFFFFF;
  border-color: rgba(197, 160, 89, 0.3) !important;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.08);
}

.agri-specimen-item.active {
  outline: 1.5px solid var(--gold-accent);
}

.agri-specimen-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-accent);
  line-height: 1;
  opacity: 0.8;
  padding-top: 2px;
}

.agri-specimen-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.agri-specimen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.agri-specimen-name {
  font-family: 'Cairo', sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--text-navy) !important;
  margin: 0;
}

body.lang-en .agri-specimen-name {
  font-family: 'Inter', sans-serif !important;
}

.agri-specimen-tag {
  font-family: 'Cairo', sans-serif;
  font-size: 10px !important;
  background: rgba(197, 160, 89, 0.1) !important;
  color: var(--gold-accent) !important;
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
}

body.lang-en .agri-specimen-tag {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 1px;
}

.agri-specimen-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 13px !important;
  line-height: 1.6;
  color: rgba(15, 30, 54, 0.7) !important;
  margin: 0;
}

body.lang-en .agri-specimen-desc {
  font-family: 'Inter', sans-serif !important;
}

/* Hide mobile navigation elements by default on desktop */
.mobile-menu-toggle,
.mobile-menu-overlay {
  display: none !important;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  /* Scrollable Ribbon for Sub-navigation on mobile/tablet */
  #stickySubNav {
    display: block !important;
    width: 100% !important;
    padding: 10px 0 !important;
    box-sizing: border-box !important;
  }
  
  #stickySubNav ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 0 15px 5px 15px !important;
    margin: 0 !important;
    scrollbar-width: none !important;
    list-style: none !important;
  }

  #stickySubNav ul::-webkit-scrollbar {
    display: none !important;
  }

  #stickySubNav ul li {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  #stickySubNav ul li a {
    display: block !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
  }

  .agri-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .agri-viewer-card {
    order: 2;
    padding-bottom: 70%; /* Landscape on tablet/mobile */
    max-width: 500px;
    margin: 0 auto;
  }
  
  .agri-img-frame {
    top: 15px;
    right: -15px;
    left: 15px;
    bottom: -15px;
  }
  
  body.lang-en .agri-img-frame {
    right: 15px;
    left: -15px;
  }
}

@media (max-width: 576px) {
  .agri-specimen-item {
    padding: 16px !important;
    gap: 16px;
  }
  
  .agri-specimen-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .agri-specimen-tag {
    align-self: flex-start;
  }
}

/* ==========================================================================
   Premium Mobile Navigation & Header Responsiveness Revamp
   ========================================================================== */

/* Prevent scroll when mobile menu is active */
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

/* ==========================================================================
   Comprehensive Responsive Overrides (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  /* Typography Scaling */
  h1, .hero-title, .gov-hero-title, .history-hero-title, .heritage-hero-title, .culture-hero-title, .peace-hero-title, .women-hero-title, .nature-hero-title, .climate-hero-title, .geography-hero-title {
    font-size: clamp(40px, 10vw, 96px) !important;
  }
  h2, .section-title, .section-title-large, .why-yemen-title, .explorer-section-title, .community-title, .recovery-title, .human-title, .traditions-title, .sports-title, .queens-title, .pillars-title, .resilience-title {
    font-size: clamp(28px, 5vw, 52px) !important;
  }
  h3, .card-title, .milestone-details h3, .featured-content h3, .exp-card-title, .cuisine-active-title, .act-card-title {
    font-size: clamp(16px, 3vw, 24px) !important;
  }
  p, .body-text, .section-subtitle, .why-yemen-subtitle, .community-subtitle, .dest-subtitle, .about-paragraph, .slide-desc, .exp-card-desc, .cuisine-active-desc, .wx-condition-text {
    font-size: clamp(12px, 1.5vw, 15px) !important;
  }
  span.label, .badge, .hero-fact-label, .act-meta-label, .upload-hint, .dest-feat-badge {
    font-size: clamp(9px, 1.2vw, 11px) !important;
    letter-spacing: normal !important;
  }

  /* Spacing System */
  section, .gov-detail-section, .why-yemen, .explorer-section, .community-section, .main-footer-section {
    padding-top: clamp(48px, 8vw, 100px) !important;
    padding-bottom: clamp(48px, 8vw, 100px) !important;
    padding-left: clamp(20px, 5vw, 52px) !important;
    padding-right: clamp(20px, 5vw, 52px) !important;
  }
  .destinations-carousel, .exp-slider-track, .dest-slider-track, .activities-grid, .why-yemen-grid, .queens-grid, .pillars-grid, .resilience-grid, .gov-highlights-grid {
    gap: clamp(10px, 2vw, 20px) !important;
  }

  /* Images */
  img {
    max-width: 100% !important;
    height: auto;
    object-fit: cover !important;
    display: block !important;
  }

  /* Base style overrides for mobile header elements */
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 24px !important;
    background: rgba(10, 18, 35, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1001 !important;
    transition: all 0.3s ease !important;
  }

  .logo img {
    height: 52px !important;
    transition: all 0.3s ease;
  }

  .lang-switcher {
    order: 3 !important;
    margin-left: 0 !important;
    display: none !important; /* Hide original in header to use cloned in overlay */
  }
  
  body.lang-en .lang-switcher {
    margin-right: 0 !important;
  }

  .lang-btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 60px !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
  }

  /* Hide default nav in header */
  .main-nav {
    display: none !important;
  }

  /* Mobile hamburger button */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 24px !important;
    height: 16px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10005 !important;
    order: 2 !important;
    outline: none !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    height: 2px !important;
    background-color: #FFFFFF !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }

  /* Beautiful unequal width lines for a modern hamburger icon */
  body.lang-ar .mobile-menu-toggle span:nth-child(1) {
    width: 18px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  body.lang-ar .mobile-menu-toggle span:nth-child(2) {
    width: 24px !important;
  }
  body.lang-ar .mobile-menu-toggle span:nth-child(3) {
    width: 12px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  body.lang-en .mobile-menu-toggle span:nth-child(1) {
    width: 18px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  body.lang-en .mobile-menu-toggle span:nth-child(2) {
    width: 24px !important;
  }
  body.lang-en .mobile-menu-toggle span:nth-child(3) {
    width: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  body.lang-ar .mobile-menu-toggle {
    position: absolute !important;
    top: 24px !important;
    left: 24px !important;
    right: auto !important;
  }

  body.lang-en .mobile-menu-toggle {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    left: auto !important;
  }

  /* Hamburger transform to X when active */
  .mobile-menu-active .mobile-menu-toggle span:nth-child(1) {
    width: 24px !important;
    transform: translateY(7px) rotate(45deg) !important;
  }

  .mobile-menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-menu-active .mobile-menu-toggle span:nth-child(3) {
    width: 24px !important;
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Mobile menu full-screen overlay */
  .mobile-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    background: rgba(14, 26, 43, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(100%) !important;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1), transform 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
  }

  body.lang-en .mobile-menu-overlay {
    transform: translateX(-100%) !important;
  }

  .mobile-menu-overlay.active,
  body.lang-en .mobile-menu-overlay.active,
  body.lang-ar .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }

  .mobile-menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 36px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
  }

  body.lang-en .mobile-menu-close {
    left: 20px !important;
    right: auto !important;
  }

  body.lang-ar .mobile-menu-close {
    right: 20px !important;
    left: auto !important;
  }

  .mobile-menu-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    padding: 20px 0 !important;
  }

  .mobile-menu-content ul {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .mobile-menu-content ul li {
    width: 80% !important;
    text-align: center !important;
  }

  .mobile-menu-content ul li a {
    font-family: 'Cairo', sans-serif !important;
    font-size: clamp(20px, 5vw, 28px) !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    padding: 18px 0 !important;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
  }

  /* Dropdown Accordion Mode on Mobile */
  .mobile-menu-content ul li.has-dropdown > a::after {
    content: ' +' !important;
    font-size: 1.4rem !important;
    color: var(--gold-accent, #D4AF37) !important;
    transition: transform 0.3s ease !important;
    margin-right: 8px !important;
  }

  body.lang-en .mobile-menu-content ul li.has-dropdown > a::after {
    margin-left: 8px !important;
    margin-right: 0 !important;
  }

  .mobile-menu-content ul li.has-dropdown.dropdown-open > a::after {
    transform: rotate(45deg) !important;
  }

  /* Collapse Mega Dropdown into simple vertical lists on Mobile Menu */
  .mobile-menu-overlay .mega-dropdown {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    margin-top: 10px !important;
    padding: 0 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }

  .mobile-menu-overlay li.has-dropdown.dropdown-open .mega-dropdown {
    max-height: 1000px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 15px !important;
    overflow-y: auto !important;
  }

  .mobile-menu-overlay .mega-dropdown-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 0 !important;
  }

  .mobile-menu-overlay .featured-card {
    display: none !important;
  }

  .mobile-menu-overlay .links-col {
    border: none !important;
    padding: 0 !important;
  }
  
  .mobile-menu-overlay .mega-dropdown .links-col ul li {
    width: 100% !important;
  }

  .mobile-menu-overlay .mega-dropdown .links-col li a {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 10px 0 10px 16px !important;
    border-bottom: none !important;
    text-align: center !important;
  }

  .mobile-menu-overlay .mega-dropdown .links-col li a::after {
    display: none !important;
  }

  .mobile-menu-footer {
    margin-top: 30px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .mobile-menu-footer .lang-btn {
    display: block !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    background: transparent !important;
  }

  /* Adjust Page Header offsets for fixed sticky header on Mobile */
  .hero, .history-hero, .heritage-hero, .culture-hero, .peace-hero, .women-hero, .nature-hero, .climate-hero, .geography-hero {
    margin-top: 0 !important;
    padding-top: 76px !important;
  }

  /* Hero Adjustments for Tablet */
  .hero-content, .gov-hero-right {
    text-align: center !important;
    align-items: center !important;
  }
  .gov-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }
  .gov-hero-title {
    font-size: clamp(52px, 8vw, 72px) !important;
  }
  .gov-hero-facts {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 24px !important;
  }
  .hero-fact-item {
    border-bottom: none !important;
    padding: 0 !important;
  }

  /* Landmarks / Card Sliders for Tablet */
  .dest-card-premium {
    flex: 0 0 220px !important;
  }
  .slider-arrow-btn, .slider-nav-btns {
    display: flex !important;
  }

  /* Why Yemen for Tablet */
  .why-yemen-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Destinations (Arch Cards) for Tablet */
  .dest-card-wrap {
    flex: 0 0 30% !important;
  }

  /* Map Section for Tablet */
  .map-container-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .map-svg-container {
    height: 400px !important;
    width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 1 !important;
  }
  .map-info-panel {
    width: 100% !important;
    height: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    order: 2 !important;
  }

  /* Activities for Tablet */
  .activity-row-premium {
    grid-template-columns: 4fr 6fr !important;
  }

  /* Heritage Magazine Grid for Tablet */
  .magazine-grid, .headlines-grid, .human-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .featured-magazine-item, .featured-article {
    grid-column: span 2 !important;
  }

  /* Cuisine for Tablet */
  .cuisine-split-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }

  /* Gallery / Ambassadors for Tablet */
  .community-container {
    flex-direction: column !important;
  }
  .ugc-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Footer for Tablet */
  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

/* ==========================================================================
   Mobile-Specific Responsive Overrides (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Hero Section Mobile */
  .hero, .gov-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    padding: 100px 24px 48px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }
  .hero-content, .gov-hero-right {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
  }
  .hero-title, .gov-hero-title {
    font-size: clamp(40px, 11vw, 58px) !important;
  }
  .hero-scroll-hint, .scroll-hint {
    display: none !important;
  }
  .cta-btn, .gov-hero-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .gov-hero-facts {
    grid-template-columns: 1fr 1fr !important;
    padding: 16px !important;
    margin-top: 20px !important;
  }

  /* Facts Bar */
  .facts-bar-container, .hero-facts-strip {
    overflow-x: auto !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .facts-bar-container::-webkit-scrollbar, .hero-facts-strip::-webkit-scrollbar {
    display: none !important;
  }
  .fact-item, .hero-fact-item {
    min-width: 110px !important;
    flex-shrink: 0 !important;
  }

  /* Landmarks / Card Sliders Mobile */
  .destinations-carousel, .dest-slider-track, .exp-slider-track {
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 0 20px 20px 20px !important;
  }
  .dest-card-wrap, .dest-card-premium, .exp-slider-card {
    flex: 0 0 75vw !important;
    max-width: 280px !important;
    height: auto !important;
    aspect-ratio: 3/4 !important;
    scroll-snap-align: start !important;
  }
  .slider-arrow, .slider-nav-btns, .exp-nav-arrows {
    display: none !important;
  }
  .exp-dots-container, .slider-dots {
    display: flex !important;
    justify-content: center !important;
    margin-top: 15px !important;
  }

  /* Why Yemen Slide Grid to horizontal snap-scroll */
  .why-yemen-slider-wrapper {
    padding-bottom: 75px !important;
    position: relative !important;
  }
  .slider-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    aspect-ratio: 1/1 !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    border-radius: 12px !important;
  }
  .slider-container::-webkit-scrollbar {
    display: none !important;
  }
  .slide {
    position: relative !important;
    flex: 0 0 85vw !important;
    width: 85vw !important;
    height: 100% !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
    padding: 24px 20px !important;
    display: flex !important;
    align-items: flex-end !important;
    box-sizing: border-box !important;
  }
  .slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    z-index: -2 !important;
  }
  .slide-title, .slide-desc, .slide-cta {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .slide-content {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .why-yemen .slider-controls {
    position: absolute !important;
    bottom: 5px !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 70px !important;
    box-sizing: border-box !important;
    height: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    z-index: 20 !important;
  }
  .why-yemen .slider-btn {
    top: auto !important;
    bottom: 12px !important;
    transform: none !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 21 !important;
  }
  body.lang-en .why-yemen .prev-btn {
    left: 20px !important;
    right: auto !important;
    transform: none !important;
  }
  body.lang-en .why-yemen .next-btn {
    right: 20px !important;
    left: auto !important;
    transform: none !important;
  }
  body.lang-ar .why-yemen .prev-btn {
    right: 20px !important;
    left: auto !important;
    transform: rotate(180deg) !important;
  }
  body.lang-ar .why-yemen .next-btn {
    left: 20px !important;
    right: auto !important;
    transform: rotate(180deg) !important;
  }

  /* Destinations Arch Cards Mobile */
  .destinations-carousel {
    scroll-snap-type: x mandatory !important;
  }
  .dest-card-wrap {
    flex: 0 0 72vw !important;
    scroll-snap-align: center !important;
  }

  /* Map Section Mobile */
  .map-svg-container {
    height: auto !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 0 !important;
    scrollbar-width: thin !important;
    display: block !important;
  }
  .map-svg-container .yemen-map-svg {
    width: 650px !important;
    height: auto !important;
    max-width: none !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .map-info-panel {
    padding: 20px !important;
  }
  .quick-links-container {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  /* Experiences Section Mobile */
  .exp-header-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: right !important;
  }
  body.lang-en .exp-header-container {
    text-align: left !important;
  }

  /* Activities (Full-Width Rows) Mobile */
  .activities-grid, .gov-experiences-grid {
    grid-template-columns: 1fr !important;
  }
  .activity-row-premium {
    grid-template-columns: 1fr !important;
  }
  .activity-image-container {
    height: 200px !important;
    order: 1 !important;
  }
  .activity-content-container {
    order: 2 !important;
    padding: 20px !important;
  }
  .act-arrow {
    display: none !important;
  }
  .act-card-meta {
    gap: 12px !important;
  }

  /* Heritage Magazine Grid Mobile */
  .magazine-grid, .headlines-grid, .human-grid {
    grid-template-columns: 1fr !important;
  }
  .featured-magazine-item, .featured-article {
    grid-column: span 1 !important;
    min-height: 260px !important;
  }
  .magazine-item, .article-card, .human-card {
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(14, 26, 43, 0.08) !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    padding: 24px 0 !important;
    box-shadow: none !important;
  }

  /* Cuisine Section Mobile */
  .cuisine-split-layout {
    grid-template-columns: 1fr !important;
    padding: 52px 20px !important;
  }
  .cuisine-left-column {
    order: 2 !important;
  }
  .cuisine-right-column {
    order: 1 !important;
    margin-bottom: 24px !important;
  }
  .cuisine-active-card {
    height: 260px !important;
  }

  /* Weather + Tips Strip Mobile */
  .guide-weather-split {
    grid-template-columns: 1fr !important;
  }
  .weather-right-side {
    order: 1 !important;
  }
  .guide-list {
    order: 2 !important;
  }
  .wx-large-temp {
    font-size: 64px !important;
  }
  .weather-forecast {
    gap: 10px !important;
  }
  .tips-container, .guide-list {
    padding: 40px 20px !important;
  }

  /* Gallery / Ambassadors Mobile */
  .upload-box {
    width: 100% !important;
    padding: 20px !important;
  }
  .ugc-grid {
    grid-template-columns: 1fr !important;
  }
  .ugc-item {
    height: 240px !important;
  }

  /* Footer CTA Mobile */
  .gov-bottom-cta-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 48px 20px !important;
    gap: 24px !important;
  }
  .cta-banner-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Footer Mobile */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-column {
    margin-bottom: 32px !important;
  }
  .footer-column:last-child {
    margin-bottom: 0 !important;
  }
  .social-icon-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .newsletter-form {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .newsletter-input, .newsletter-btn {
    width: 100% !important;
    border-radius: 4px !important;
  }
}

/* ==========================================================================
   Mobile Small Specific Responsive Overrides (max-width: 479px)
   ========================================================================== */
@media (max-width: 479px) {
  /* Facts Bar values font and padding */
  .hero-fact-val, .fact-value {
    font-size: 11px !important;
  }
  .gov-hero-facts, .facts-bar-container {
    padding: 14px 10px !important;
  }

  /* Activities image height */
  .activity-image-container {
    height: 160px !important;
  }

  /* Weather forecast 4 items in a row */
  .weather-forecast {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 4px !important;
  }
  .forecast-day-item {
    font-size: 11px !important;
  }
}

/* ==========================================================================
   Touch Device Interactive and Hover Cleanups
   ========================================================================== */
/* Webkit Tap Highlight */
a, button, .slider-arrow, .social-icon-btn, .exp-dot, .slider-dot {
  -webkit-tap-highlight-color: transparent !important;
}

@media (hover: none) {
  /* Reset hover states on touch screens to prevent sticky hover states */
  .cta-btn:hover, .gov-hero-cta:hover, .slider-arrow:hover, .social-icon-btn:hover,
  .activity-card-premium:hover, .dest-card-premium:hover, .exp-slider-card:hover,
  .human-card:hover, .heritage-col-premium:hover {
    transform: none !important;
    box-shadow: none !important;
    background: initial !important;
    border-color: initial !important;
  }
}

/* ==========================================================================
   Global Desktop Full-Width Background & Centered Content Overrides
   ========================================================================== */
.climate-section,
.culture-section,
.geo-stats-section,
.regions-explorer-section,
.heritage-intro-section,
.history-intro-section,
.cabinet-section,
.peace-section,
.women-section {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.climate-section > *,
.culture-section > *,
.geo-stats-section > *,
.heritage-intro-section > *,
.history-intro-section > *,
.peace-section > *,
.women-section > * {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.regions-explorer-section > * {
  max-width: 1250px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.cabinet-section > * {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}



