/*
Theme Name: HOTALER - Direct Booking Engine
Theme URI: https://hotaler.com
Author: WEEN Technologies LLC
Author URI: https://weenstudio.com
Description: HOTALER — The world's most advanced direct hotel booking engine. 0% commission. Smart night-based booking. Group & MICE bookings. Loyalty program. Revenue intelligence.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: hotaler
Tags: hotel, booking-engine, direct-booking, commission-free, revenue-management
*/

/* ═══════════════════════════════════════════════════════════
   HOTALER DESIGN SYSTEM
   Navy: #0A1F44  |  Gold: #D4AF37  |  Gold Light: #F0C040
   ═══════════════════════════════════════════════════════════ */
:root {
  --h-navy:        #0A1F44;
  --h-navy-mid:    #122A5A;
  --h-navy-light:  #1A3A70;
  --h-gold:        #D4AF37;
  --h-gold-dark:   #B8960E;
  --h-gold-light:  #F0C040;
  --h-gold-pale:   #FBF4DC;
  --h-gold-bg:     #F9F3E3;
  --h-white:       #FFFFFF;
  --h-off-white:   #F8F7F4;
  --h-gray-50:     #F8F9FA;
  --h-gray-100:    #F1F3F5;
  --h-gray-200:    #E9ECEF;
  --h-gray-400:    #9CA3AF;
  --h-gray-600:    #4B5563;
  --h-gray-800:    #1F2937;
  --h-green:       #059669;
  --h-red:         #DC2626;
  --h-radius:      12px;
  --h-radius-lg:   20px;
  --h-radius-xl:   28px;
  --h-shadow:      0 4px 24px rgba(10,31,68,.10);
  --h-shadow-lg:   0 16px 48px rgba(10,31,68,.16);
  --h-shadow-gold: 0 8px 32px rgba(212,175,55,.25);
  --h-transition:  all 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--h-gray-800);
  background: var(--h-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700; line-height: 1.2;
  color: var(--h-navy); letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem,5vw,3.6rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.15rem,2vw,1.4rem); }
p  { color: var(--h-gray-600); line-height: 1.75; }
a  { color: var(--h-navy); text-decoration: none; transition: var(--h-transition); }
a:hover { color: var(--h-gold-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ──────────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 96px 0; }
.section-sm     { padding: 64px 0; }
.text-center    { text-align: center; }
.grid           { display: grid; gap: 24px; }
.grid-2         { grid-template-columns: repeat(2,1fr); }
.grid-3         { grid-template-columns: repeat(3,1fr); }
.grid-4         { grid-template-columns: repeat(4,1fr); }

/* ── Labels & Badges ─────────────────────────────────────────── */
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--h-gold-dark);
  margin-bottom: 12px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 700;
}
.badge-gold  { background: var(--h-gold-pale); color: var(--h-gold-dark); border: 1px solid rgba(212,175,55,.3); }
.badge-navy  { background: var(--h-navy); color: #fff; }
.badge-green { background: #ECFDF5; color: var(--h-green); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 28px; border-radius: var(--h-radius); font-weight: 700;
  font-size: .9rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--h-transition); white-space: nowrap; text-decoration: none;
  letter-spacing: .01em;
}
.btn-gold {
  background: var(--h-gold); color: var(--h-navy); border-color: var(--h-gold);
  box-shadow: var(--h-shadow-gold);
}
.btn-gold:hover { background: var(--h-gold-light); border-color: var(--h-gold-light); color: var(--h-navy); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,.4); }
.btn-navy { background: var(--h-navy); color: #fff; border-color: var(--h-navy); }
.btn-navy:hover { background: var(--h-navy-mid); color: #fff; transform: translateY(-1px); }
.btn-outline-gold { background: transparent; color: var(--h-gold); border-color: var(--h-gold); }
.btn-outline-gold:hover { background: var(--h-gold); color: var(--h-navy); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 9px 20px; font-size: .82rem; border-radius: 8px; }
.btn-xl { padding: 20px 48px; font-size: 1.05rem; border-radius: 16px; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--h-white); border: 1px solid var(--h-gray-200);
  border-radius: var(--h-radius-lg); padding: 32px; box-shadow: var(--h-shadow);
  transition: var(--h-transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--h-shadow-lg); border-color: rgba(212,175,55,.4); }
.card-gold-border { border-color: var(--h-gold); }
.card-navy { background: var(--h-navy); border-color: var(--h-navy-mid); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--h-gold-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.5rem; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--h-gray-200); transition: var(--h-transition);
}
#site-header.scrolled { box-shadow: 0 2px 24px rgba(10,31,68,.1); }
.header-inner { display: flex; align-items: center; height: 72px; gap: 32px; }

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 28px; width: auto; }
.site-logo svg { height: 28px; width: auto; }

/* Nav */
.primary-nav { display: flex; align-items: center; list-style: none; gap: 2px; flex: 1; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: flex; align-items: center; gap: 5px; padding: 8px 14px;
  font-size: .875rem; font-weight: 600; color: var(--h-navy); border-radius: 8px;
  transition: var(--h-transition);
}
.primary-nav > li > a:hover,
.primary-nav > li:hover > a { background: var(--h-gold-pale); color: var(--h-gold-dark); }
.chevron { font-size: .6rem; opacity: .5; transition: var(--h-transition); }
.primary-nav > li:hover > a .chevron { transform: rotate(180deg); opacity: 1; }

/* Mega menu */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: #fff; border: 1px solid var(--h-gray-200);
  border-radius: var(--h-radius-lg); box-shadow: var(--h-shadow-lg);
  padding: 24px; min-width: 580px; display: none; z-index: 500;
  border-top: 3px solid var(--h-gold);
}
.primary-nav > li:hover .mega-menu,
.primary-nav > li:focus-within .mega-menu { display: flex; gap: 28px; }
.mega-col-title {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--h-gray-400); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--h-gray-100);
}
.mega-link {
  display: flex; align-items: flex-start; gap: 10px; padding: 9px 10px;
  border-radius: 10px; margin-bottom: 2px; transition: var(--h-transition); color: var(--h-gray-800);
}
.mega-link:hover { background: var(--h-gold-pale); color: var(--h-navy); }
.mega-link-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--h-gray-100);
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.mega-link:hover .mega-link-icon { background: var(--h-gold); }
.mega-link strong { display: block; font-size: .83rem; font-weight: 600; color: var(--h-navy); margin-bottom: 1px; }
.mega-link span { font-size: .73rem; color: var(--h-gray-400); line-height: 1.3; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.header-login { font-size: .875rem; font-weight: 600; color: var(--h-navy); padding: 8px 14px; border-radius: 8px; }
.header-login:hover { background: var(--h-gray-100); color: var(--h-navy); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--h-navy); border-radius: 2px; transition: var(--h-transition); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  background: var(--h-navy);
  padding: 152px 0 96px; position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(212,175,55,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Hero left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px;
  background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.3);
  border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--h-gold); animation: goldPulse 2s infinite; }
.hero-eyebrow span { font-size: .75rem; font-weight: 700; color: var(--h-gold); letter-spacing: .08em; text-transform: uppercase; }
@keyframes goldPulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero h1 { color: #fff; margin-bottom: 8px; }
.hero h1 em { font-style: normal; color: var(--h-gold); }
.hero-tagline { font-size: 1.25rem; font-weight: 700; color: var(--h-gold); margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; }

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-proof { display: flex; gap: 28px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-num { font-size: 1.4rem; font-weight: 800; color: var(--h-gold); line-height: 1; }
.proof-label { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; line-height: 1.3; }

/* Hero right — booking widget mockup */
.hero-widget {
  background: rgba(255,255,255,.04); border: 1px solid rgba(212,175,55,.2);
  border-radius: 24px; padding: 28px; backdrop-filter: blur(20px);
  position: relative;
}
.hero-widget-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.hero-widget-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--h-gold); }
.hero-widget-live { display: flex; align-items: center; gap: 6px; font-size: .7rem; color: rgba(255,255,255,.45); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; animation: goldPulse 2s infinite; }

.night-selector {
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.25);
  border-radius: 14px; padding: 16px 20px; margin-bottom: 16px; text-align: center;
}
.night-selector .label { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.night-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.night-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(212,175,55,.4);
  background: transparent; color: var(--h-gold); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--h-transition);
}
.night-btn:hover { background: var(--h-gold); color: var(--h-navy); }
.night-count { font-size: 2rem; font-weight: 800; color: #fff; min-width: 40px; }

.booking-type-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.booking-tab {
  flex: 1; padding: 8px 4px; border-radius: 8px; font-size: .72rem; font-weight: 700;
  text-align: center; cursor: pointer; transition: var(--h-transition);
  border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5);
}
.booking-tab.active { background: var(--h-gold); color: var(--h-navy); border-color: var(--h-gold); }

.room-card-mini {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px; margin-bottom: 10px; display: flex; gap: 12px; align-items: center;
}
.room-thumb { width: 48px; height: 40px; border-radius: 8px; background: linear-gradient(135deg,rgba(212,175,55,.2),rgba(212,175,55,.4)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.room-info { flex: 1; }
.room-name { font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.room-rate { font-size: .72rem; color: rgba(255,255,255,.45); }
.room-price { font-size: .9rem; font-weight: 800; color: var(--h-gold); flex-shrink: 0; }
.price-save { font-size: .62rem; color: #10B981; display: block; text-align: right; }

.hero-widget-cta { background: var(--h-gold); color: var(--h-navy); border-radius: 12px; padding: 14px; text-align: center; font-weight: 800; font-size: .9rem; cursor: pointer; transition: var(--h-transition); margin-top: 4px; }
.hero-widget-cta:hover { background: var(--h-gold-light); transform: translateY(-1px); }

/* Floating notifications */
.float-notif {
  position: absolute; background: #fff; border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2); display: flex; align-items: center; gap: 10px;
  animation: floatY 4s ease-in-out infinite; z-index: 5; font-size: .78rem;
}
.float-notif.n1 { top: -20px; right: 20px; animation-delay: 0s; }
.float-notif.n2 { bottom: 20px; left: -30px; animation-delay: 2s; }
.float-notif-icon { font-size: 1.1rem; }
.float-notif strong { display: block; font-size: .8rem; font-weight: 700; color: var(--h-navy); }
.float-notif small { font-size: .68rem; color: var(--h-gray-400); }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ════════════════════════════════════════════════════════════
   ZERO COMMISSION BANNER
   ════════════════════════════════════════════════════════════ */
.zero-commission-bar {
  background: linear-gradient(135deg, var(--h-navy) 0%, var(--h-navy-mid) 100%);
  border-top: 3px solid var(--h-gold); border-bottom: 3px solid var(--h-gold);
  padding: 40px 0;
}
.zero-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.zero-bar-item { text-align: center; padding: 8px 24px; position: relative; }
.zero-bar-item + .zero-bar-item::before { content:''; position:absolute; left:0; top:15%; height:70%; width:1px; background:rgba(212,175,55,.2); }
.zero-bar-num { font-size: 2.2rem; font-weight: 900; color: var(--h-gold); line-height: 1; font-variant-numeric: tabular-nums; }
.zero-bar-label { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════════════════════════ */
.products-section { background: var(--h-off-white); }
.product-card { padding: 36px; border-left: 4px solid transparent; }
.product-card:hover { border-left-color: var(--h-gold); }
.product-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.product-card p { font-size: .88rem; margin-bottom: 16px; }
.product-link { font-size: .85rem; font-weight: 700; color: var(--h-gold-dark); display: inline-flex; align-items: center; gap: 6px; }
.product-link:hover { color: var(--h-navy); }
.product-link::after { content: '→'; transition: var(--h-transition); }
.product-link:hover::after { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.how-section { background: var(--h-white); }
.steps-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.steps-row::before {
  content:''; position:absolute; top:28px; left:10%; right:10%; height:2px;
  background: linear-gradient(90deg, var(--h-gold), var(--h-navy)); z-index: 0;
}
.step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--h-gold), var(--h-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: var(--h-navy);
  margin: 0 auto 20px; box-shadow: var(--h-shadow-gold);
}
.step h4 { font-size: .9rem; margin-bottom: 8px; color: var(--h-navy); }
.step p { font-size: .8rem; }

/* ════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════════════════════ */
.compare-section { background: var(--h-navy); overflow: hidden; }
.compare-section h2, .compare-section .section-label { color: #fff; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.compare-table thead tr th { padding: 16px 20px; font-size: .85rem; text-align: center; }
.compare-table thead tr th:first-child { text-align: left; }
.compare-table thead tr th.col-hotaler {
  background: var(--h-gold); color: var(--h-navy); border-radius: 12px 12px 0 0;
  font-size: .9rem; padding: 20px;
}
.compare-table thead tr th.col-ota { color: rgba(255,255,255,.5); }
.compare-table thead tr th.col-other { color: rgba(255,255,255,.4); }
.compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.compare-table tbody tr:hover { background: rgba(255,255,255,.03); }
.compare-table tbody td { padding: 13px 20px; font-size: .83rem; color: rgba(255,255,255,.65); text-align: center; }
.compare-table tbody td:first-child { text-align: left; }
.compare-table tbody td.col-hotaler { background: rgba(212,175,55,.07); color: #fff; font-weight: 600; }
.compare-table .check { color: var(--h-gold); font-weight: 700; font-size: 1rem; }
.compare-table .cross { color: rgba(255,255,255,.2); }
.compare-table .partial { color: rgba(255,165,0,.7); }
.compare-table .section-row td { padding: 20px 20px 8px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--h-gold); border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing-section { background: var(--h-off-white); }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: #fff; border: 2px solid var(--h-gray-200);
  border-radius: var(--h-radius-xl); padding: 40px; transition: var(--h-transition); position: relative;
}
.pricing-card.featured { border-color: var(--h-gold); box-shadow: var(--h-shadow-gold); }
.pricing-card.featured::before {
  content: '★ Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--h-gold); color: var(--h-navy); font-size: .72rem; font-weight: 800;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap; letter-spacing: .04em;
}
.pricing-card:hover { box-shadow: var(--h-shadow-lg); border-color: var(--h-gold); }
.plan-eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--h-gold-dark); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-currency { font-size: 1.2rem; font-weight: 700; color: var(--h-navy); }
.plan-amount { font-size: 3rem; font-weight: 900; color: var(--h-navy); line-height: 1; }
.plan-period { font-size: .85rem; color: var(--h-gray-400); margin-bottom: 24px; }
.plan-zero-commission {
  background: var(--h-gold-pale); border: 1px solid rgba(212,175,55,.3);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 20px;
  font-size: .8rem; font-weight: 700; color: var(--h-gold-dark);
  display: flex; align-items: center; gap: 8px;
}
.plan-desc { font-size: .88rem; color: var(--h-gray-600); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--h-gray-100); }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .85rem; color: var(--h-gray-600); }
.plan-features li::before { content: '✓'; color: var(--h-gold-dark); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-features li.na::before { content: '–'; color: var(--h-gray-300); }

/* ════════════════════════════════════════════════════════════
   ROI CALCULATOR
   ════════════════════════════════════════════════════════════ */
.roi-section { background: var(--h-navy); }
.roi-section h2 { color: #fff; }
.roi-section .section-label { color: var(--h-gold); }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.roi-inputs { background: rgba(255,255,255,.04); border: 1px solid rgba(212,175,55,.2); border-radius: 20px; padding: 32px; }
.roi-result { background: var(--h-gold); border-radius: 20px; padding: 32px; }
.roi-result h3 { color: var(--h-navy); margin-bottom: 24px; }
.roi-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.roi-input-field {
  width: 100%; padding: 11px 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.25); border-radius: 10px; color: #fff;
  font-size: .95rem; font-family: inherit; margin-bottom: 20px; outline: none;
}
.roi-input-field:focus { border-color: var(--h-gold); }
.roi-metric { margin-bottom: 20px; }
.roi-metric-label { font-size: .8rem; font-weight: 600; color: rgba(10,31,68,.7); margin-bottom: 4px; }
.roi-metric-value { font-size: 1.8rem; font-weight: 900; color: var(--h-navy); line-height: 1; }
.roi-metric-sub { font-size: .75rem; color: rgba(10,31,68,.6); }
.roi-total { background: var(--h-navy); border-radius: 14px; padding: 20px; margin-top: 20px; }
.roi-total-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--h-gold); margin-bottom: 4px; }
.roi-total-value { font-size: 2.5rem; font-weight: 900; color: #fff; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--h-white); }
.testimonial-card { padding: 36px; border-top: 3px solid var(--h-gold); }
.stars { color: var(--h-gold); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: .93rem; font-style: italic; color: var(--h-gray-600); line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--h-navy),var(--h-navy-mid)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--h-gold); font-size: .85rem; flex-shrink: 0; }
.author-info strong { display: block; font-size: .85rem; font-weight: 700; color: var(--h-navy); }
.author-info small { font-size: .75rem; color: var(--h-gray-400); }

/* ════════════════════════════════════════════════════════════
   FAQ / AEO SECTION
   ════════════════════════════════════════════════════════════ */
.faq-section { background: var(--h-off-white); }
.faq-item { border-bottom: 1px solid var(--h-gray-200); }
.faq-question {
  width: 100%; padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; background: none; border: none;
  font-size: 1rem; font-weight: 700; color: var(--h-navy); cursor: pointer; text-align: left;
}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--h-gold-pale); border: 1px solid rgba(212,175,55,.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--h-gold-dark); flex-shrink: 0; transition: var(--h-transition); }
.faq-answer { display: none; padding: 0 0 20px; font-size: .93rem; color: var(--h-gray-600); line-height: 1.75; max-width: 800px; }
.faq-item.open .faq-icon { background: var(--h-gold); color: var(--h-navy); transform: rotate(45deg); }
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--h-navy) 0%, var(--h-navy-mid) 50%, var(--h-navy) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 65%);
  top:-200px; left:50%; transform:translateX(-50%);
}
.cta-section h2 { color: #fff; margin-bottom: 12px; position: relative; }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 40px; position: relative; }
.cta-section .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
#site-footer { background: #050E20; color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { margin-bottom: 16px; display: flex; align-items: center; }
.footer-logo img, .footer-logo svg { height: 26px; filter: brightness(0) invert(1); }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: var(--h-gold); }
.footer-col-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.9); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: var(--h-transition); }
.footer-links a:hover { color: var(--h-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════════════
   INNER PAGES
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--h-navy) 0%, var(--h-navy-mid) 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--h-gold), transparent);
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; }

/* Forms */
.h-form .form-group { margin-bottom: 20px; }
.h-form label { display: block; font-size: .83rem; font-weight: 700; color: var(--h-navy); margin-bottom: 6px; }
.h-form input, .h-form select, .h-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--h-gray-200);
  border-radius: var(--h-radius); font-size: .93rem; color: var(--h-navy);
  background: #fff; transition: var(--h-transition); font-family: inherit;
}
.h-form input:focus, .h-form select:focus, .h-form textarea:focus {
  outline: none; border-color: var(--h-gold); box-shadow: 0 0 0 4px rgba(212,175,55,.1);
}
.h-form textarea { min-height: 130px; resize: vertical; }

/* Entry content */
.entry-content h2 { margin: 2em 0 .75em; color: var(--h-navy); }
.entry-content h3 { margin: 1.5em 0 .5em; }
.entry-content p  { margin-bottom: 1.25em; }
.entry-content ul,
.entry-content ol { margin: 1em 0 1.25em 1.5em; }
.entry-content li { margin-bottom: .4em; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-widget { max-width: 440px; margin: 0 auto; }
  .steps-row { grid-template-columns: repeat(3,1fr); }
  .steps-row::before { display: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .zero-bar-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: .75rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .zero-bar-grid { grid-template-columns: repeat(2,1fr); }
  .hero-proof { gap: 16px; }
}

/* Mobile nav open */
.mobile-nav-open .primary-nav {
  display: flex; flex-direction: column; position: fixed;
  top: 72px; left: 0; right: 0; background: #fff;
  padding: 16px 24px; gap: 0; border-bottom: 2px solid var(--h-gold);
  box-shadow: var(--h-shadow-lg); z-index: 999;
}
.mobile-nav-open .primary-nav > li > a { width: 100%; padding: 12px 16px; font-size: .95rem; }
.mobile-nav-open .mega-menu { display: none !important; }

/* ════════════════════════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ════════════════════════════════════════════════════════════ */
#mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--h-navy); border-top: 2px solid var(--h-gold);
  padding: 12px 16px; gap: 10px;
  box-shadow: 0 -8px 32px rgba(10,31,68,.4);
  transform: translateY(100%); transition: transform 0.3s ease;
}
#mobile-sticky-bar.visible { transform: translateY(0); }

@media (max-width: 768px) {
  #mobile-sticky-bar { display: flex; }
  #mobile-sticky-bar .btn { flex: 1; padding: 12px 10px; font-size: .82rem; justify-content: center; }

  /* Hero mobile */
  .hero { padding: 120px 0 64px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr !important; gap: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-widget { max-width: 100%; }
  .float-notif { display: none; }
  .hero-proof { gap: 12px; }
  .proof-num { font-size: 1.1rem; }

  /* Zero commission bar mobile */
  .zero-bar-grid { grid-template-columns: repeat(2,1fr); }
  .zero-bar-item + .zero-bar-item::before { display: none; }

  /* Products mobile */
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  /* Page hero mobile */
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Steps mobile */
  .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Compare table mobile */
  .compare-table .col-ota, .compare-table .col-other { display: none; }
  .compare-table th:first-child + th::before { content: 'vs OTAs & Others'; }

  /* Pricing mobile */
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }

  /* ROI grid mobile */
  .roi-grid { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .zero-bar-grid { grid-template-columns: repeat(2,1fr); }

  /* Hide mega menu on mobile properly */
  .primary-nav li .mega-menu { display: none !important; }

  /* Inner page grids mobile */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1.5fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1.4fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1.2fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:repeat(6,1fr)"] { grid-template-columns: 1fr 1fr 1fr !important; }
  [style*="grid-template-columns:2fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:2.2fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  body { padding-bottom: 80px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-cta .btn { width: 100%; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 8px 8px; font-size: .72rem; }
}

/* ─── Form message styles ───────────────────────────────────── */
.form-msg.success { background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0; display:block !important; padding:12px 16px; border-radius:10px; margin-bottom:16px; font-weight:600; }
.form-msg.error   { background:#FEF2F2; color:#991B1B; border:1px solid #FCA5A5; display:block !important; padding:12px 16px; border-radius:10px; margin-bottom:16px; font-weight:600; }
