/**
 * YaHalaSpain - Unified Luxury VIP Stylesheet
 * 100% Mobile Responsive, Fast, Accessible & Clean
 * Supports LTR (ES, EN) and Native RTL (AR)
 */

:root {
  --yhs-primary: #0f9b90;
  --yhs-primary-dark: #0b7a71;
  --yhs-primary-light: #e6f7f5;
  --yhs-gold: #f59e0b;
  --yhs-gold-light: #fef3c7;
  --yhs-gold-dark: #b45309;
  --yhs-dark: #0f172a;
  --yhs-navy: #1e293b;
  --yhs-slate: #334155;
  --yhs-muted: #64748b;
  --yhs-light: #f8fafc;
  --yhs-border: #e2e8f0;
  --yhs-card-bg: #ffffff;
  --yhs-radius-sm: 8px;
  --yhs-radius-md: 16px;
  --yhs-radius-lg: 24px;
  --yhs-header-h: 70px;
  --yhs-bottom-bar-h: 68px;
  --yhs-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --yhs-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --yhs-shadow-lg: 0 20px 30px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.yhs-vip-page {
  margin: 0;
  padding: 0;
  padding-top: var(--yhs-header-h) !important;
  padding-bottom: var(--yhs-bottom-bar-h) !important;
  font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--yhs-navy);
  background-color: var(--yhs-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  body.yhs-vip-page {
    padding-bottom: 0 !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.yhs-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LTR / Phone isolation helper */
.yhs-ltr-isolate {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block !important;
}

/* ==========================================================================
   1. FIXED HEADER
   ========================================================================== */
.yhs-top-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--yhs-header-h);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999 !important;
  border-bottom: 1px solid var(--yhs-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.yhs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.yhs-logo-link {
  display: flex;
  align-items: center;
}

.yhs-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.yhs-desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 992px) {
  .yhs-desktop-nav {
    display: flex;
  }
}

.yhs-nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--yhs-slate);
  padding: 8px 4px;
  position: relative;
}

.yhs-nav-link:hover,
.yhs-nav-link.active {
  color: var(--yhs-primary);
}

.yhs-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yhs-primary);
  transition: width 0.2s ease;
}

.yhs-nav-link:hover::after,
.yhs-nav-link.active::after {
  width: 100%;
}

.yhs-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 1-Tap Language Switcher (Clean Badges, No broken font flags) */
.yhs-lang-pills {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 30px;
  border: 1px solid var(--yhs-border);
  gap: 3px;
}

.yhs-lang-pill {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  color: var(--yhs-slate);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.yhs-lang-pill:hover {
  color: var(--yhs-primary);
}

.yhs-lang-pill.active {
  background: var(--yhs-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 155, 144, 0.35);
}

.yhs-header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--yhs-navy);
  padding: 8px 14px;
  background: #f8fafc;
  border: 1px solid var(--yhs-border);
  border-radius: 30px;
}

@media (min-width: 1100px) {
  .yhs-header-phone {
    display: inline-flex;
  }
}

.yhs-header-phone:hover {
  background: #ffffff;
  color: var(--yhs-primary);
  border-color: var(--yhs-primary);
}

.yhs-hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--yhs-border);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

@media (min-width: 992px) {
  .yhs-hamburger-btn {
    display: none;
  }
}

.yhs-hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--yhs-navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ==========================================================================
   MOBILE SLIDE DRAWER
   ========================================================================== */
.yhs-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.yhs-mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 9999999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

[dir="rtl"] .yhs-mobile-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}

body.yhs-drawer-open .yhs-drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

body.yhs-drawer-open .yhs-mobile-drawer {
  transform: translateX(0);
}

.yhs-drawer-head {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--yhs-border);
}

.yhs-drawer-close {
  background: #f1f5f9;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yhs-navy);
}

.yhs-drawer-links {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
}

.yhs-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--yhs-navy);
  transition: background 0.15s ease;
}

.yhs-drawer-link:hover,
.yhs-drawer-link.active {
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
}

/* ==========================================================================
   2. HERO SLIDER
   ========================================================================== */
.yhs-hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: var(--yhs-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .yhs-hero-slider {
    min-height: 650px;
  }
}

@media (min-width: 1200px) {
  .yhs-hero-slider {
    min-height: 720px;
  }
}

.yhs-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.yhs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  display: flex;
  align-items: center;
}

.yhs-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.yhs-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.yhs-slide.is-active .yhs-slide-bg {
  transform: scale(1);
}

.yhs-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
}

@media (min-width: 992px) {
  .yhs-slide-overlay {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(15, 23, 42, 0.35) 100%);
  }
  [dir="rtl"] .yhs-slide-overlay {
    background: linear-gradient(270deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(15, 23, 42, 0.35) 100%);
  }
}

.yhs-slide-content {
  position: relative;
  z-index: 5;
  max-width: 740px;
  color: #ffffff;
  padding: 50px 0;
}

.yhs-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.55);
  color: #fef08a;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.yhs-slide-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #ffffff;
}

@media (min-width: 768px) {
  .yhs-slide-title {
    font-size: 46px;
  }
}

@media (min-width: 1200px) {
  .yhs-slide-title {
    font-size: 52px;
  }
}

.yhs-slide-title span {
  color: #2dd4bf;
}

.yhs-slide-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #e2e8f0;
  margin: 0 0 32px 0;
  max-width: 620px;
}

@media (min-width: 768px) {
  .yhs-slide-desc {
    font-size: 18px;
  }
}

.yhs-slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.yhs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  line-height: 1;
}

.yhs-btn-primary {
  background: var(--yhs-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 155, 144, 0.4);
}

.yhs-btn-primary:hover {
  background: var(--yhs-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 155, 144, 0.5);
}

.yhs-btn-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.yhs-btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.yhs-slider-arrows {
  position: absolute;
  bottom: 35px;
  right: 25px;
  display: none;
  gap: 12px;
  z-index: 10;
}

[dir="rtl"] .yhs-slider-arrows {
  right: auto;
  left: 25px;
}

@media (min-width: 768px) {
  .yhs-slider-arrows {
    display: flex;
  }
}

.yhs-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
  font-size: 20px;
}

.yhs-arrow-btn:hover {
  background: var(--yhs-primary);
  border-color: var(--yhs-primary);
}

.yhs-slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.yhs-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.yhs-dot.is-active {
  width: 32px;
  background: var(--yhs-primary);
}

/* ==========================================================================
   3. LUXURY TRUST RIBBON
   ========================================================================== */
.yhs-trust-ribbon {
  background: #ffffff;
  border-bottom: 1px solid var(--yhs-border);
  box-shadow: var(--yhs-shadow-sm);
  padding: 16px 0;
}

.yhs-ribbon-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.yhs-ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--yhs-slate);
}

.yhs-ribbon-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ==========================================================================
   4. SERVICES & CARDS
   ========================================================================== */
.yhs-section {
  padding: 70px 0;
}

@media (min-width: 768px) {
  .yhs-section {
    padding: 90px 0;
  }
}

.yhs-section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.yhs-section-badge {
  display: inline-block;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.yhs-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--yhs-dark);
  margin: 0 0 14px 0;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .yhs-section-title {
    font-size: 38px;
  }
}

.yhs-section-sub {
  font-size: 16px;
  color: var(--yhs-muted);
  margin: 0;
}

.yhs-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .yhs-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .yhs-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.yhs-service-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: var(--yhs-radius-md);
  overflow: hidden;
  box-shadow: var(--yhs-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.yhs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yhs-shadow-lg);
  border-color: #cbd5e1;
}

.yhs-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.yhs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yhs-service-card:hover .yhs-card-img {
  transform: scale(1.06);
}

.yhs-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yhs-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

[dir="rtl"] .yhs-card-tag {
  left: auto;
  right: 14px;
}

.yhs-card-tag.gold {
  background: var(--yhs-gold);
  color: #ffffff;
}

.yhs-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yhs-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--yhs-dark);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.yhs-card-desc {
  font-size: 14px;
  color: var(--yhs-muted);
  margin: 0 0 18px 0;
  line-height: 1.55;
  flex: 1;
}

.yhs-pricing-box {
  background: #f8fafc;
  border: 1px solid var(--yhs-border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
}

.yhs-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}

.yhs-price-row:not(:last-child) {
  border-bottom: 1px dashed var(--yhs-border);
}

.yhs-price-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yhs-slate);
  font-weight: 600;
}

.yhs-price-val {
  font-weight: 800;
  color: var(--yhs-primary-dark);
  font-size: 15px;
}

.yhs-card-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--yhs-primary);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.yhs-card-btn:hover {
  background: var(--yhs-primary-dark);
}

/* ==========================================================================
   5. INTERACTIVE TRIP ESTIMATOR
   ========================================================================== */
.yhs-estimator-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--yhs-radius-lg);
  padding: 40px 24px;
  margin: 30px auto;
  max-width: 1040px;
  box-shadow: var(--yhs-shadow-lg);
}

@media (min-width: 768px) {
  .yhs-estimator-section {
    padding: 50px 40px;
  }
}

.yhs-est-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yhs-est-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.yhs-pill-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yhs-pill-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.yhs-pill-btn.is-active {
  background: var(--yhs-primary);
  border-color: var(--yhs-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 155, 144, 0.4);
}

.yhs-est-submit-box {
  margin-top: 30px;
  text-align: center;
}

/* ==========================================================================
   6. 4 PILLARS
   ========================================================================== */
.yhs-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .yhs-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .yhs-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yhs-pillar-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: var(--yhs-radius-md);
  padding: 30px 24px;
  box-shadow: var(--yhs-shadow-sm);
  transition: all 0.25s ease;
}

.yhs-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yhs-shadow-md);
  border-color: var(--yhs-primary);
}

.yhs-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.yhs-pillar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--yhs-dark);
  margin: 0 0 10px 0;
}

.yhs-pillar-desc {
  font-size: 14px;
  color: var(--yhs-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   7. DESTINATIONS
   ========================================================================== */
.yhs-dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .yhs-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .yhs-dest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yhs-dest-card {
  position: relative;
  height: 320px;
  border-radius: var(--yhs-radius-md);
  overflow: hidden;
  box-shadow: var(--yhs-shadow-md);
  display: block;
}

.yhs-dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.yhs-dest-card:hover .yhs-dest-img {
  transform: scale(1.08);
}

.yhs-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.yhs-dest-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px 0;
}

.yhs-dest-sub {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

/* ==========================================================================
   8. REVIEWS
   ========================================================================== */
.yhs-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .yhs-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.yhs-review-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: var(--yhs-radius-md);
  padding: 26px;
  box-shadow: var(--yhs-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.yhs-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.yhs-review-text {
  font-size: 14px;
  color: var(--yhs-slate);
  font-style: italic;
  margin: 0 0 20px 0;
  line-height: 1.65;
}

.yhs-review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--yhs-border);
  padding-top: 14px;
}

.yhs-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--yhs-dark);
}

.yhs-author-city {
  font-size: 12px;
  color: var(--yhs-muted);
}

.yhs-verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 12px;
}

/* ==========================================================================
   9. FAQS (Native HTML5 details)
   ========================================================================== */
.yhs-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.yhs-faq-item {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--yhs-shadow-sm);
  transition: all 0.2s ease;
}

.yhs-faq-item[open] {
  border-color: var(--yhs-primary);
  box-shadow: var(--yhs-shadow-md);
}

.yhs-faq-summary {
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--yhs-dark);
  user-select: none;
}

.yhs-faq-summary::-webkit-details-marker {
  display: none;
}

.yhs-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yhs-slate);
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.yhs-faq-item[open] .yhs-faq-icon {
  transform: rotate(180deg);
  background: var(--yhs-primary);
  color: #ffffff;
}

.yhs-faq-body {
  padding: 0 22px 20px 22px;
  font-size: 15px;
  color: var(--yhs-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. INTERIOR PAGES (About, Services, Contact)
   ========================================================================== */
.yhs-page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.yhs-page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px 0;
}

@media (min-width: 768px) {
  .yhs-page-hero h1 {
    font-size: 48px;
  }
}

.yhs-page-hero p {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Form & Layout */
.yhs-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 40px 0;
}

@media (min-width: 992px) {
  .yhs-contact-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.yhs-contact-info-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: var(--yhs-radius-md);
  padding: 36px;
  box-shadow: var(--yhs-shadow-sm);
}

.yhs-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.yhs-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yhs-form-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: var(--yhs-radius-md);
  padding: 36px;
  box-shadow: var(--yhs-shadow-md);
}

.yhs-form-group {
  margin-bottom: 20px;
}

.yhs-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--yhs-navy);
  margin-bottom: 8px;
}

.yhs-form-input,
.yhs-form-select,
.yhs-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--yhs-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--yhs-dark);
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s;
}

.yhs-form-input:focus,
.yhs-form-select:focus,
.yhs-form-textarea:focus {
  outline: none;
  border-color: var(--yhs-primary);
  background: #ffffff;
}

/* ==========================================================================
   11. FOOTER & 5-ITEM APP MOBILE BOTTOM BAR
   ========================================================================== */
.yhs-footer {
  background: var(--yhs-dark);
  color: #cbd5e1;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yhs-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .yhs-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.yhs-footer-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.yhs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yhs-footer-link {
  font-size: 14px;
  color: #94a3b8;
}

.yhs-footer-link:hover {
  color: #ffffff;
}

.yhs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

@media (min-width: 768px) {
  .yhs-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Enriched 5-Item Mobile App Navigation Bar */
.yhs-mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--yhs-bottom-bar-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--yhs-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999990;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
  .yhs-mobile-bottom-bar {
    display: none;
  }
}

.yhs-mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--yhs-slate);
  gap: 3px;
  flex: 1;
}

.yhs-mob-nav-item.active {
  color: var(--yhs-primary);
}

.yhs-mob-wa-center {
  position: relative;
  top: -12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
  animation: yhsPulse 2s infinite;
}

@keyframes yhsPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}



/* =============================================================================
   NAVIGATION SERVICES DROPDOWN
============================================================================= */
.yhs-nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.yhs-nav-link.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yhs-dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.yhs-nav-item-dropdown:hover .yhs-dropdown-arrow,
.yhs-nav-item-dropdown:focus-within .yhs-dropdown-arrow {
  transform: rotate(180deg);
}

.yhs-dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 12px;
  z-index: 100000;
  list-style: none;
  margin: 0;
}

[dir="rtl"] .yhs-dropdown-menu,
.yhs-rtl .yhs-dropdown-menu {
  left: auto !important;
  right: 0 !important;
  text-align: right;
}

.yhs-nav-item-dropdown:hover .yhs-dropdown-menu,
.yhs-nav-item-dropdown:focus-within .yhs-dropdown-menu {
  display: block !important;
}

.yhs-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  font-size: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.yhs-dev-badge:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  color: #f8fafc;
  transform: translateY(-1px);
}

.yhs-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.2s, transform 0.2s;
}

.yhs-dropdown-item:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.yhs-rtl .yhs-dropdown-item:hover {
  transform: translateX(-4px);
}

.yhs-dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  color: #b8902d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yhs-dropdown-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  display: block;
}

.yhs-dropdown-desc {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.yhs-dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 8px 0;
}

.yhs-dropdown-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f9b90;
  text-decoration: none;
  border-radius: 8px;
}

.yhs-dropdown-all-link:hover {
  background: rgba(15, 155, 144, 0.08);
}

/* Drawer mobile sub-items */
.yhs-drawer-sublinks {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 16px 0;
}

.yhs-rtl .yhs-drawer-sublinks {
  padding-left: 0;
  padding-right: 20px;
}

.yhs-drawer-sublink {
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================================================
   APPLE-STYLE FORM & RESERVA STYLING
============================================================================= */
.yhs-apple-hero {
  background: linear-gradient(180deg, #090e17 0%, #111b2b 100%);
  padding: 85px 0 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.yhs-apple-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

.yhs-apple-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 48px 40px;
  max-width: 820px;
  margin: -40px auto 40px auto;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .yhs-apple-card {
    padding: 30px 20px;
    margin-top: -30px;
    border-radius: 18px;
  }
}

.yhs-apple-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.yhs-apple-subtitle {
  font-size: 15px;
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
}

.yhs-apple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 680px) {
  .yhs-apple-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.yhs-apple-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yhs-apple-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.2px;
}

.yhs-apple-input,
.yhs-apple-select,
.yhs-apple-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.yhs-apple-input:hover,
.yhs-apple-select:hover,
.yhs-apple-textarea:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.yhs-apple-input:focus,
.yhs-apple-select:focus,
.yhs-apple-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.yhs-apple-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4af37 0%, #b8902d 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.yhs-apple-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
  filter: brightness(1.05);
}

.yhs-apple-wa-card {
  max-width: 820px;
  margin: 0 auto 60px auto;
  background: linear-gradient(135deg, #0a1120 0%, #16243b 100%);
  border-radius: 20px;
  padding: 30px 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .yhs-apple-wa-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* =============================================================================
   SERVICE COMPARISON / DEDICATED PAGE STYLES
============================================================================= */
.yhs-service-hero {
  background: linear-gradient(180deg, #090e17 0%, #111b2b 100%);
  padding: 80px 0 50px 0;
  text-align: center;
  color: #ffffff;
}

.yhs-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .yhs-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.yhs-pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yhs-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.yhs-pricing-card.featured {
  border: 2px solid #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.yhs-card-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, #d4af37 0%, #b8902d 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yhs-rtl .yhs-card-badge {
  right: auto;
  left: 28px;
}

.yhs-price-val {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin: 16px 0 6px 0;
}

.yhs-price-period {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}

.yhs-price-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
  color: #334155;
  flex: 1;
}

.yhs-price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.yhs-price-feature-icon {
  color: #0f9b90;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Location Card */
.yhs-office-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.yhs-map-frame {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 14px;
  margin-top: 20px;
}
