/*
Theme Name: joii.to
Theme URI: https://joii.to
Author: joii.to
Author URI: https://joii.to
Description: AI-powered direct hotel booking platform theme. Joyful, vacation-inspired design with warm cream backgrounds, coral/teal/sunshine accents, floating animations, and modern typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: joii-to
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, translation-ready
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --bg-main: #FFFBF5;
  --bg-cream: #FFF7ED;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFAF3;
  --accent-coral: #FF6B6B;
  --accent-coral-soft: rgba(255, 107, 107, 0.1);
  --accent-teal: #2EC4B6;
  --accent-teal-soft: rgba(46, 196, 182, 0.1);
  --accent-sun: #FFD166;
  --accent-sun-soft: rgba(255, 209, 102, 0.15);
  --accent-sky: #5BB5F0;
  --accent-sky-soft: rgba(91, 181, 240, 0.1);
  --accent-lavender: #A78BFA;
  --accent-peach: #FFAB91;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   DECORATIVE BACKGROUND BLOBS
   ═══════════════════════════════════════════ */
.blob-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 25s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.5), transparent 70%);
  top: -8%;
  right: -5%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.35), transparent 70%);
  bottom: 20%;
  left: -8%;
  animation-delay: -8s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.25), transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: -16s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 251, 245, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  padding: 14px 40px;
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-sun), var(--accent-coral));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.25);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--accent-coral) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.35);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════
   SECTIONS — SHARED
   ═══════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label-coral { color: var(--accent-coral); }
.label-teal { color: var(--accent-teal); }
.label-sky { color: var(--accent-sky); }
.label-sun { color: #B8860B; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-coral), #FF8E53);
  color: #fff;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
  color: #fff;
}

.btn-primary .arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-hover);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 840px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-sun-soft);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #B8860B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge .sun {
  animation: spin 8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

.hero h1 .highlight-coral {
  background: linear-gradient(135deg, var(--accent-coral), #FF8E53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight-teal {
  background: linear-gradient(135deg, var(--accent-teal), #43E8D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating vacation emojis */
.floating-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-emoji {
  position: absolute;
  font-size: 2rem;
  animation: floatEmoji 12s ease-in-out infinite;
  opacity: 0.5;
}

.float-emoji:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.float-emoji:nth-child(2) { top: 25%; right: 10%; animation-delay: -3s; font-size: 1.6rem; }
.float-emoji:nth-child(3) { bottom: 20%; left: 12%; animation-delay: -6s; font-size: 1.8rem; }
.float-emoji:nth-child(4) { bottom: 30%; right: 8%; animation-delay: -9s; }
.float-emoji:nth-child(5) { top: 60%; left: 5%; animation-delay: -2s; font-size: 1.5rem; }
.float-emoji:nth-child(6) { top: 10%; right: 25%; animation-delay: -5s; font-size: 1.4rem; }

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(5deg); }
  50% { transform: translateY(8px) rotate(-3deg); }
  75% { transform: translateY(-12px) rotate(4deg); }
}

/* ═══════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════ */
.ticker-wrapper {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.6);
}

.ticker {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.ticker-item .icon {
  font-size: 1.1rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.stats-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-number.coral { color: var(--accent-coral); }
.stat-number.teal { color: var(--accent-teal); }
.stat-number.sun { color: #D4920B; }
.stat-number.sky { color: var(--accent-sky); }

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.problem-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Comparison card */
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-sun), var(--accent-coral), var(--accent-teal));
  border-radius: 4px 4px 0 0;
}

.comparison-card h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 700;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.comparison-ota {
  color: var(--accent-coral);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.65;
}

.comparison-direct {
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 0.95rem;
}

.savings-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-teal-soft), var(--accent-sun-soft));
  border-radius: var(--radius-sm);
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(46, 196, 182, 0.15);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  background: var(--bg-cream);
}

.how-inner {
  max-width: 1100px;
  width: 100%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 16.66%;
  right: 16.66%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-sun), var(--accent-coral), var(--accent-teal));
  opacity: 0.3;
  border-radius: 10px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-soft);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.step-1-icon { background: var(--accent-sun-soft); }
.step-2-icon { background: var(--accent-coral-soft); }
.step-3-icon { background: var(--accent-teal-soft); }

.step-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CHAT DEMO
   ═══════════════════════════════════════════ */
.chat-demo-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.chat-demo-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.chat-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(255, 107, 107, 0.05));
}

.chat-topbar .avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-sun), var(--accent-coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.chat-topbar .bot-info { flex: 1; }
.chat-topbar .bot-name { font-weight: 700; font-size: 0.95rem; }
.chat-topbar .bot-status { font-size: 0.75rem; color: var(--accent-teal); font-weight: 500; }

.chat-messages {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
  background: linear-gradient(180deg, #FFFDF8, #FFF9F0);
}

.msg {
  max-width: 82%;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  animation: msgAppear 0.5s ease forwards;
  opacity: 0;
}

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent-coral), #FF8E53);
  color: #fff;
  border-bottom-right-radius: 6px;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.2);
}

.msg-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.msg-bot .hotel-card {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent-teal-soft), var(--accent-sun-soft));
  border: 1px solid rgba(46, 196, 182, 0.2);
  border-radius: 14px;
  padding: 16px;
}

.hotel-card-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }

.hotel-card-price {
  color: var(--accent-teal);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.hotel-card-price .old-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}

.hotel-card-perks {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.chat-inputbar {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
}

.chat-inputbar input {
  flex: 1;
  background: #F8F6F1;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.chat-inputbar input::placeholder { color: var(--text-muted); }
.chat-inputbar input:focus { border-color: rgba(255, 107, 107, 0.4); }

.chat-inputbar button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), #FF8E53);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.25);
}

.chat-inputbar button:hover { transform: scale(1.08); }

.chat-text-content h2 { margin-bottom: 20px; }

.chat-text-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════ */
.benefits-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  background: var(--bg-cream);
}

.benefits-inner {
  max-width: 1100px;
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-coral { background: var(--accent-coral-soft); }
.icon-teal { background: var(--accent-teal-soft); }
.icon-sun { background: var(--accent-sun-soft); }
.icon-sky { background: var(--accent-sky-soft); }

.benefit-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SAMPLE QUERIES
   ═══════════════════════════════════════════ */
.queries-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.queries-inner {
  max-width: 1100px;
  width: 100%;
}

.queries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.query-chip {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: var(--shadow-soft);
}

.query-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.query-chip .q-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.q-coral { background: var(--accent-coral-soft); }
.q-teal { background: var(--accent-teal-soft); }
.q-sun { background: var(--accent-sun-soft); }
.q-sky { background: var(--accent-sky-soft); }

.query-chip .q-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.cta-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-sun), var(--accent-coral), var(--accent-teal));
}

.cta-decor {
  position: absolute;
  font-size: 4rem;
  opacity: 0.12;
}

.cta-decor-1 { top: 20px; left: 30px; transform: rotate(-15deg); }
.cta-decor-2 { bottom: 20px; right: 30px; transform: rotate(15deg); }

.cta-card h2 {
  position: relative;
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

/* ═══════════════════════════════════════════
   HOTELIERS BANNER
   ═══════════════════════════════════════════ */
.hoteliers-section {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-light);
  background: var(--bg-cream);
}

.hoteliers-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hoteliers-text h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hoteliers-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  background: var(--bg-cream);
}

.contact-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-sun), var(--accent-coral), var(--accent-teal));
  border-radius: 4px 4px 0 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #F8F6F1;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 3px var(--accent-coral-soft);
  background: #fff;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--accent-teal-soft), var(--accent-sun-soft));
  border: 1px solid rgba(46, 196, 182, 0.2);
  border-radius: var(--radius-sm);
  animation: fadeInUp 0.5s ease forwards;
}

.form-success.show {
  display: flex;
}

.success-icon { font-size: 1.6rem; }

.success-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.success-text strong {
  color: var(--accent-teal);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--border-light);
  background: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-brand .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-sun), var(--accent-coral));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #F8F6F1;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--accent-coral-soft);
  border-color: rgba(255, 107, 107, 0.2);
  color: var(--accent-coral);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

.llms-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 4px 12px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.02em;
}

.llms-link:hover {
  color: var(--accent-teal);
  border-color: var(--accent-teal);
  background: var(--accent-teal-soft);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .problem-inner,
  .chat-demo-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-grid,
  .queries-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hoteliers-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-emojis {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .chat-messages {
    min-height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   WORDPRESS SPECIFIC
   ═══════════════════════════════════════════ */
.wp-block-image img {
  border-radius: var(--radius-sm);
}

.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

/* Admin bar offset */
body.admin-bar .site-nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-nav {
    top: 46px;
  }
}
