/* Butterfly Flights - Design System */
:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-light: #eff6ff;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-600: #3b82f6;
    --primary-700: #2563eb;
    --primary-800: #1d4ed8;
    --pro-gold: #f59e0b;
    --pro-gold-hover: #d97706;
    --pro-gold-light: #fffbeb;
    --pro-gold-100: #fef3c7;
    --pro-gold-200: #fde68a;
    --success: #059669;
    --success-hover: #047857;
    --success-light: #ecfdf5;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --text: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-faint: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --bg: #f9fafb;
    --bg-card: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-primary: 0 4px 14px rgba(59,130,246,0.25);
    --shadow-gold: 0 4px 14px rgba(245,158,11,0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --transition: 150ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ NAV ============ */
.nav { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 24px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-size: 20px; font-weight: 700; color: #1e293b; text-decoration: none; display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.logo:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-user { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.nav-user .tier-badge { background: var(--primary-light); color: var(--primary); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-user .tier-badge.pro { background: var(--pro-gold-100); color: var(--pro-gold-hover); }

/* ============ BUTTONS ============ */
.btn { padding: 9px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); font-family: var(--font); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-success { background: var(--success); color: #fff; box-shadow: 0 4px 14px rgba(5,150,105,0.25); }
.btn-success:hover { background: var(--success-hover); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: var(--danger-hover); }
.btn-gold { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============ HERO ============ */
.hero { text-align: center; padding: 88px 24px 64px; position: relative; overflow: hidden; background: #fafbfe; }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, rgba(59,130,246,0.02) 40%, transparent 70%); pointer-events: none; animation: heroOrb1 20s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, rgba(245,158,11,0.03) 40%, transparent 70%); pointer-events: none; animation: heroOrb2 25s ease-in-out infinite; }
@keyframes heroOrb1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 30px); } }
@keyframes heroOrb2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -20px); } }
.hero h1 { font-size: 54px; font-weight: 800; line-height: 1.06; margin-bottom: 18px; letter-spacing: -0.03em; color: var(--text); position: relative; }
.hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--primary); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; line-height: 1.65; position: relative; }

/* ============ GUEST FORM ============ */
.guest-alert-form { max-width: 720px; margin: 0 auto; background: var(--bg-card); border-radius: var(--radius-2xl); padding: 32px; box-shadow: var(--shadow-lg); text-align: left; position: relative; border: 1px solid rgba(255,255,255,0.8); }
.guest-form-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-end; flex-wrap: wrap; }
.airport-field, .email-field { flex: 1; min-width: 160px; position: relative; }
.date-field { flex: 1; min-width: 140px; }
.dur-field { width: 84px; }
.price-field { width: 120px; }
.guest-alert-form label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.6px; }
.guest-alert-form input[type="text"],
.guest-alert-form input[type="email"],
.guest-alert-form input[type="number"],
.guest-alert-form input[type="date"] { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); transition: all var(--transition); background: #fff; }
.guest-alert-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.guest-form-note { text-align: center; font-size: 13px; color: var(--text-faint); margin-top: 10px; }
.guest-alert-form .btn-lg { white-space: nowrap; height: 44px; }

/* Calendar trigger (styled like date inputs) */
.cal-trigger { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); cursor: pointer; transition: all var(--transition); background: #fff; color: var(--text); display: flex; align-items: center; justify-content: space-between; }
.cal-trigger:hover { border-color: var(--primary); }
.cal-trigger.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.cal-trigger .cal-icon { color: var(--text-faint); font-size: 16px; }
.cal-trigger .cal-placeholder { color: var(--text-faint); }

/* Autocomplete dropdown */
.autocomplete-list { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); max-height: 240px; overflow-y: auto; z-index: 50; box-shadow: var(--shadow-lg); margin-top: 4px; }
.ac-item { padding: 10px 14px; cursor: pointer; font-size: 14px; display: flex; flex-direction: column; gap: 2px; transition: background var(--transition); border-left: 3px solid transparent; }
.ac-item:hover, .ac-item.ac-highlight { background: var(--primary-light); border-left-color: var(--primary); }
.ac-label { font-weight: 600; color: var(--text); }
.ac-sub { font-size: 12px; color: var(--text-faint); }
/* Region-locked items */
.ac-item.ac-locked { opacity: 0.6; cursor: not-allowed; background: var(--pro-gold-light); border-left-color: var(--pro-gold); }
.ac-item.ac-locked:hover { background: var(--pro-gold-100); opacity: 0.7; }
.ac-item.ac-locked .ac-label { color: var(--text-secondary); }
.ac-item.ac-locked .ac-sub { color: #b45309; }

/* Cabin selector */
.cabin-field { flex: 1; min-width: 200px; }
.cabin-selector { display: flex; gap: 6px; flex-wrap: wrap; }
.cabin-opt { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: default; transition: all var(--transition); user-select: none; }
.cabin-opt.selected { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-primary); }
.cabin-opt.locked { opacity: 0.45; cursor: not-allowed; }
.cabin-opt.locked:hover { opacity: 0.6; }
.pro-badge { display: inline-block; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 8px; margin-left: 5px; text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle; }

/* Notification toggles */
.notify-options { display: flex; gap: 8px; align-items: center; }
.notify-check { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: default; user-select: none; transition: all var(--transition); }
.notify-check.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.notify-check.locked { opacity: 0.45; cursor: not-allowed; background: var(--pro-gold-light); border-color: var(--pro-gold-200); }
.notify-check.locked:hover { opacity: 0.6; }
.notify-check input { display: none; }
.notify-icon { font-size: 15px; }

/* Pro toast */
.pro-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: linear-gradient(135deg, var(--pro-gold-100), var(--pro-gold-200)); color: #92400e; padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 1000; display: flex; align-items: center; gap: 10px; opacity: 0; transition: all 300ms ease; pointer-events: none; border: 1px solid var(--pro-gold-200); }
.pro-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.pro-toast .toast-badge { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; }
.pro-toast .toast-link { color: #b45309; text-decoration: underline; cursor: pointer; margin-left: 4px; white-space: nowrap; }

/* Success card */
.guest-success .success-card { max-width: 520px; margin: 0 auto; background: var(--bg-card); border-radius: var(--radius-2xl); padding: 40px 32px; box-shadow: var(--shadow-lg); text-align: center; animation: fadeInUp 0.4s ease; border-top: 4px solid var(--success); }
.success-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 14px rgba(34,197,94,0.3); }
.guest-success h3 { color: var(--text); font-size: 22px; margin-bottom: 8px; }
.success-route { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.success-price { font-size: 16px; color: var(--success); font-weight: 600; margin-bottom: 4px; }
.success-msg { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.success-actions { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.success-actions .btn { text-decoration: none; }
.success-upgrade { border-top: 1px solid var(--border); padding-top: 20px; }
.success-upgrade p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 72px 24px; text-align: center; max-width: 900px; margin: 0 auto; }
.how-it-works h2 { font-size: 32px; font-weight: 800; margin-bottom: 48px; letter-spacing: -0.02em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 24px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--primary-100), var(--primary), var(--primary-100)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 48px; height: 48px; background: var(--primary); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 16px; box-shadow: var(--shadow-primary); border: 4px solid var(--bg); }
.step h3 { margin-bottom: 8px; font-size: 16px; font-weight: 700; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ============ PRICING ============ */
.pricing { padding: 72px 24px; background: var(--bg); text-align: center; }
.pricing h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.pricing-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 48px; }
.pricing-cards { display: flex; gap: 24px; justify-content: center; max-width: 720px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px 28px; flex: 1; text-align: left; position: relative; transition: all var(--transition); }
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-2px); }
.pricing-card .card-badge { position: absolute; top: -13px; right: 20px; background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.pricing-card h3 { font-size: 18px; margin-bottom: 4px; font-weight: 700; }
.price { font-size: 40px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }
.price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card li { padding: 7px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.pricing-card li .check { color: var(--success); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.pricing-card.featured li .check { color: var(--primary); }
.pricing-card li.locked-feat { opacity: 0.45; }
.pricing-card li.locked-feat .check { color: var(--text-faint); }

/* ============ MODAL ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 200; }
.modal { background: var(--bg-card); border-radius: var(--radius-xl); padding: 36px; width: 420px; max-width: 90vw; position: relative; box-shadow: var(--shadow-lg); animation: fadeInUp 0.25s ease; }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-faint); transition: color var(--transition); }
.modal-close:hover { color: var(--text); }
.modal h2 { margin-bottom: 24px; font-size: 22px; font-weight: 700; }
.modal input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); margin-bottom: 12px; transition: all var(--transition); }
.modal input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.auth-switch { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-error { color: var(--danger); text-align: center; margin-top: 8px; font-size: 14px; min-height: 20px; }

/* ============ DASHBOARD ============ */
.dashboard { max-width: 1000px; margin: 0 auto; padding: 24px; }
.dashboard h1 { font-size: 26px; margin-bottom: 24px; font-weight: 800; letter-spacing: -0.02em; }

/* Alert Cards */
.alert-grid { display: grid; gap: 14px; }
.alert-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: all var(--transition); }
.alert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.alert-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.alert-route { font-size: 18px; font-weight: 700; }
.alert-price { font-size: 24px; font-weight: 800; color: var(--success); }
.alert-meta { display: flex; gap: 12px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.alert-meta span { display: flex; align-items: center; gap: 4px; }
.alert-actions { display: flex; gap: 8px; margin-top: 14px; }

/* Create Alert Form */
.create-form { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.create-form h2 { font-size: 18px; margin-bottom: 20px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select { padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); transition: all var(--transition); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }

/* Airport autocomplete (dashboard) */
.autocomplete { position: relative; }
.autocomplete-list { display: none; }
.autocomplete-item { padding: 10px 14px; cursor: pointer; font-size: 14px; transition: background var(--transition); }
.autocomplete-item:hover { background: var(--primary-light); }
.autocomplete-item small { color: var(--text-muted); }

/* Chart */
.chart-container { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-top: 16px; }

/* Notifications */
.notif-bell { position: relative; cursor: pointer; font-size: 18px; padding: 4px; }
.notif-count { position: absolute; top: -4px; right: -6px; background: var(--danger); color: #fff; font-size: 10px; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.notif-dropdown { position: absolute; top: calc(100% + 8px); right: -8px; width: 340px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-height: 400px; overflow-y: auto; z-index: 100; display: none; }
.notif-item { padding: 14px 16px; border-bottom: 1px solid var(--border-light); font-size: 13px; transition: background var(--transition); }
.notif-item.unread { background: var(--primary-50); }
.notif-item .notif-msg { margin-bottom: 4px; font-weight: 500; }
.notif-item .notif-time { color: var(--text-faint); font-size: 11px; }

/* ============ FOOTER ============ */
footer { text-align: center; padding: 40px 24px; color: var(--text-faint); font-size: 13px; border-top: 1px solid var(--border); }

/* ============ CALENDAR ============ */
.cal-container { position: relative; }
.cal-panel { position: absolute; top: calc(100% + 8px); left: 0; z-index: 60; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 20px; display: none; }
.cal-panel.open { display: flex; gap: 16px; }
.cal-month { width: 280px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-header .cal-title { font-size: 15px; font-weight: 700; }
.cal-header button { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-secondary); transition: all var(--transition); }
.cal-header button:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 11px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; margin-bottom: 6px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { width: 38px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); position: relative; }
.cal-day:hover { background: var(--primary-light); color: var(--primary); }
.cal-day.empty { cursor: default; }
.cal-day.empty:hover { background: none; }
.cal-day.past { color: var(--text-faint); opacity: 0.35; cursor: not-allowed; }
.cal-day.past:hover { background: none; color: var(--text-faint); }
.cal-day.today { font-weight: 800; color: var(--primary); }
.cal-day.selected { background: var(--primary); color: #fff; font-weight: 700; border-radius: var(--radius-sm); }
.cal-day.in-range { background: var(--primary-light); color: var(--primary); border-radius: 0; }
.cal-day.range-start { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.cal-day.range-end { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.cal-day.locked { color: var(--text-faint); opacity: 0.35; cursor: not-allowed; background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px); }
.cal-day.locked:hover { background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px); color: var(--text-faint); }
.cal-day.range-locked { border: 1.5px dashed var(--pro-gold); opacity: 0.5; background: var(--pro-gold-light); }
.cal-pro-marker { grid-column: 1 / -1; text-align: center; padding: 6px 0; font-size: 11px; font-weight: 700; color: #b45309; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cal-pro-marker::before, .cal-pro-marker::after { content: ''; flex: 1; height: 1px; background: var(--pro-gold-200); }
.cal-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); font-size: 12px; color: var(--text-muted); }
.cal-footer .cal-range-info { display: flex; align-items: center; gap: 6px; }
.cal-footer .cal-range-limit { color: #b45309; font-weight: 600; }

/* ============ SECTION HEADING ============ */
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--primary); margin-bottom: 12px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 20px; height: 1.5px; background: var(--primary-100); }

/* ============ TRUST BAR ============ */
.trust-bar { display: flex; justify-content: center; gap: 28px; margin-top: 28px; position: relative; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-item .trust-icon { font-size: 16px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-in { animation: slideUp 0.6s ease both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .cal-panel.open { flex-direction: column; gap: 8px; }
    .cal-month { width: 260px; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 34px; }
    .hero-sub { font-size: 16px; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .pricing-cards { flex-direction: column; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-2px); }
    .form-row { grid-template-columns: 1fr; }
    .guest-form-row { flex-direction: column; }
    .dur-field, .price-field { width: 100%; }
    .guest-alert-form .btn-lg { width: 100%; }
    .cal-panel.open { flex-direction: column; }
    .cal-month { width: 100%; }
    .cal-day { width: 100%; }
}
