@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #c4a057;
  --gold-light: #e8c87a;
  --gold-pale: rgba(196,160,87,0.12);
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #1e3a52;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,160,87,0.15);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
  letter-spacing: 0.04em; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.2s; transform-origin: left;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  padding: 9px 22px; border-radius: 8px; border: 1px solid var(--gold);
  background: transparent; color: var(--gold-light); font-size: 0.85rem;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0a2033 100%);
  display: flex; align-items: center;
  padding: 72px 5vw 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196,160,87,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(56,132,159,0.06) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(196,160,87,0.3);
  background: rgba(196,160,87,0.08);
  color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.08em;
  margin-bottom: 28px; text-transform: uppercase;
}
.hero-badge::before { content: '✈'; font-size: 0.9rem; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); font-weight: 500;
  margin-bottom: 12px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6); margin-bottom: 40px;
  font-weight: 300; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(196,160,87,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,160,87,0.5); }
.btn-secondary {
  padding: 14px 32px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all 0.25s; backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(196,160,87,0.08); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--gold-light); font-weight: 600;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; letter-spacing: 0.04em; }

.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; display: flex; align-items: center; justify-content: center;
  padding: 72px 5vw 0;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,160,87,0.2);
  border-radius: 20px; padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  width: 100%; max-width: 360px;
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--gold-light); margin-bottom: 20px;
}
.hero-dest {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-dest:last-child { border-bottom: none; }
.hero-dest-icon { font-size: 1.5rem; width: 36px; text-align: center; }
.hero-dest-name { color: var(--white); font-size: 0.9rem; }
.hero-dest-tag {
  margin-left: auto; font-size: 0.72rem; padding: 3px 10px;
  border-radius: 12px; background: rgba(196,160,87,0.15);
  color: var(--gold-light); letter-spacing: 0.04em;
}

/* ── SECTIONS ── */
.section { padding: 96px 5vw; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); }

.section-label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 520px; line-height: 1.7; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(196,160,87,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.2rem; margin-bottom: 20px; }
.why-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ── DESTINATIONS ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dest-card {
  border-radius: 16px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex; align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; opacity: 0.15;
}
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 55%);
}
.dest-card-content { position: relative; z-index: 1; padding: 24px; width: 100%; }
.dest-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.dest-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.dest-card-tag {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  padding: 4px 12px; border-radius: 12px;
  background: rgba(196,160,87,0.2); border: 1px solid rgba(196,160,87,0.4);
  color: var(--gold-light); font-size: 0.72rem;
}

/* ── SPECIALS ── */
.specials-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.spec-tab {
  padding: 9px 22px; border-radius: 24px; border: 1px solid rgba(196,160,87,0.3);
  background: transparent; color: var(--text-light); font-size: 0.85rem;
  transition: all 0.2s;
}
.spec-tab.active, .spec-tab:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.specials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.special-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(196,160,87,0.15);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.special-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.special-card-header {
  padding: 24px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; gap: 14px;
}
.special-card-icon { font-size: 2rem; }
.special-card-header h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 2px; }
.special-card-header p { font-size: 0.75rem; color: var(--gold-light); }
.special-card-body { padding: 20px 24px; }
.special-card-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.special-card-save {
  display: inline-block; padding: 5px 14px; border-radius: 20px;
  background: rgba(196,160,87,0.1); color: var(--gold);
  font-size: 0.78rem; font-weight: 500; border: 1px solid rgba(196,160,87,0.25);
}
.special-card-cta {
  display: block; text-align: center; padding: 11px;
  border-top: 1px solid rgba(196,160,87,0.1);
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s;
}
.special-card-cta:hover { background: var(--gold-pale); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(196,160,87,0.3);
}
.blog-card-body { padding: 24px; }
.blog-tag {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); font-weight: 500; margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-read { font-size: 0.8rem; color: var(--gold); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.blog-read::after { content: '→'; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; color: rgba(196,160,87,0.2);
}
.about-img-wrap::after {
  content: ''; position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  border: 2px solid rgba(196,160,87,0.25);
  border-radius: 16px;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  border: 1px solid rgba(196,160,87,0.2);
}
.about-feature h4 { font-size: 0.95rem; margin-bottom: 2px; }
.about-feature p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid rgba(196,160,87,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-detail-text { font-size: 0.875rem; }
.contact-detail-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 2px; }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(196,160,87,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--cream);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; border-radius: 10px; border: none; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; transition: all 0.25s; box-shadow: 0 4px 16px rgba(196,160,87,0.35); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,160,87,0.45); }
.form-success { display: none; text-align: center; padding: 24px; color: #2d7a4f; background: #eaf7f0; border-radius: 10px; border: 1px solid #a8e0c0; font-weight: 500; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 64px 5vw 32px; color: rgba(255,255,255,0.6); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; }
.footer-col a { display: block; font-size: 0.875rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.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: 0.8rem; }
.footer-bottom a { color: var(--gold-light); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 140px 5vw 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,160,87,0.08) 0%, transparent 60%);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-top: 14px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── CHATBOT ── */
#vv-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #c4a057, #e8c87a);
  box-shadow: 0 6px 28px rgba(196,160,87,0.5), 0 2px 8px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
#vv-toggle:hover { transform: scale(1.08); }
#vv-toggle svg { transition: transform 0.3s, opacity 0.2s; }
#vv-toggle.open .icon-chat { opacity: 0; transform: scale(0.5) rotate(90deg); }
#vv-toggle.open .icon-close { opacity: 1; transform: scale(1) rotate(0deg); }
#vv-toggle .icon-close { position: absolute; opacity: 0; transform: scale(0.5) rotate(-90deg); }
#vv-toggle::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(196,160,87,0.4); animation: vvpulse 2.5s ease-out infinite;
}
@keyframes vvpulse { 0%{transform:scale(1);opacity:0.8} 70%,100%{transform:scale(1.35);opacity:0} }
#vv-chat {
  position: fixed; bottom: 104px; right: 28px; z-index: 9998;
  width: min(400px, calc(100vw - 40px)); height: min(580px, calc(100vh - 140px));
  border-radius: 20px; background: #0f1e2e;
  border: 1px solid rgba(196,160,87,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(12px); opacity: 0; pointer-events: none;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), opacity 0.25s ease;
  overflow: hidden;
}
#vv-chat.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.vv-header { padding: 18px 20px 16px; background: linear-gradient(135deg, #12263d, #1a3550); border-bottom: 1px solid rgba(196,160,87,0.15); display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vv-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #c4a057, #e8c87a); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.vv-header-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: #e8dcc8; margin: 0; }
.vv-header-info p { font-size: 0.72rem; color: rgba(232,220,200,0.5); margin: 2px 0 0; }
.vv-status { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: #7ec98f; }
.vv-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #7ec98f; animation: vvblink 2s ease-in-out infinite; }
@keyframes vvblink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.vv-messages { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 14px; scroll-behavior: smooth; }
.vv-messages::-webkit-scrollbar { width: 4px; }
.vv-messages::-webkit-scrollbar-thumb { background: rgba(196,160,87,0.2); border-radius: 2px; }
.vvmsg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; animation: vvmsgin 0.3s ease; }
@keyframes vvmsgin { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.vvmsg.bot { align-self: flex-start; } .vvmsg.user { align-self: flex-end; }
.vvmsg-bubble { padding: 11px 15px; border-radius: 16px; font-size: 0.875rem; line-height: 1.55; }
.vvmsg.bot .vvmsg-bubble { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); color: #d4c9b5; border-bottom-left-radius: 5px; }
.vvmsg.user .vvmsg-bubble { background: linear-gradient(135deg,#c4a057,#d4a84b); color: #0d1b2a; font-weight: 500; border-bottom-right-radius: 5px; }
.vvmsg-time { font-size: 0.65rem; color: rgba(232,220,200,0.3); padding: 0 4px; }
.vvmsg.user .vvmsg-time { text-align: right; }
.vv-typing { align-self: flex-start; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; border-bottom-left-radius: 5px; padding: 13px 18px; display: flex; gap: 5px; align-items: center; }
.vv-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(196,160,87,0.6); animation: vvbounce 1.2s ease-in-out infinite; }
.vv-dot:nth-child(2){animation-delay:.2s} .vv-dot:nth-child(3){animation-delay:.4s}
@keyframes vvbounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
.vv-qr { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 12px; flex-shrink: 0; }
.vv-qr-btn { padding: 7px 13px; border-radius: 20px; border: 1px solid rgba(196,160,87,0.3); background: transparent; color: #c4a057; font-size: 0.78rem; font-family: 'DM Sans',sans-serif; cursor: pointer; transition: background .2s,color .2s; white-space: nowrap; }
.vv-qr-btn:hover { background: rgba(196,160,87,0.1); color: #e8c87a; }
.vv-input-row { padding: 14px 16px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; align-items: flex-end; background: rgba(0,0,0,0.2); flex-shrink: 0; }
#vv-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #e8dcc8; font-family: 'DM Sans',sans-serif; font-size: 0.875rem; padding: 10px 14px; resize: none; outline: none; max-height: 100px; line-height: 1.4; min-height: 42px; transition: border-color .2s; }
#vv-input::placeholder { color: rgba(232,220,200,0.3); }
#vv-input:focus { border-color: rgba(196,160,87,0.4); }
#vv-send { width: 42px; height: 42px; border-radius: 12px; border: none; cursor: pointer; background: linear-gradient(135deg,#c4a057,#e8c87a); display: flex; align-items: center; justify-content: center; transition: transform .2s; flex-shrink: 0; }
#vv-send:disabled { opacity: 0.4; cursor: default; }
#vv-send:not(:disabled):hover { transform: scale(1.05); }
.vv-footer-bar { text-align: center; padding: 8px; font-size: 0.65rem; color: rgba(232,220,200,0.2); flex-shrink: 0; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: none; position: fixed; inset: 72px 0 0; background: var(--navy); padding: 32px 5vw; flex-direction: column; gap: 24px; z-index: 999; }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { color: rgba(255,255,255,0.8); font-size: 1.1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero { padding-top: 90px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* ── DARK / LIGHT MODE TOGGLE ── */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f0e8;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --card-bg: #ffffff;
  --border: rgba(0,0,0,0.08);
}
body.dark-mode {
  --bg: #0d1b2a;
  --bg-alt: #111f2e;
  --text: #e8dcc8;
  --text-light: #a09080;
  --card-bg: #162336;
  --border: rgba(196,160,87,0.12);
  background: var(--bg);
  color: var(--text);
}
body.dark-mode .section { background: var(--bg); }
body.dark-mode .section-alt { background: var(--bg-alt); }
body.dark-mode .why-card,
body.dark-mode .blog-card,
body.dark-mode .special-card,
body.dark-mode .contact-form { background: var(--card-bg); border-color: var(--border); color: var(--text); }
body.dark-mode .blog-card p,
body.dark-mode .why-card p,
body.dark-mode .about-content p,
body.dark-mode .contact-info p { color: var(--text-light); }
body.dark-mode .section-title { color: var(--text); }
body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select { background: #1a2e45; border-color: rgba(196,160,87,0.2); color: var(--text); }
body.dark-mode .contact-detail-text { color: var(--text); }
body.dark-mode .blog-card h3 { color: var(--text); }
body.dark-mode .footer { background: #060f18; }

/* Theme toggle button */
#theme-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--card-bg, #fff);
  border: 1.5px solid rgba(196,160,87,0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--text);
}
#theme-toggle:hover { transform: scale(1.1); border-color: var(--gold); }
body.dark-mode #theme-toggle { background: #162336; }

/* ── INSTAGRAM LINK ── */
.social-links { display: flex; gap: 14px; margin-top: 16px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(196,160,87,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-link:hover { background: rgba(196,160,87,0.15); border-color: var(--gold); color: var(--gold-light); }
