/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --coral: #3a6fa8;
  --coral-dark: #2d5f8a;
  --coral-light: #e8f1f8;
  --coral-dark-text: #1e4a72;
  --gold: #3aaa8a;
  --gold-light: #e6f7f3;
  --navy: #0f2340;
  --navy-light: #1a3050;
  --accent: #3a6fa8;
  --accent-light: #e8f1f8;
  --green: #2ecc71;
  --white: #fff;
  --bg: #f4f7fb;
  --border: #c8d8ec;
  --text: #0f2340;
  --muted: #4a6080;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(58,111,168,0.08);
  --shadow-lg: 0 12px 48px rgba(58,111,168,0.14);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
textarea, input, select, button { font-family: inherit; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.btn-primary { background: var(--coral); color: white; border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); }
.btn-outline-coral { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline-coral:hover { background: var(--coral); color: white; }
.btn-outline-nav { background: var(--navy-light); color: white; border: 2px solid var(--coral); border-radius: 8px; padding: 9px 0; font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; width: 88px; }
.btn-outline-nav:hover { background: var(--coral); color: white; }
.btn-primary-nav { background: var(--coral); color: white; border: 2px solid var(--coral); border-radius: 8px; padding: 9px 0; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; width: 88px; }
.btn-primary-nav:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.w-full { width: 100%; justify-content: center; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); padding: 0 5%;
  display: flex; align-items: center; gap: 24px; height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: white; }
.logo-icon { width: 38px; height: 38px; background: var(--coral); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; flex-shrink: 0; }
.logo-icon.sm { width: 30px; height: 30px; font-size: 14px; }
.logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.logo-img.sm { width: 30px; height: 30px; }
.logo-text { font-size: 16px; color: white; letter-spacing: 0.3px; }
.logo-text strong { color: var(--coral); }
.nav-links { display: flex; gap: 4px; margin: 0 auto; }
.nav-links a { color: rgba(255,255,255,0.8); padding: 8px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.12); }
.nav-links .highlight-link { color: var(--coral); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language selector */
.lang-selector { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 13px; }
.lang-selector select { background: transparent; border: none; color: rgba(255,255,255,0.7); font-size: 13px; cursor: pointer; outline: none; }
.lang-selector select option { background: var(--navy); color: white; }

/* Notification btn */
.notif-btn { position: relative; color: rgba(255,255,255,0.8); font-size: 18px; padding: 6px; }
.notif-btn:hover { color: white; }
.badge { position: absolute; top: -4px; right: -4px; background: var(--coral); color: white; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* User menu */
.user-menu-wrapper { position: relative; }
.user-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 8px; padding: 6px 12px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.user-btn:hover { background: rgba(255,255,255,0.18); }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 6px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 180px; padding: 8px 0; z-index: 999; }
.user-dropdown.open { display: block; }
.user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 14px; color: var(--text); transition: background 0.15s; }
.user-dropdown a:hover { background: var(--bg); color: var(--coral); }
.user-dropdown a.danger { color: #dc2626; }
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

.hamburger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }

/* ===== TOAST ===== */
.toast-container { position: fixed; top: 74px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 12px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: space-between; gap: 16px; min-width: 280px; animation: slideIn 0.3s ease; }
.toast-success { border-left: 4px solid var(--green); }
.toast-danger { border-left: 4px solid #dc2626; }
.toast-info { border-left: 4px solid var(--accent); }
.toast button { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--muted); }
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: white; border-radius: 16px; padding: 32px; max-width: 440px; width: 100%; position: relative; box-shadow: var(--shadow-lg); }
.modal-box.sm { max-width: 340px; }
.modal-box h2 { font-family: 'Poppins', sans-serif; font-size: 22px; margin-bottom: 8px; }
.modal-box p { color: var(--muted); margin-bottom: 16px; font-size: 14px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); }
.modal-actions { display: flex; gap: 12px; margin-top: 20px; }
.lang-modal-row { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 13px; }
.lang-modal-row select { border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; }
textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 12px; font-size: 14px; resize: vertical; margin-bottom: 8px; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 540px; overflow: hidden; }
.slides-wrapper { width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
.slide.active { display: flex; }
.slide-content { display: flex; align-items: center; justify-content: space-between; padding: 0 6%; gap: 60px; width: 100%; max-width: 1200px; margin: 0 auto; }
.slide-photo.polaroid { background: white; padding: 16px 16px 50px; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); transform: rotate(-3deg); flex-shrink: 0; width: 280px; }
.slide-photo.polaroid img { width: 100%; height: 240px; object-fit: cover; background: rgba(255,255,255,0.3); }
.slide-text h1 { font-family: 'Poppins', sans-serif; font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 16px; }
.slide-text h1 em { font-style: italic; }
.slide-text p { color: rgba(255,255,255,0.85); font-size: 18px; }
.slide-dots { position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; }
.dot.active { background: white; }

/* ===== SEARCH SECTION ===== */
.search-section { background: white; padding: 20px 5% 48px; margin-top: 0; position: relative; z-index: 10; }
.travel-tabs { display: flex; gap: 0; border: 2px solid var(--coral); border-radius: 10px; overflow: hidden; width: fit-content; margin: 0 auto 24px; }
.travel-tab { background: white; border: none; padding: 12px 32px; font-size: 15px; font-weight: 700; cursor: pointer; color: var(--coral); display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.travel-tab.active { background: var(--coral); color: white; }
.trip-type-row { display: flex; gap: 12px; margin-bottom: 20px; justify-content: center; }
.radio-pill { cursor: pointer; }
.radio-pill input { display: none; }
.radio-pill { background: var(--bg); border: 2px solid var(--border); border-radius: 20px; padding: 7px 18px; font-size: 13px; font-weight: 600; color: var(--muted); transition: all 0.2s; }
.radio-pill:has(input:checked) { background: var(--coral); border-color: var(--coral); color: white; }

/* Search Bar */
.search-bar { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.form-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.field-group { flex: 1; min-width: 160px; }
.field-group.wide { flex: 2; min-width: 240px; }
.field-group label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.field-group label .optional { text-transform: none; font-weight: 400; font-size: 11px; }
.field-group input[type=text],
.field-group input[type=date],
.field-group input[type=time],
.field-group input[type=email],
.field-group input[type=password],
.field-group input[type=tel],
.field-group select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 14px; outline: none; transition: border-color 0.2s; background: white; appearance: none; -webkit-appearance: none; color: var(--text); }
.field-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.field-group input:focus, .field-group select:focus { border-color: var(--coral); }
.tick-check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; margin-top: 4px; }
.tick-check input[type=checkbox] { display: none; }
.tick-box { width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 5px; background: white; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.tick-check input:checked + .tick-box { background: var(--coral); border-color: var(--coral); }
.tick-check input:checked + .tick-box::after { content: ''; display: block; width: 5px; height: 9px; border: 2px solid white; border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.tick-label { font-size: 14px; color: var(--text); }
.anon-toggle-row { margin-bottom: 12px; padding: 10px 14px; background: var(--accent-light); border-radius: 8px; border: 1px solid #d0d5f5; }
.input-with-icon { position: relative; }
.field-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; font-size: 13px; width: 16px; text-align: center; }
.input-with-icon input { padding-left: 34px; }
.input-with-icon input[type=text] { padding-left: 42px; }
.flex-check { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-top: 6px; cursor: pointer; }
.flex-check input[type=checkbox] { accent-color: var(--coral); }

/* Toggle switch */
.toggle-switch { display: inline-flex; align-items: center; cursor: pointer; }
.toggle-switch input { display: none; }
.toggle-slider { width: 42px; height: 22px; background: var(--border); border-radius: 11px; position: relative; transition: background 0.2s; }
.toggle-slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: white; border-radius: 50%; transition: left 0.2s; }
.toggle-switch input:checked + .toggle-slider { background: var(--coral); }
.toggle-switch input:checked + .toggle-slider::after { left: 23px; }

/* Airport autocomplete */
.airport-autocomplete { position: relative; }
.airport-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow); z-index: 600; overflow: hidden; margin-top: 2px; }
.airport-dropdown.open { display: block; }
.airport-option { padding: 10px 14px; cursor: pointer; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.airport-option:hover, .airport-option.active { background: var(--coral-light); }
.airport-iata { font-weight: 700; color: var(--coral); min-width: 36px; font-size: 13px; }
.airport-detail { color: var(--muted); font-size: 12px; }

/* Multi-select */
.multi-select-wrapper { position: relative; }
.multi-select-btn { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; text-align: left; background: white; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--muted); }
.multi-select-btn:hover { border-color: var(--coral); }
.multi-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow); z-index: 500; padding: 8px; max-height: 200px; overflow-y: auto; }
.multi-dropdown.open { display: block; }
.multi-dropdown label { display: flex; align-items: center; gap: 8px; padding: 7px 8px; font-size: 13px; cursor: pointer; border-radius: 6px; }
.multi-dropdown label:hover { background: var(--coral-light); }
.multi-dropdown label input { accent-color: var(--coral); }

/* Action Bar */
.action-bar { background: var(--coral-light); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.action-note { font-size: 13px; color: var(--coral-dark); flex: 1; min-width: 200px; }
.action-note i { margin-right: 6px; }
.action-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== RESULTS ===== */
.results-section { padding: 48px 5%; background: var(--bg); }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-header h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; }
.results-controls { display: flex; align-items: center; gap: 12px; }
.results-controls select { border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; background: white; }
.results-count { font-size: 13px; color: var(--muted); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
/* Carousel */
.carousel-wrapper { position: relative; display: flex; align-items: center; gap: 8px; }
.carousel-track-outer { flex: 1; overflow: hidden; }
.carousel-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.carousel-arrow { background: white; border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; color: var(--navy); box-shadow: var(--shadow); transition: all 0.2s; flex-shrink: 0; }
.carousel-arrow:hover { background: var(--coral); color: white; border-color: var(--coral); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--coral); }
.btn-outline-coral { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1.5px solid var(--coral); color: var(--coral); border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-outline-coral:hover { background: var(--coral); color: white; }
.loading-spinner { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--muted); font-size: 16px; }

/* Trip Card */
.trip-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: all 0.25s; user-select: none; -webkit-user-select: none; }
.trip-card:hover { border-color: var(--coral); box-shadow: 0 8px 32px rgba(58,111,168,0.14); transform: translateY(-3px); }
.trip-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.trip-route { font-weight: 700; font-size: 15px; color: var(--navy); }
.trip-route span { color: var(--coral); }
.trip-type-badge { background: var(--gold-light); color: var(--gold); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; }
.trip-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.trip-detail-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.trip-detail-row i { color: var(--coral); width: 16px; flex-shrink: 0; margin-top: 2px; }
.trip-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.trip-tag { background: var(--coral-light); color: var(--coral-dark); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
/* Multi-destination legs in card */
.trip-legs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.trip-leg-row { display: flex; align-items: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.leg-dot { background: var(--coral); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.leg-date { color: var(--muted); font-size: 11px; }
.leg-airline { color: var(--muted); font-size: 11px; font-style: italic; }
/* Multi-destination form */
.multi-dest-header { display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 14px; margin-bottom: 12px; padding: 0 2px; }
.leg-row { display: flex; align-items: flex-start; gap: 10px; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px; margin-bottom: 10px; }
.leg-num { background: var(--coral); color: white; font-size: 12px; font-weight: 700; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 22px; }
.leg-fields { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; }
.leg-fields .field-group { min-width: 140px; flex: 1; }
.leg-remove { background: none; border: none; color: var(--muted); cursor: pointer; padding: 4px 6px; font-size: 14px; border-radius: 6px; flex-shrink: 0; margin-top: 20px; transition: color 0.2s; }
.leg-remove:hover { color: #e74c3c; }
.leg-remove-placeholder { width: 30px; flex-shrink: 0; }
.trip-card-footer { display: flex; align-items: center; justify-content: space-between; }
.trip-author { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.trip-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.trip-author i { font-size: 28px; color: var(--muted); }
.connect-btn { background: var(--coral); color: white; border: none; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.connect-btn:hover { background: var(--coral-dark); transform: translateY(-1px); }
.connect-btn.sent { background: var(--green); cursor: default; }
.my-trip-actions { display: flex; gap: 8px; }
.btn-sm-outline { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 6px; padding: 6px 12px; font-size: 12px; cursor: pointer; }
.btn-sm-outline.danger { border-color: #dc2626; color: #dc2626; }
.btn-sm-outline:hover { border-color: var(--coral); color: var(--coral); }

/* ===== MY TRIPS SECTION ===== */
.my-trips-section { padding: 48px 5%; background: white; }

/* ===== HOW IT WORKS ===== */
.how-works { padding: 80px 5%; background: var(--navy); }
.how-works .section-header { text-align: center; margin-bottom: 48px; }
.how-works .section-header h2 { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 800; color: white; }
.how-works .section-tag { font-size: 13px; color: var(--coral); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.steps-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.step-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 24px; text-align: center; width: 180px; position: relative; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--coral); color: white; border-radius: 50%; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-icon { font-size: 32px; color: var(--coral); margin-bottom: 12px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.step-card p { font-size: 12px; color: rgba(255,255,255,0.6); }
.step-arrow { color: rgba(255,255,255,0.3); font-size: 20px; padding: 0 12px; }

/* Section header */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header.left { text-align: left; }
.section-tag { font-size: 13px; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.section-header h2 { font-family: 'Poppins', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text); }

/* ===== FEEDBACK ===== */
.feedback-section { padding: 80px 5%; background: var(--bg); }
.feedback-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.testimonial-carousel .testimonial-card { display: none; background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.testimonial-carousel .testimonial-card.active { display: block; }
.testimonial-card .stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.t-avatar { font-size: 32px; color: var(--muted); }
.t-dots { display: flex; gap: 8px; margin-top: 16px; }
.t-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; }
.t-dots span.active { background: var(--coral); }
.social-row { display: flex; gap: 16px; margin-top: 20px; }
.social-row a { color: var(--muted); font-size: 22px; transition: color 0.2s; }
.social-row a:hover { color: var(--coral); }

/* Review form */
.review-col { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.review-form .star-rating { display: flex; gap: 8px; margin-bottom: 16px; }
.star-rating i { font-size: 28px; color: var(--border); cursor: pointer; transition: color 0.15s; }
.star-rating i.active { color: #f59e0b; }
.review-login-prompt { text-align: center; padding: 32px; }
.review-login-prompt p { color: var(--muted); margin-bottom: 16px; }

/* ===== APP BAR ===== */
.app-bar { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); padding: 60px 5%; }
.app-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1100px; margin: 0 auto; }
.app-bar-text h2 { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; color: white; margin-bottom: 8px; }
.app-bar-text p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.app-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.app-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; padding: 12px 20px; display: flex; align-items: center; gap: 12px; color: white; transition: all 0.2s; }
.app-badge:hover { background: rgba(255,255,255,0.25); }
.app-badge i { font-size: 28px; }
.app-badge div small { display: block; font-size: 11px; opacity: 0.8; }
.app-badge div strong { display: block; font-size: 16px; }
.app-badge.large i { font-size: 36px; }
.app-bar-img img { max-height: 280px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-inner { padding: 48px 5% 32px; display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; flex: 2; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); font-size: 20px; transition: color 0.2s; }
.footer-social a:hover { color: var(--coral); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 5%; text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== CHAT SIDEBAR ===== */
.chat-sidebar { position: fixed; bottom: 24px; right: 24px; z-index: 8000; }
.chat-toggle { background: var(--coral); color: white; border: none; width: 54px; height: 54px; border-radius: 50%; font-size: 22px; cursor: pointer; box-shadow: 0 4px 20px rgba(58,111,168,0.4); transition: all 0.2s; position: relative; }
.chat-toggle:hover { background: var(--coral-dark); transform: scale(1.05); }
.chat-panel { position: absolute; bottom: 64px; right: 0; width: 320px; background: white; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.chat-panel-header { background: var(--navy); color: white; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.chat-panel-header button { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }
.chat-search, .inbox-search { width: 100%; border: none; border-bottom: 1px solid var(--border); padding: 12px 16px; font-size: 14px; outline: none; }
.chat-rooms-list { max-height: 300px; overflow-y: auto; }
.chat-room-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.chat-room-item:hover { background: var(--bg); }
.chat-room-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--coral-light); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--coral); flex-shrink: 0; }
.chat-room-info { flex: 1; overflow: hidden; }
.chat-room-info strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-room-info span { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.chat-loading { padding: 24px; text-align: center; color: var(--muted); }

/* Chat Window */
.chat-window { position: fixed; bottom: 90px; right: 24px; width: 340px; background: white; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); z-index: 8001; flex-direction: column; display: flex; }
.chat-window-header { background: var(--navy); color: white; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; border-radius: 16px 16px 0 0; }
.chat-window-header div { display: flex; gap: 8px; }
.chat-window-header button { background: none; border: none; color: white; font-size: 16px; cursor: pointer; }
.chat-security-msg { background: #fffbeb; border-bottom: 1px solid #fde68a; padding: 8px 12px; font-size: 11px; color: #92400e; display: flex; align-items: center; gap: 6px; }
.chat-messages { flex: 1; padding: 16px; overflow-y: auto; max-height: 280px; display: flex; flex-direction: column; gap: 10px; }
.msg-bubble { max-width: 75%; padding: 9px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.msg-bubble.sent { background: var(--coral); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-bubble.received { background: var(--bg); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-input-row { display: flex; align-items: center; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.chat-input-row input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 14px; outline: none; }
.chat-input-row input:focus { border-color: var(--coral); }
.chat-input-row button { background: var(--coral); color: white; border: none; border-radius: 8px; padding: 9px 14px; cursor: pointer; }
.chat-attach { color: var(--muted); cursor: pointer; font-size: 16px; }

/* ===== INBOX PAGE ===== */
.inbox-page { display: grid; grid-template-columns: 320px 1fr; height: calc(100vh - 64px); }
.inbox-sidebar { border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.inbox-header { padding: 20px; border-bottom: 1px solid var(--border); }
.inbox-header h2 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.inbox-rooms { flex: 1; overflow-y: auto; }
.inbox-room-item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.inbox-room-item:hover, .inbox-room-item.active { background: var(--coral-light); }
.inbox-avatar { width: 44px; height: 44px; border-radius: 50%; font-size: 28px; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inbox-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.inbox-room-info { flex: 1; overflow: hidden; }
.inbox-room-info strong { display: block; font-size: 15px; font-weight: 700; }
.inbox-room-info span { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.inbox-meta small { font-size: 11px; color: var(--muted); }
.inbox-empty { padding: 48px 24px; text-align: center; }
.inbox-empty i { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.inbox-empty p { color: var(--muted); margin-bottom: 16px; }
.inbox-chat-area { display: flex; flex-direction: column; }
.inbox-chat-placeholder { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); gap: 12px; }
.inbox-chat-placeholder i { font-size: 56px; color: var(--border); }
.inbox-chat-header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; font-size: 16px; }
.inbox-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.inbox-input-row { display: flex; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--border); }
.inbox-input-row input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 14px; outline: none; }
.inbox-input-row input:focus { border-color: var(--coral); }

/* ===== AUTH PAGE ===== */
.auth-page { min-height: calc(100vh - 64px); background: linear-gradient(135deg, #e6f4f4 0%, #f0f9f9 100%); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: white; border-radius: 20px; padding: 40px; max-width: 520px; width: 100%; box-shadow: var(--shadow-lg); }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-header h1 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.auth-header p { color: var(--muted); font-size: 14px; }
.oauth-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border-radius: 10px; font-weight: 600; font-size: 15px; border: 1px solid var(--border); transition: all 0.2s; }
.oauth-btn.google { background: white; color: var(--text); }
.oauth-btn.google:hover { background: var(--bg); border-color: #4285f4; }
.oauth-btn.facebook { background: #1877f2; color: white; border-color: #1877f2; }
.oauth-btn.facebook:hover { background: #1460c6; }
.or-divider { text-align: center; position: relative; margin: 20px 0; }
.or-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.or-divider span { background: white; padding: 0 14px; color: var(--muted); font-size: 13px; position: relative; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form .field-group { flex: none; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-space { display: flex; justify-content: space-between; align-items: center; }
.forgot-link { font-size: 13px; color: var(--coral); }
.required-check a { color: var(--coral); }
.auth-switch { text-align: center; font-size: 14px; color: var(--muted); margin-top: 4px; }
.auth-switch a { color: var(--coral); font-weight: 600; }
.eye-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--muted); }
.photo-preview { margin-top: 8px; }

/* ===== ADMIN ===== */
.admin-page { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 64px); }
.admin-sidebar { background: var(--navy); padding: 24px 0; }
.admin-sidebar h3 { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding: 0 20px 16px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; transition: all 0.2s; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: white; background: rgba(255,255,255,0.1); border-left: 3px solid var(--coral); }
.admin-main { padding: 32px 40px; }
.admin-main h1 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 28px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: white; border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow); border-left: 4px solid transparent; }
.stat-card.blue { border-left-color: var(--accent); }
.stat-card.coral { border-left-color: var(--coral); }
.stat-card.green { border-left-color: var(--green); }
.stat-card.yellow { border-left-color: #f59e0b; }
.stat-card i { font-size: 28px; color: var(--muted); }
.stat-card strong { display: block; font-size: 26px; font-weight: 800; }
.stat-card span { font-size: 12px; color: var(--muted); }
.admin-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: var(--bg); }
.badge-pill { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; }
.badge-pill.green { background: #dcfce7; color: #16a34a; }
.badge-pill.red { background: #fee2e2; color: #dc2626; }
.badge-pill.yellow { background: #fef3c7; color: #d97706; }
.btn-sm { background: white; border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 12px; cursor: pointer; }
.btn-sm:hover { border-color: var(--coral); color: var(--coral); }
.btn-sm.danger { border-color: #dc2626; color: #dc2626; }
.btn-sm.green { border-color: #16a34a; color: #16a34a; }
.admin-input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; margin-bottom: 12px; outline: none; }
.admin-search-form { display: flex; gap: 12px; margin-bottom: 20px; }
.admin-search-form input { flex: 1; }
.admin-form { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.feedback-list { display: flex; flex-direction: column; gap: 16px; }
.feedback-item { background: var(--bg); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.feedback-item .stars { color: #f59e0b; font-size: 18px; margin-bottom: 8px; }
.feedback-item p { color: var(--text); margin-bottom: 8px; }
.feedback-item small { color: var(--muted); font-size: 12px; }
.fb-actions { margin-top: 12px; display: flex; gap: 8px; }

/* ===== STATIC PAGES ===== */
.static-page { min-height: calc(100vh - 64px); }
.static-hero { padding: 60px 5%; text-align: center; }
.static-hero.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); color: white; }
.static-hero.navy { background: var(--navy); color: white; }
.static-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 10px; }
.static-hero p { font-size: 16px; opacity: 0.85; }
.static-content { max-width: 800px; margin: 0 auto; padding: 48px 5%; }
.static-content h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: var(--navy); }
.static-content p { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.static-content ul { padding-left: 20px; }
.static-content ul li { color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; background: white; border: none; padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; }
.faq-q:hover { background: var(--bg); }
.faq-a { display: none; padding: 16px 20px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--border); line-height: 1.7; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; padding: 48px 5%; }
.blog-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: all 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-placeholder { height: 200px; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.blog-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted); }
.blog-empty { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--muted); }
.blog-empty i { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.blog-post-header { padding: 48px 5% 0; max-width: 800px; margin: 0 auto; }
.blog-post-header h1 { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.blog-cover { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.blog-post-content { font-size: 16px; line-height: 1.9; }
.blog-back { max-width: 800px; margin: 0 auto; padding: 0 5% 48px; }

/* App download page */
.app-download-page { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 5%; max-width: 1100px; margin: 0 auto; }
.app-dl-text h1 { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.app-dl-text p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.app-dl-text ul { margin-bottom: 24px; }
.app-dl-text ul li { display: flex; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 10px; }
.app-dl-text ul li i { color: var(--coral); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .carousel-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .feedback-inner { grid-template-columns: 1fr; }
  .app-bar-inner { flex-direction: column; text-align: center; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .app-download-page { grid-template-columns: 1fr; }
  .inbox-page { grid-template-columns: 1fr; }
  .inbox-chat-area { display: none; }
  .admin-page { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; z-index: 999; }
  .slide-content { flex-direction: column; text-align: center; padding: 40px 5%; }
  .slide-photo.polaroid { display: none; }
  .hero-slider { height: 380px; }
  .slide-text h1 { font-size: 36px; }
  .form-row { gap: 12px; }
  .results-grid { grid-template-columns: 1fr; }
  .carousel-track { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .chat-window { width: calc(100vw - 48px); right: 24px; }
}
@media (max-width: 480px) {
  .action-bar { flex-direction: column; }
  .action-btns { width: 100%; }
  .action-btns .btn { flex: 1; justify-content: center; }
  .travel-tabs { width: 100%; }
  .travel-tab { flex: 1; justify-content: center; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
