/* =============================================
   TUKTUK CASABLANCA — Premium CSS
   ============================================= */

:root {
  --blue: #0A2342;
  --blue-mid: #1A3A6B;
  --blue-light: #2D5BA0;
  --ocean: #1E6091;
  --sky: #4DA6D8;
  --yellow: #F5C518;
  --yellow-light: #FFD740;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray-100: #ffffff;
  --gray-200: #ffffff;
  --gray-500: #000000;
  --gray-700: #2D3748;
  --text: #1A202C;
  --text-light: #4A5568;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(10,35,66,0.1);
  --shadow-md: 0 8px 40px rgba(10,35,66,0.15);
  --shadow-lg: 0 16px 64px rgba(10,35,66,0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #F8F9FA;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--sky));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  background: #F2F2F7;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #1A202C;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.loader-logo em {
  font-style: italic;
  color: #C8962A;
}
.loader-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: #718096;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #F5C518, #E5A800);
  border-radius: 99px;
  animation: fillBar 1.5s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 28px; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, top 0.4s ease;
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background: rgba(10, 35, 66, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 2rem 0 6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  margin-right: auto;
}
.logo-icon { font-size: 1.5rem; }
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-text-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.logo-text-fallback em { color: var(--yellow); font-style: italic; }
.nav-logo em { color: var(--yellow); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px;
  transition: all var(--transition);
  user-select: none;
  white-space: nowrap;
}
.lang-selector:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.lang-arrow { font-size: 0.7rem; opacity: 0.7; transition: transform 0.2s; }
.lang-selector:hover .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 150px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown button:hover {
  background: rgba(255,255,255,0.1);
  color: var(--yellow);
}
.btn-admin {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-admin:hover { background: rgba(255,255,255,0.2); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-align: left;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,35,66,0.65) 0%,
    rgba(10,35,66,0.45) 50%,
    rgba(10,35,66,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 8rem 2rem 4rem 5rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgb(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.stat small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* WEATHER WIDGET — Enhanced */
.weather-widget {
  position: absolute;
  top: 6rem;
  right: 2rem;
  z-index: 10;
  background: rgba(10,20,50,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 1.1rem 1.3rem;
  color: var(--white);
  animation: slideInRight 0.8s 1.5s both;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  min-width: 220px;
  max-width: 260px;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.weather-location-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}
.weather-main-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.weather-icon-wrap { flex-shrink: 0; }
.weather-icon { font-size: 2.4rem; line-height: 1; }
.weather-primary { flex: 1; }
.weather-temp {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.weather-cond { font-size: 0.75rem; opacity: 0.75; margin-top: 0.2rem; font-weight: 500; }
.weather-details-row {
  display: flex;
  gap: 0;
  margin-bottom: 0.75rem;
}
.weather-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.weather-detail:last-child { border-right: none; }
.wd-icon { font-size: 0.85rem; }
.wd-label { font-size: 0.6rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1; }
.wd-val { font-size: 0.78rem; font-weight: 700; color: var(--white); }
.weather-uv-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  flex-wrap: wrap;
}
.weather-uv-row .wd-label { opacity: 0.6; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; }
.weather-uv-row .wd-val { font-weight: 700; font-size: 0.72rem; flex: 1; }
.uv-bar-wrap {
  flex: 1;
  min-width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.15rem;
}
.uv-bar {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease, background 0.6s ease;
}
.weather-rec {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 600;
  line-height: 1.4;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-ghost-sm {
  display: inline-block;
  color: var(--gray-500);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost-sm:hover { background: var(--gray-100); color: var(--text); }

.btn-outline-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ocean);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 99px;
  border: 2px solid var(--ocean);
  transition: all var(--transition);
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-outline-all:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30,96,145,0.25);
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* =============================================
   CIRCUITS
   ============================================= */
.circuits {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.circuits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}
.circuit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.circuit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.card-image {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}

/* Recommended badge — top left */
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.38rem 0.9rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.card-badge.recommended {
  background: rgba(245, 197, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #1A202C;
  border: 1px solid rgba(255,255,255,0.5);
}

/* Duration + temp info pills — bottom left of image */
.card-image-meta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}
.card-img-pill {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 99px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card-img-pill svg {
  width: 11px; height: 11px; flex-shrink: 0; opacity: 0.9;
}

.card-body { padding: 1.5rem 1.5rem 1.75rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card-body > p {
  font-size: 0.88rem;
  color: #4A5568;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Tag chips */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #4A5568;
  background: #F4F5F7;
  border: 1px solid #E2E6EA;
  border-radius: 99px;
  padding: 0.25rem 0.7rem;
  letter-spacing: 0.01em;
}

/* Price + Book row */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid #F0F1F3;
}
.card-price-block {}
.card-price-label {
  font-size: 0.72rem;
  color: #718096;
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.card-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #0A2342;
  line-height: 1;
}
.card-price-value span {
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: #718096;
  margin-left: 0.2rem;
}

/* iOS 26 liquid glass "Book" button */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #F5C842;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #0A2342;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 
    0 1px 2px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-book:hover {
  background: #e6b800;
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-1px);
  box-shadow: 
    0 4px 16px rgba(245, 200, 66, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* OLD .card-price hidden — price is now in card-footer */
.card-price { display: none; }
.card-meta { display: none; }

.circuits-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--gray-100);
  padding: 6rem 2rem;
}
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-tag { margin-bottom: 0.5rem; }
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.why-text > p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.why-list { margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.why-list li:last-child { border-bottom: none; }
.why-list span { color: var(--ocean); font-size: 1.1rem; flex-shrink: 0; }
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.float-icon { font-size: 1.8rem; }
.why-float-card strong {
  display: block;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}
.why-float-card small {
  font-size: 0.75rem;
  color: var(--gray-500);
}



/* =============================================
   BLOG
   ============================================= */
.blog {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(10,35,66,0.18);
}
.blog-card:active { transform: translateY(-4px) scale(0.99); }
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: height 0.35s ease;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card:hover .blog-img::after { opacity: 1; }
.blog-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-inner { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--yellow);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.blog-card:hover .blog-tag { transform: scale(1.08); }
.blog-content { padding: 1.5rem; }
.blog-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-content h4 { color: var(--ocean); }
.blog-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ocean);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card:hover .blog-link { color: var(--blue); gap: 0.6rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo em { font-style: italic; color: var(--yellow); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.footer-links-group h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links-group ul li { margin-bottom: 0.7rem; }
.footer-links-group ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links-group ul li a:hover { color: var(--yellow); }
.footer-contact-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-contact-info p { font-size: 0.88rem; margin-bottom: 0.6rem; }
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  margin-top: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-whatsapp-footer:hover { background: #20bd59; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--yellow); }

/* =============================================
   BOOKING MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,35,66,0.65);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 80px rgba(10,35,66,0.3);
  scrollbar-width: thin;
  scrollbar-color: rgba(10,35,66,0.18) transparent;
}
.modal::-webkit-scrollbar {
  width: 5px;
}
.modal::-webkit-scrollbar-track {
  background: transparent;
  margin: 20px 0;
}
.modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--blue) 100%);
  border-radius: 10px;
}
.modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffc02e 0%, var(--ocean) 100%);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  font-family: inherit;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  animation: closeAppear 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  width: 14px; height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
}
.modal-close::before { transform: rotate(45deg); }
.modal-close::after  { transform: rotate(-45deg); }
.modal-close:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.modal-close:active { transform: rotate(90deg) scale(0.95); }
@keyframes closeAppear {
  from { opacity: 0; transform: scale(0.5) rotate(-90deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
.modal-header {
  background: linear-gradient(135deg, var(--blue), var(--ocean));
  padding: 2.5rem 2rem 1.75rem;
  text-align: center;
  color: var(--white);
}
.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.modal-header p { font-size: 0.88rem; opacity: 0.8; }
.modal-body { padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #000000;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(30,96,145,0.12);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-confirm {
  width: 100%;
  background: linear-gradient(135deg, var(--yellow), #E5A800);
  color: var(--blue);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 99px;
  margin-top: 0.5rem;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,197,24,0.45); }
.modal-note { text-align: center; font-size: 0.78rem; color: var(--gray-500); margin-top: 0.75rem; }

/* Modal success */
.modal-success { padding: 3rem 2rem; text-align: center; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.modal-success p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.btn-whatsapp-confirm {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-whatsapp-confirm:hover { background: #20bd59; transform: translateY(-2px); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 1.25rem 0.9rem 1rem;
  border-radius: 99px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waPulse 3s 2s infinite;
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-label { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* =============================================
   ANIMATIONS (REVEAL)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.3s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.7s; }
.fade-up:nth-child(4) { animation-delay: 0.9s; }
.fade-up:nth-child(5) { animation-delay: 1.1s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-img-wrap img { height: 380px; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(10,35,66,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 900;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; padding: 0.75rem 2rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .btn-admin { display: none; }
  .circuits-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 640px) {
  .weather-widget-old-rule-removed {
    display: none;
  }
  .hero-content { padding: 8rem 1.5rem 4rem 1.5rem; }
  .hero-stats { gap: 1rem; }
  .stat-divider { height: 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .circuits-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Navbar mobile fixes */
  .nav-container {
    padding: 0 1rem;
    justify-content: space-between;
  }
  .nav-logo {
    margin-right: 0;
    font-size: 1.05rem;
  }
  .logo-img { height: 32px; }
  .logo-text-fallback { font-size: 1.05rem; }
  .nav-actions {
    margin-left: auto;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .lang-wrap { flex-shrink: 0; }
}

/* =============================================
   TOP ANNOUNCEMENT BAR
   ============================================= */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--yellow);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0;
  height: 28px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.top-bar-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-seamless 32s linear infinite;
  will-change: transform;
}
.top-bar-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  flex-shrink: 0;
}
.top-bar-divider {
  opacity: 0.4;
  font-size: 0.65rem;
}
@keyframes marquee-seamless {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-bar a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   BACKGROUND UPLOAD CONTROL (hidden — use bg.png)
   ============================================= */
.bg-upload-ctrl {
  display: none;
}

/* =============================================
   PHONE DIAL CODE SELECTOR
   ============================================= */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: visible;
  background: #fff;
  transition: border-color 0.2s;
}
.phone-input-wrap:focus-within { border-color: var(--blue); }

.phone-dial-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.75rem;
  cursor: pointer;
  border-right: 1.5px solid var(--border);
  background: rgba(10,35,66,0.03);
  border-radius: 10px 0 0 10px;
  min-width: 90px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  user-select: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.phone-dial-selector:hover { background: rgba(10,35,66,0.07); }
.phone-chevron { font-size: 0.65rem; opacity: 0.5; margin-left: 2px; }
.phone-flag { font-size: 1.1rem; }

.phone-number-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.95rem;
  background: transparent;
  border-radius: 0 10px 10px 0;
  box-shadow: none !important;
}

.phone-dial-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 280px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(10,35,66,0.14);
  z-index: 9999;
  overflow: hidden;
}
.phone-dial-dropdown.open { display: block; }

.phone-dial-search {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  outline: none;
  background: rgba(10,35,66,0.02);
  box-sizing: border-box;
}

.phone-dial-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem 0;
  scrollbar-width: thin;
}
.phone-dial-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.12s;
  color: var(--text);
}
.phone-dial-list li:hover { background: rgba(10,35,66,0.05); }
.phone-dial-list li.selected { background: rgba(245,197,24,0.12); font-weight: 600; }
.phone-dial-list .dl-flag { font-size: 1rem; }
.phone-dial-list .dl-name { flex: 1; }
.phone-dial-list .dl-code { color: var(--text-light); font-size: 0.82rem; font-weight: 600; }

/* =============================================
   BLOG ARTICLE MODAL
   ============================================= */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,35,66,0.75);
  backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.blog-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.blog-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(10,35,66,0.35);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(10,35,66,0.18) transparent;
}
.blog-modal::-webkit-scrollbar {
  width: 5px;
}
.blog-modal::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
  margin: 20px 0;
}
.blog-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--blue) 100%);
  border-radius: 10px;
  transition: background 0.2s;
}
.blog-modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffc02e 0%, var(--ocean) 100%);
}
.blog-modal-overlay.open .blog-modal {
  transform: translateY(0) scale(1);
}
.blog-modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,35,66,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(10,35,66,0.15);
  color: var(--blue);
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s;
  box-shadow: 0 2px 12px rgba(10,35,66,0.1);
  animation: closeAppear 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
.blog-modal-close::before,
.blog-modal-close::after {
  content: '';
  position: absolute;
  width: 14px; height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.blog-modal-close::before { transform: rotate(45deg); }
.blog-modal-close::after  { transform: rotate(-45deg); }
.blog-modal-close:hover {
  background: rgba(10,35,66,0.16);
  border-color: rgba(10,35,66,0.3);
  transform: rotate(90deg) scale(1.1);
}
.blog-modal-close:active { transform: rotate(90deg) scale(0.95); }
.blog-modal-hero {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
  margin-top: -44px;
}
.blog-modal-body {
  padding: 2rem 2.25rem 2.5rem;
}
.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
}
.blog-modal-meta .bm-tag {
  background: var(--yellow);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.72rem;
}
.blog-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.blog-modal-content {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.8;
}
.blog-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--blue);
  margin: 1.75rem 0 0.6rem;
  font-weight: 700;
}
.blog-modal-content p { margin-bottom: 1rem; }
.blog-modal-content ul {
  list-style: none;
  margin-bottom: 1rem;
}
.blog-modal-content ul li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
.blog-modal-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.7rem;
  top: 0.45rem;
}
.blog-modal-content .highlight-box {
  background: rgba(245,197,24,0.08);
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--text);
}
.blog-modal-cta {
  margin-top: 2rem;
  width: 100%;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .blog-modal-body { padding: 1.5rem 1.25rem 2rem; }
  .blog-modal-hero { height: 180px; }
}

/* =============================================
   RTL SUPPORT
   ============================================= */
[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav-actions { margin-left: 0; margin-right: 1rem; }
[dir="rtl"] .weather-widget { right: auto; left: 2rem; }
[dir="rtl"] .weather-rec { text-align: center; }
[dir="rtl"] .why-list li { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { direction: rtl; }
[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }
[dir="rtl"] .card-badge { left: auto; right: 1rem; }
[dir="rtl"] .card-price { right: auto; left: 1rem; }
[dir="rtl"] .blog-tag { left: auto; right: 1rem; }
[dir="rtl"] .lang-dropdown { right: 0; left: auto; }
[dir="rtl"] .lang-dropdown button { text-align: right; }
[dir="rtl"] .footer-top { direction: rtl; }
[dir="rtl"] .modal { direction: rtl; }
[dir="rtl"] .modal-close { right: auto; left: 1.25rem; }
[dir="rtl"] .whatsapp-float { right: auto; left: 2rem; }
[dir="rtl"] .hero-scroll-hint { direction: ltr; }
[dir="rtl"] .bg-upload-ctrl { direction: rtl; }

/* =============================================
   MOBILE WEATHER FIX (updated)
   ============================================= */
@media (max-width: 640px) {
  .weather-widget {
    top: auto;
    bottom: 8rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    min-width: 0;
  }
  .weather-details-row { gap: 0; }
  .bg-upload-ctrl { bottom: 4rem; gap: 0.4rem; }
}

/* whatsapp attention pulse */
.whatsapp-float.attention {
  animation: attentionPulse 0.6s ease 5;
}
@keyframes attentionPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
  background: linear-gradient(180deg, #0A1F3D 0%, #0A2342 100%);
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              padding 0.5s ease;
}

.faq-section.faq-visible {
  max-height: 2000px;
  padding: 6rem 0 7rem;
  opacity: 1;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.faq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-section .section-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.faq-section .section-header h2 em {
  color: var(--yellow);
  font-style: italic;
}

.faq-section .section-tag {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.faq-section .section-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* 3-column grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.faq-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq-cat-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  background: rgba(245,197,24,0.05);
}

.faq-cat-icon {
  font-size: 1.1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: color 0.2s;
  font-family: inherit;
}

.faq-q:hover {
  color: var(--yellow);
}

.faq-q.open {
  color: var(--yellow);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.5;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--yellow);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a.open {
  max-height: 400px;
}

.faq-a p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 0 1.25rem 1.1rem;
  margin: 0;
}

.faq-a p strong {
  color: rgba(255,255,255,0.9);
}


/* =============================================
   FAQ MODAL
   ============================================= */

.faq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 35, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9000;
  overflow-y: auto;
  padding: 2rem 1rem;
  animation: faqOverlayIn 0.25s ease;
}

.faq-modal-overlay.open {
  display: block;
}

@keyframes faqOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.faq-modal {
  position: relative;
  background: linear-gradient(180deg, #0A1F3D 0%, #0A2342 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
  animation: faqModalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes faqModalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.faq-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}

.faq-modal-close:hover {
  background: var(--yellow);
  color: #0b1a2e;
  transform: rotate(90deg);
}

/* Keep the inner faq-section styles but remove its own background/padding
   since the modal provides the container now */
.faq-modal .faq-section,
.faq-modal {
  /* faq-section bg/padding already handled by .faq-modal */
}


/* =============================================
   SAFETY MODAL
   ============================================= */

.safety-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 35, 0.88);
  backdrop-filter: blur(8px);
  z-index: 9100;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.safety-modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  animation: safetyOverlayIn 0.25s ease;
}

@keyframes safetyOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.safety-modal {
  position: relative;
  background: linear-gradient(160deg, #0A1F3D 0%, #0d2548 100%);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  margin: auto;
  padding: 3rem 2.5rem 2.5rem;
  animation: safetyModalIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes safetyModalIn {
  from { opacity: 0; transform: translateY(50px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.safety-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
}

.safety-modal-close:hover {
  background: var(--yellow);
  color: #0b1a2e;
  transform: rotate(90deg);
}

.safety-modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.safety-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.safety-modal-header h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.safety-modal-header h2 em {
  color: var(--yellow);
  font-style: italic;
}

.safety-modal-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .safety-grid { grid-template-columns: 1fr; }
}

.safety-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  transition: border-color 0.2s, background 0.2s;
}

.safety-card:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.04);
}

.safety-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.safety-card h3 {
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.safety-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.safety-card p strong {
  color: rgba(255,255,255,0.9);
}

.safety-modal-footer {
  text-align: center;
}

