/**
 * Ya Hala Spain - VIP Landing Pages & Mobile App Experience Stylesheet
 * File: /wp-content/uploads/yhs-landing.css
 */

:root {
  --yhs-primary: #0f9b90;
  --yhs-primary-dark: #0c7c74;
  --yhs-primary-light: #e6f7f5;
  --yhs-gold: #d4af37;
  --yhs-gold-light: #fef9e7;
  --yhs-dark: #09202c;
  --yhs-dark-card: #0d2836;
  --yhs-slate: #0f172a;
  --yhs-slate-light: #f8fafc;
  --yhs-text-dark: #1e293b;
  --yhs-text-muted: #64748b;
  --yhs-border: #e2e8f0;
  --yhs-whatsapp: #25d366;
  --yhs-whatsapp-dark: #128c7e;
  --yhs-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --yhs-shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --yhs-shadow-lg: 0 20px 40px rgba(9,32,44,0.12);
  --yhs-shadow-vip: 0 25px 50px -12px rgba(15,23,42,0.25);
  --yhs-header-height: 64px;
}

/* =====================================================================
   1. RESET & BETHEME OVERRIDES
   ===================================================================== */
body.yhs-landing-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--yhs-text-dark);
  background: #f8fafc !important;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: var(--yhs-header-height) 0 74px 0 !important; /* safe spacing for fixed top header and fixed bottom nav */
}

body.yhs-landing-body #Header_wrapper {
  background: transparent !important;
  background-image: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.yhs-landing-body #Header {
  min-height: 0 !important;
  padding: 0 !important;
}

body.yhs-landing-body .header_placeholder,
body.yhs-landing-body #Subheader {
  display: none !important;
}

body.yhs-landing-body #Content {
  padding: 0 !important;
  background: transparent !important;
}

body.yhs-landing-body .sections_group,
body.yhs-landing-body .content_wrapper,
body.yhs-landing-body .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.yhs-landing-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================================
   2. FIXED TOP HEADER (ALWAYS VISIBLE WHEN SCROLLING DOWN)
   ===================================================================== */
.yhs-top-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--yhs-header-height) !important;
  background: #ffffff !important;
  border-bottom: 1px solid var(--yhs-border) !important;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.yhs-top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.yhs-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.yhs-logo-wrap img {
  height: 42px;
  width: auto;
  display: block;
}

/* Header Right Actions (Pills + Hamburger) */
.yhs-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Quick Language Switcher Pills in Fixed Header */
.yhs-mobile-lang-pills {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--yhs-border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.yhs-mob-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-decoration: none !important;
  transition: all 0.2s ease;
  line-height: 1;
}

.yhs-mob-lang-btn:hover {
  color: var(--yhs-primary);
}

.yhs-mob-lang-btn.active {
  background: var(--yhs-primary);
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(15, 155, 144, 0.35);
}

/* Desktop Navigation Links */
.yhs-nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.yhs-nav-link {
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 2px;
}

.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%;
}

/* Mobile Hamburger Button ("Bocadillo de tres") */
.yhs-hamburger-btn {
  display: none;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.yhs-hamburger-btn:hover,
.yhs-hamburger-btn:active {
  background: #e2e8f0;
  border-color: var(--yhs-primary);
}

.yhs-hamburger-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #0f172a;
  border-radius: 3px;
  transition: all 0.25s ease-in-out;
}

/* When Drawer Open, Animate Hamburger to X */
body.yhs-drawer-open .yhs-hamburger-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
body.yhs-drawer-open .yhs-hamburger-btn span:nth-child(2) {
  opacity: 0;
}
body.yhs-drawer-open .yhs-hamburger-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =====================================================================
   3. MOBILE SLIDE-OUT DRAWER OVERLAY
   ===================================================================== */
.yhs-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: -320px !important;
  width: 290px !important;
  background: #ffffff !important;
  box-shadow: -5px 0 25px rgba(0,0,0,0.18) !important;
  z-index: 1000000 !important;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 22px 18px !important;
  box-sizing: border-box !important;
  overflow-y: auto !important;
}

[dir="rtl"] .yhs-mobile-drawer {
  right: auto !important;
  left: -320px !important;
  box-shadow: 5px 0 25px rgba(0,0,0,0.18) !important;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.yhs-drawer-open .yhs-mobile-drawer {
  right: 0 !important;
}

[dir="rtl"] body.yhs-drawer-open .yhs-mobile-drawer {
  left: 0 !important;
}

.yhs-drawer-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

body.yhs-drawer-open .yhs-drawer-backdrop {
  opacity: 1 !important;
  visibility: visible !important;
}

body.yhs-drawer-open {
  overflow: hidden !important;
}

.yhs-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--yhs-border);
  margin-bottom: 18px;
}

.yhs-drawer-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.yhs-drawer-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.yhs-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.yhs-drawer-link {
  color: #1e293b;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.yhs-drawer-link:hover,
.yhs-drawer-link.active {
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
}

.yhs-drawer-lang-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--yhs-border);
}

.yhs-drawer-lang-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yhs-text-muted);
  margin: 0 0 10px;
  font-weight: 700;
}

.yhs-drawer-lang-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yhs-drawer-lang-btn {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--yhs-border);
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.yhs-drawer-lang-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.yhs-drawer-lang-btn.current {
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  border-color: var(--yhs-primary);
  font-weight: 700;
}

/* =====================================================================
   4. SMART BROWSER LANGUAGE BANNER
   ===================================================================== */
.yhs-lang-banner {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 100000;
  border-bottom: 2px solid var(--yhs-primary);
}

.yhs-lang-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.yhs-lang-btn {
  background: var(--yhs-primary);
  color: #ffffff !important;
  padding: 5px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 13px;
  transition: background 0.2s;
}

.yhs-lang-btn:hover {
  background: #13bfb1;
}

.yhs-lang-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

/* =====================================================================
   5. VIP HERO SECTION
   ===================================================================== */
.yhs-hero-section {
  background: linear-gradient(145deg, #071924 0%, #0d2a38 50%, #09202c 100%);
  border-radius: 24px;
  padding: 55px 45px;
  margin: 20px 0 50px;
  color: #ffffff;
  box-shadow: var(--yhs-shadow-vip);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.yhs-hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 155, 144, 0.2) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.yhs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.yhs-hero-h1 {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.yhs-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 960px;
}

.yhs-hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 28px;
  max-width: 960px;
}

/* Trust Pills */
.yhs-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.yhs-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  color: #f1f5f9;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

/* Hero Buttons */
.yhs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.yhs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.yhs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

.yhs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a !important;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.yhs-btn-secondary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* =====================================================================
   6. VALUE HIGHLIGHTS GRID (4 CARDS)
   ===================================================================== */
.yhs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}

.yhs-feature-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--yhs-shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.yhs-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yhs-primary), #20c997);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yhs-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--yhs-shadow-md);
  border-color: #cbd5e1;
}

.yhs-feature-card:hover::after {
  opacity: 1;
}

.yhs-feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.yhs-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.yhs-feature-card p {
  font-size: 14.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

/* =====================================================================
   7. SECTION HEADINGS & SERVICES GRID
   ===================================================================== */
.yhs-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.yhs-section-badge {
  display: inline-block;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.yhs-section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.yhs-section-header p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.yhs-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}

.yhs-service-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--yhs-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.yhs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yhs-shadow-lg);
  border-color: #cbd5e1;
}

.yhs-service-img-wrap {
  width: 100%;
  height: 205px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.yhs-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.yhs-service-card:hover .yhs-service-img-wrap img {
  transform: scale(1.06);
}

.yhs-service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

[dir="rtl"] .yhs-service-tag {
  left: auto;
  right: 14px;
}

.yhs-service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yhs-service-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.35;
}

.yhs-service-period {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--yhs-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.yhs-service-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.yhs-service-btn {
  display: block;
  text-align: center;
  background: #0f172a;
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-top: auto;
}

.yhs-service-btn:hover {
  background: var(--yhs-primary);
  box-shadow: 0 4px 14px rgba(15, 155, 144, 0.3);
}

/* =====================================================================
   8. SPOTLIGHT SECTION (EXPERIENCES BY COUNTRY)
   ===================================================================== */
.yhs-spotlight-section {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: 22px;
  padding: 45px 40px;
  margin-bottom: 60px;
  box-shadow: var(--yhs-shadow-sm);
}

.yhs-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.yhs-spotlight-block {
  background: var(--yhs-slate-light);
  border: 1px solid var(--yhs-border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.25s ease;
}

.yhs-spotlight-block:hover {
  background: #ffffff;
  box-shadow: var(--yhs-shadow-md);
  border-color: #cbd5e1;
}

.yhs-spotlight-block h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yhs-spotlight-block p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* =====================================================================
   9. NATIVE HTML5 <details>/<summary> ACCORDION FAQS (FOOLPROOF OPENING)
   ===================================================================== */
.yhs-faq-container {
  max-width: 860px;
  margin: 0 auto 60px;
}

details.yhs-faq-item {
  background: #ffffff;
  border: 1.5px solid var(--yhs-border);
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.25s ease;
}

details.yhs-faq-item[open] {
  border-color: var(--yhs-primary);
  box-shadow: var(--yhs-shadow-md);
}

summary.yhs-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s ease;
  user-select: none;
  box-sizing: border-box;
}

/* Remove default disclosure triangle across all browsers */
summary.yhs-faq-trigger::-webkit-details-marker {
  display: none !important;
}
summary.yhs-faq-trigger::marker {
  display: none !important;
}

[dir="rtl"] summary.yhs-faq-trigger {
  text-align: right;
}

summary.yhs-faq-trigger:hover {
  background: #f8fafc;
}

.yhs-faq-q-text {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.yhs-faq-q-badge {
  color: var(--yhs-primary);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.yhs-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s, color 0.2s;
  color: #475569;
}

/* Rotate arrow when open */
details.yhs-faq-item[open] .yhs-faq-icon {
  transform: rotate(180deg);
  background: var(--yhs-primary);
  color: #ffffff;
}

.yhs-faq-content {
  padding: 0 24px 22px 52px;
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  animation: yhs-fadeIn 0.3s ease;
}

[dir="rtl"] .yhs-faq-content {
  padding: 0 52px 22px 24px;
}

@keyframes yhs-fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   10. BOTTOM VIP CTA BANNER
   ===================================================================== */
.yhs-bottom-cta {
  background: linear-gradient(135deg, #09202c 0%, #0f545c 100%);
  border-radius: 22px;
  padding: 55px 35px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  box-shadow: 0 15px 35px rgba(9, 32, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.yhs-bottom-cta h3 {
  color: #ffffff !important;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
}

.yhs-bottom-cta p {
  color: #e2e8f0;
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.65;
}

/* =====================================================================
   11. FLOATING WHATSAPP BUTTON (DESKTOP)
   ===================================================================== */
.yhs-whatsapp-float {
  position: fixed !important;
  right: 24px !important;
  left: auto !important;
  bottom: 24px !important;
  z-index: 999999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  transition: all 0.25s ease !important;
}

.yhs-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

/* =====================================================================
   12. MOBILE APP-STYLE BOTTOM NAVIGATION BAR
   ===================================================================== */
.yhs-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 999998;
  padding: 0 8px;
  box-sizing: border-box;
}

.yhs-mobile-bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.yhs-mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 600;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.2s ease;
  flex: 1;
  text-align: center;
}

.yhs-mob-nav-item svg {
  width: 20px;
  height: 20px;
}

.yhs-mob-nav-item:hover,
.yhs-mob-nav-item.active {
  color: #14b8a6;
}

.yhs-mob-nav-whatsapp {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.yhs-mob-wa-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transform: translateY(-16px);
  border: 3px solid #0f172a;
  animation: yhs-pulse-green 2.5s infinite;
  transition: transform 0.2s ease;
}

.yhs-mob-wa-circle svg {
  width: 28px;
  height: 28px;
}

.yhs-mob-wa-label {
  font-size: 11px;
  font-weight: 700;
  color: #25d366;
  transform: translateY(-12px);
}

@keyframes yhs-pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =====================================================================
   13. RESPONSIVE BREAKPOINTS
   ===================================================================== */
@media only screen and (max-width: 991px) {
  .yhs-nav-desktop {
    display: none !important;
  }
  
  .yhs-hamburger-btn {
    display: flex !important;
  }
}

@media only screen and (max-width: 768px) {
  .yhs-mobile-bottom-nav {
    display: flex !important;
  }
  
  .yhs-whatsapp-float {
    display: none !important;
  }
  
  .yhs-hero-section {
    padding: 36px 18px;
    border-radius: 18px;
    margin: 12px 0 32px;
  }
  
  .yhs-hero-h1 {
    font-size: 25px;
    line-height: 1.3;
  }
  
  .yhs-hero-lead {
    font-size: 15.5px;
  }
  
  .yhs-hero-desc {
    font-size: 14px;
  }
  
  .yhs-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .yhs-btn-primary,
  .yhs-btn-secondary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  
  .yhs-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  
  .yhs-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .yhs-spotlight-section {
    padding: 28px 18px;
    border-radius: 18px;
    margin-bottom: 40px;
  }
  
  .yhs-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .yhs-bottom-cta {
    padding: 35px 18px;
    border-radius: 18px;
    margin-bottom: 40px;
  }
  
  .yhs-bottom-cta h3 {
    font-size: 23px;
  }
  
  summary.yhs-faq-trigger {
    padding: 16px 18px;
  }
  
  .yhs-faq-q-text {
    font-size: 15px;
  }
  
  .yhs-faq-content {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
  
  [dir="rtl"] .yhs-faq-content {
    padding: 0 18px 18px 18px;
  }
}


/* =====================================================================
   14. LUXURY TRUST RIBBON (DESTINATIONS & PARTNERS)
   ===================================================================== */
.yhs-luxury-ribbon {
  background: #ffffff;
  border-top: 1px solid var(--yhs-border);
  border-bottom: 1px solid var(--yhs-border);
  padding: 24px 0;
  margin: -10px 0 45px 0;
}
.yhs-luxury-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yhs-text-muted);
  margin-bottom: 16px;
}
.yhs-luxury-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.yhs-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yhs-slate-light);
  border: 1px solid var(--yhs-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
}
.yhs-luxury-badge:hover {
  background: #ffffff;
  border-color: var(--yhs-primary);
  color: var(--yhs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* =====================================================================
   15. INTERACTIVE TRIP ESTIMATOR / WHATSAPP ASSISTANT
   ===================================================================== */
.yhs-estimator-card {
  background: linear-gradient(145deg, #09202c 0%, #0d2836 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px 35px;
  margin-bottom: 60px;
  color: #ffffff;
  box-shadow: var(--yhs-shadow-vip);
  position: relative;
  overflow: hidden;
}
.yhs-estimator-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(15, 155, 144, 0.25) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.yhs-estimator-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}
.yhs-estimator-header h3 {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
}
.yhs-estimator-header p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0;
}
.yhs-estimator-step-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5eead4;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yhs-estimator-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.yhs-est-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.yhs-est-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}
.yhs-est-pill.is-selected {
  background: var(--yhs-primary);
  border-color: var(--yhs-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 155, 144, 0.4);
}
.yhs-estimator-submit {
  text-align: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.yhs-btn-estimator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}
.yhs-btn-estimator:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

/* =====================================================================
   16. TESTIMONIALS & SOCIAL PROOF GRID
   ===================================================================== */
.yhs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.yhs-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--yhs-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--yhs-shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.yhs-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yhs-shadow-md);
  border-color: #cbd5e1;
}
.yhs-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f59e0b;
}
.yhs-testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 20px;
  flex: 1;
  font-style: normal;
}
.yhs-testi-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--yhs-border);
}
.yhs-testi-name {
  font-weight: 700;
  font-size: 14.5px;
  color: #0f172a;
}
.yhs-testi-origin {
  font-size: 12.5px;
  color: var(--yhs-text-muted);
}
.yhs-testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yhs-primary-light);
  color: var(--yhs-primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* =====================================================================
   17. BREADCRUMBS NAVIGATION
   ===================================================================== */
.yhs-breadcrumbs {
  font-size: 13px;
  color: var(--yhs-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.yhs-breadcrumbs a {
  color: var(--yhs-primary);
  text-decoration: none !important;
}
.yhs-breadcrumbs a:hover {
  text-decoration: underline !important;
}
.yhs-breadcrumbs-separator {
  color: #94a3b8;
}

/* Country Guides Badges Strip in Footer */
.yhs-footer-countries {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.yhs-country-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yhs-country-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: #cbd5e1 !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  user-select: none;
}

.yhs-country-pill:hover {
  background: rgba(15, 155, 144, 0.25) !important;
  border-color: #0f9b90 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 155, 144, 0.2);
}


/* ==========================================================================
   DELUXE FOOTER COUNTRY PILL BUTTONS (REAL LUXURY BUTTONS & HIGH CONTRAST)
   ========================================================================== */
.yhs-footer-countries {
  margin-top: 40px !important;
  padding-top: 30px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.yhs-country-pills-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 16px !important;
}

.yhs-country-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 18px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 9999px !important;
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  white-space: nowrap !important;
}

.yhs-country-pill:hover {
  background: #0f9b90 !important;
  border-color: #5eead4 !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(15, 155, 144, 0.5) !important;
}

/* Light version for body sections */
.yhs-country-pill.light,
.yhs-country-switch-section .yhs-country-pill {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06) !important;
}

.yhs-country-pill.light:hover,
.yhs-country-switch-section .yhs-country-pill:hover {
  background: #0f9b90 !important;
  border-color: #0f9b90 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(15, 155, 144, 0.35) !important;
}

/* ==========================================================================
   3D APPLE-STYLE BOOKING CARD & FORM ENHANCEMENTS
   ========================================================================== */
.yhs-apple-card {
  background: #ffffff !important;
  border-radius: 28px !important;
  padding: 46px 38px !important;
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.06) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  position: relative !important;
  overflow: hidden !important;
}

.yhs-apple-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, #0f9b90 0%, #20c997 50%, #d4af37 100%) !important;
}

.yhs-apple-title {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  text-align: center !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.02em !important;
}

.yhs-apple-subtitle {
  font-size: 15.5px !important;
  color: #64748b !important;
  text-align: center !important;
  max-width: 620px !important;
  margin: 0 auto 30px auto !important;
  line-height: 1.6 !important;
}

.yhs-apple-label {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 8px !important;
}

.yhs-apple-input {
  width: 100% !important;
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  font-size: 15px !important;
  color: #0f172a !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}

.yhs-apple-input:focus {
  outline: none !important;
  background: #ffffff !important;
  border-color: #0f9b90 !important;
  box-shadow: 0 0 0 4px rgba(15, 155, 144, 0.15) !important;
}

button.yhs-apple-submit,
.yhs-apple-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 18px 28px !important;
  background: linear-gradient(135deg, #0f9b90 0%, #0c7c74 100%) !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  border-radius: 16px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 10px 25px rgba(15, 155, 144, 0.35) !important;
  transition: all 0.25s ease !important;
  margin-top: 14px !important;
  text-decoration: none !important;
}

button.yhs-apple-submit:hover,
.yhs-apple-submit:hover {
  background: linear-gradient(135deg, #13bfb1 0%, #0f9b90 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(15, 155, 144, 0.45) !important;
}

/* ==========================================================================
   SERVICE CARDS 3D LUXURY ENHANCEMENTS
   ========================================================================== */
.yhs-services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 28px !important;
  margin-bottom: 60px !important;
}

.yhs-service-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
}

.yhs-service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12) !important;
  border-color: #cbd5e1 !important;
}

.yhs-service-img-wrap {
  width: 100% !important;
  height: 220px !important;
  position: relative !important;
  overflow: hidden !important;
  background: #0f172a !important;
}

.yhs-service-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.yhs-service-card:hover .yhs-service-img-wrap img {
  transform: scale(1.08) !important;
}

.yhs-service-tag {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[dir="rtl"] .yhs-service-tag {
  left: auto !important;
  right: 14px !important;
}

.yhs-service-body {
  padding: 26px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.yhs-service-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
}

.yhs-service-period {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f9b90 !important;
  margin-bottom: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #f0fdf4 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  width: fit-content !important;
  border: 1px solid #bbf7d0 !important;
}

.yhs-service-desc {
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.7 !important;
  margin: 0 0 22px 0 !important;
  flex: 1 !important;
}

.yhs-service-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: #0f172a !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
}

.yhs-service-btn:hover {
  background: #0f9b90 !important;
  box-shadow: 0 8px 20px rgba(15, 155, 144, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   LUXURY HERO SHOWCASE LAYOUT (WITH REAL PHOTO IN HERO)
   ========================================================================== */
.yhs-hero-showcase {
  background: linear-gradient(135deg, #071924 0%, #0d2836 50%, #09202c 100%) !important;
  border-radius: 28px !important;
  padding: 48px 40px !important;
  margin: 16px 0 45px 0 !important;
  color: #ffffff !important;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  position: relative !important;
  overflow: hidden !important;
}

.yhs-hero-grid-2col {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: center !important;
}

@media (max-width: 991px) {
  .yhs-hero-grid-2col {
    grid-template-columns: 1fr !important;
  }
}

.yhs-hero-photo-wrap {
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.yhs-hero-photo-wrap img {
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s ease !important;
}

.yhs-hero-photo-wrap:hover img {
  transform: scale(1.04) !important;
}

.yhs-hero-photo-badge {
  position: absolute !important;
  bottom: 16px !important;
  left: 16px !important;
  right: 16px !important;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
  font-size: 13.5px !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
