/* ===== VayK — Shared Stylesheet ===== */

:root {
  --brand: #6A8A96;
  --brand-dark: #4A6875;
  --brand-light: #8AAAB6;
  --brand-pale: #EEF4F6;
  --accent: #C68B72;
  --accent-hover: #AD7560;
  --accent-pale: #FAF0EC;
  --accent-border: #E8C0B0;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-50: #F4F6F7;
  --gray-100: #ECF0F1;
  --gray-200: #DDE3E6;
  --gray-300: #C5D0D5;
  --gray-400: #9EB0B8;
  --gray-500: #6B8390;
  --gray-600: #4A6270;
  --gray-700: #334855;
  --gray-900: #1E2E36;
  --green: #4A9E75;
  --green-light: #E4F4EC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--gray-700); line-height: 1.6; background: white; }

/* ── ANNOUNCE BAR ── */
.announce-bar { background: var(--accent); color: white; text-align: center; padding: 9px 20px; font-size: 13px; font-weight: 500; }
.announce-bar a { color: white; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.45); }
.announce-bar a:hover { border-bottom-color: white; }

/* ── NAVIGATION ── */
.nav-wrap { position: sticky; top: 0; z-index: 100; background: white; border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.2s; }
.nav-wrap.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav {
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-logo img { height: 40px; display: block; }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a { color: var(--gray-600); text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links li.active-link > a { color: var(--accent); font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: 10px; opacity: 0.5; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block !important;
  padding: 10px 16px !important;
  color: var(--gray-700) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  transition: background 0.15s;
  white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--gray-50); color: var(--accent) !important; }

/* Nav CTAs */
.nav-cta { background: var(--accent) !important; color: white !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; font-size: 13px !important; }
.nav-cta:hover { background: var(--accent-hover) !important; color: white !important; }
.nav-agent { color: var(--brand) !important; font-weight: 600 !important; font-size: 13px !important; }
.nav-book { background: transparent !important; color: var(--gray-700) !important; border: 2px solid var(--gray-300) !important; padding: 7px 16px !important; border-radius: 6px; font-weight: 600 !important; font-size: 13px !important; }
.nav-book:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: transparent; border: none; padding: 6px; margin: -6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 150; }
.nav-overlay.open { display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-warm { background: var(--accent-pale); }
.section-brand { background: var(--brand-pale); }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: 50px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--gray-900); }
h2 { font-size: 38px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--gray-900); }
h3 { font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--gray-900); }
h4 { font-size: 17px; font-weight: 600; color: var(--gray-900); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; border: none;
  transition: all 0.2s; font-family: 'Inter', sans-serif; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--gray-700); border: 2px solid var(--gray-300); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; }
.btn-ghost-brand { background: transparent; color: var(--brand); border: 1px solid var(--brand-light); font-size: 14px; }
.btn-ghost-brand:hover { background: var(--brand-pale); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-cta-white { background: white; color: var(--accent-hover); }
.btn-cta-white:hover { background: var(--accent-pale); }
.btn-cta-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ── HOMEPAGE HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: white; }
.hero-left {
  padding: 80px 60px 80px calc(max((100vw - 1200px) / 2, 0px) + 48px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-pale); border: 1px solid var(--accent-border);
  color: var(--accent-hover); padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px; width: fit-content;
}
.hero-left h1 { margin-bottom: 20px; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
.hero-left h1 em { color: var(--accent); font-style: italic; }
.hero-sub { color: var(--gray-500); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
.hero-stat-val { font-size: 28px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 13px; color: var(--gray-500); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, transparent 25%);
  pointer-events: none;
}

/* ── TRUST BAR ── */
.trust-bar { background: white; border-bottom: 1px solid var(--gray-200); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-bar-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); padding-right: 24px; border-right: 1px solid var(--gray-200); flex-shrink: 0; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-700); }
.trust-icon { width: 30px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.ti-airbnb { background: #FF5A5F; color: white; font-size: 14px; }
.ti-booking { background: #003580; color: white; font-size: 10px; }
.ti-expedia { background: #FEC400; color: #222; font-size: 10px; }
.ti-pf { background: #E0F0FF; color: #0077C8; font-size: 9px; }
.ti-bayut { background: #00A572; color: white; font-size: 9px; font-weight: 900; }
.trust-dtcm { margin-left: auto; font-size: 12px; color: var(--gray-400); font-weight: 500; }

/* ── CARDS ── */
.card { background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 32px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: var(--accent-border); }
.card-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--accent-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-500); font-size: 15px; line-height: 1.65; }
.card-grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ── LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-60 { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: start; }
.two-col-40 { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 24px; left: 48px; right: 48px; height: 2px; background: var(--gray-200); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-pale); border: 2px solid var(--accent-border); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--gray-500); font-size: 14px; line-height: 1.6; }

/* ── CHECKLIST ── */
.checklist { list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; font-size: 15px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.checklist li:last-child { border-bottom: none; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 32px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 14px; left: 26px; font-size: 56px; color: var(--accent-border); font-family: Georgia, serif; line-height: 1; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; padding-top: 20px; }
.testimonial-stat { display: inline-block; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; }
.testimonial-author { font-weight: 700; color: var(--gray-900); font-size: 15px; }
.testimonial-meta { font-size: 13px; color: var(--gray-400); margin-top: 2px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { font-size: 16px; font-weight: 600; color: var(--gray-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; user-select: none; }
.faq-question:hover { color: var(--accent); }
.faq-toggle { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-left: 16px; line-height: 1; }
.faq-answer { font-size: 15px; color: var(--gray-500); line-height: 1.75; padding-bottom: 20px; display: none; }

/* ── PAGE HERO ── */
.page-hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 64px 0 56px; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 120px; height: 3px; background: var(--accent); }
.page-hero h1 { font-size: 42px; color: var(--gray-900); margin-bottom: 16px; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
.page-hero p { color: var(--gray-500); font-size: 17px; max-width: 600px; margin-bottom: 28px; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--gray-300); }

/* ── COMPARISON TABLE ── */
.comp-table { width: 100%; border-collapse: collapse; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.comp-table th { background: var(--gray-700); color: white; padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 600; }
.comp-table th.hl { background: var(--accent); }
.comp-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--gray-200); background: white; }
.comp-table tr:nth-child(even) td { background: var(--gray-50); }
.comp-table tr.hl-row td { background: var(--accent-pale) !important; font-weight: 600; }
.comp-table tr:last-child td { border-bottom: none; }
.win { color: var(--green); font-weight: 600; }

/* ── WHY-VAYK CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card { background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 28px; transition: box-shadow 0.2s, border-color 0.2s; }
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: var(--accent-border); }
.why-card h4 { color: var(--gray-900); margin-bottom: 8px; font-size: 17px; }
.why-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }
.why-icon { font-size: 28px; margin-bottom: 14px; }

/* ── GUEST FAVORITE BANNER ── */
.gf-banner { background: linear-gradient(135deg, #FF5A5F, #E0393D); color: white; border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.gf-banner .icon { font-size: 32px; flex-shrink: 0; }
.gf-banner h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; color: white; }
.gf-banner p { font-size: 13px; opacity: 0.9; line-height: 1.5; }

/* ── AREA PILLS ── */
.area-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill { background: var(--gray-50); border: 1px solid var(--gray-200); padding: 9px 18px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--gray-700); transition: all 0.2s; }
.area-pill:hover { background: var(--accent-pale); border-color: var(--accent-border); color: var(--accent-hover); }

/* ── PRICING BOX ── */
.pricing-box { background: white; border: 2px solid var(--accent); border-radius: 18px; padding: 44px; box-shadow: 0 8px 40px rgba(198,139,114,0.1); }
.pricing-fee { font-size: 52px; font-weight: 800; color: var(--gray-900); line-height: 1; margin: 12px 0 4px; }
.pricing-fee span { font-size: 20px; font-weight: 500; color: var(--gray-500); }
.pricing-note { color: var(--green); font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.tag-accent { background: var(--accent-pale); color: var(--accent-hover); }
.divider { height: 1px; background: var(--gray-200); margin: 24px 0; }

/* ── SIDE PANELS ── */
.panel { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; }
.panel-accent { background: var(--accent); color: white; border-radius: 16px; padding: 32px; }
.panel-accent h4 { color: white; margin-bottom: 8px; }
.panel-accent p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.65; }
.panel-warm { background: var(--accent-pale); border: 1px solid var(--accent-border); border-radius: 16px; padding: 32px; }
.dark-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 24px 0; }

/* ── CALC FORM ── */
.calc-form { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-600); margin-bottom: 7px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group select, .form-group input { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--gray-900); background: white; appearance: none; -webkit-appearance: none; transition: border-color 0.2s; }
.form-group select:focus, .form-group input:focus { outline: none; border-color: var(--accent); }
.form-success { text-align: center; padding: 40px 24px; }
.form-success-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 { font-size: 22px; margin-bottom: 12px; }
.form-success p { color: var(--gray-500); font-size: 15px; line-height: 1.7; max-width: 380px; margin: 0 auto; }

/* ── RESULTS PREVIEW ── */
.result-preview { background: var(--gray-900); border-radius: 14px; padding: 32px; }
.result-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 6px; }
.result-big { font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 24px; }
.result-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.result-col-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 4px; }
.result-col-val { font-size: 18px; font-weight: 700; color: white; }
.result-col-val.good { color: #4ADE80; }

/* ── CTA SECTION ── */
.cta-section { background: var(--accent); padding: 80px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SIDE CTA BOX ── */
.cta-side-box { background: var(--accent-pale); border: 1px solid var(--accent-border); border-radius: 16px; padding: 36px; text-align: center; }
.cta-side-box .icon { font-size: 44px; margin-bottom: 14px; }
.cta-side-box h3 { margin-bottom: 10px; font-size: 20px; }
.cta-side-box p { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
.cta-side-note { font-size: 12px; color: var(--gray-400); margin-top: 14px; }

/* ── BLOG CARDS ── */
.blog-card { background: white; border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--gray-100); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-card h3 { font-size: 17px; font-weight: 700; line-height: 1.35; color: var(--gray-900); margin-bottom: 10px; }
.blog-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray-400); align-items: center; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.blog-read:hover { color: var(--accent-hover); }

/* ── CAREERS ── */
.job-card { background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: box-shadow 0.2s, border-color 0.2s; }
.job-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: var(--accent-border); }
.job-dept { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.job-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.job-meta { font-size: 13px; color: var(--gray-400); }
.value-card { text-align: center; padding: 32px 24px; background: white; border: 1px solid var(--gray-200); border-radius: 14px; }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

/* ── FOOTER ── */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.5); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 36px; display: block; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-tagline { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col h5 { color: white; font-size: 12px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; }
.social-row a:hover { color: var(--accent); }

/* ════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════ */

@media (max-width: 1100px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .container { padding: 0 32px; }
  .hero-left { padding: 80px 40px; }
}

@media (max-width: 920px) {
  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 300px; height: 100vh;
    background: white;
    padding: 80px 24px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    z-index: 200;
    gap: 2px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links > li > a { display: block; padding: 12px 16px; border-radius: 8px; font-size: 15px; }
  .nav-links > li > a:hover { background: var(--gray-50); }
  .nav-cta { text-align: center; display: block !important; margin-top: 8px; border-radius: 8px; }
  .nav-book { text-align: center; display: block !important; }
  .nav-agent { display: block !important; }
  .has-dropdown > a::after { display: none; }
  .dropdown { display: block !important; position: static; box-shadow: none; border: none; border-left: 2px solid var(--gray-200); border-radius: 0; padding: 0 0 4px 8px; min-width: 0; margin: 0 16px; }
  .dropdown a { padding: 8px 12px !important; font-size: 14px !important; border-radius: 6px !important; }

  /* Layouts */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 32px; }
  .hero-right { height: 340px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .page-hero h1 { font-size: 34px; }
  .two-col, .two-col-60, .two-col-40 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .result-cols { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 16px; }
  .trust-dtcm { margin-left: 0; width: 100%; margin-top: 8px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .nav { padding: 0 20px; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .page-hero h1 { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .hero-left { padding: 40px 20px; }
  .hero-right { height: 260px; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 22px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 28px 20px; }
  .pricing-fee { font-size: 40px; }
  .cta-section { padding: 56px 0; }
  .result-cols { grid-template-columns: 1fr; }
  .announce-bar { font-size: 12px; padding: 8px 16px; }
  .trust-badge span { display: none; }
  .comp-table { display: block; overflow-x: auto; }
  .comp-table td, .comp-table th { padding: 10px 12px; font-size: 13px; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}
