/* ============================================================
   VACATION PLANNING COMPANY — Main Stylesheet
   Colors from logo: Navy #1A2C6B, Red #C8102E, Gold #9A7B2F
   ============================================================ */

:root {
  --navy:   #1A2C6B;
  --navy-dark: #0F1A42;
  --red:    #C8102E;
  --red-dark: #9E0B22;
  --gold:   #9A7B2F;
  --gold-light: #C5A84D;
  --white:  #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f2f0ec;
  --mid-gray: #888;
  --dark-text: #1a1a1a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(26,44,107,0.10);
  --shadow-lg: 0 8px 40px rgba(26,44,107,0.16);
  --radius: 10px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.bg-light { background: var(--off-white); }
.bg-dark  { background: var(--navy-dark); color: var(--white); }

em { font-style: italic; color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-sub {
  max-width: 660px;
  color: #555;
  margin: 16px 0 48px;
  font-size: 1.08rem;
  line-height: 1.7;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--navy);
}
h2.light { color: var(--white); }
h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.top-bar a { color: var(--gold-light); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.yelp-badge { margin-left: auto; color: var(--gold-light); font-weight: 600; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(26,44,107,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { height: 60px; width: auto; }
.logo-link { display: block; }

.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.dropdown { display: none; flex-direction: column; }
.dropdown li { display: block; width: 100%; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  display: block;
}
.main-nav ul li a:hover { background: var(--light-gray); color: var(--red); }
.nav-partner {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav-partner:hover { background: var(--navy-dark) !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(26,44,107,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
}
.dropdown li a {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 0 !important;
}
.has-dropdown:hover .dropdown { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,60,0.82) 0%, rgba(200,16,46,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 24px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--gold-light); font-family: var(--font-serif); }
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* ── SERVICES GRID ── */
.services { text-align: center; }
.services h2 { margin-bottom: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(26,44,107,0.10);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: #555; font-size: 0.95rem; line-height: 1.65; flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }

/* ── WHY VPC ── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-text h2 { margin-bottom: 20px; }
.why-text p { color: #444; line-height: 1.75; margin-bottom: 16px; }
.why-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: #333; }
.check { color: var(--red); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.why-image img { border-radius: 16px; box-shadow: var(--shadow-lg); object-fit: cover; width: 100%; height: 480px; }

/* ── DESTINATIONS PREVIEW ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  display: block;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.03); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,20,60,0.80));
  color: var(--white);
  padding: 24px 18px 16px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.dest-card--more {
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(26,44,107,0.2);
}
.dest-more-inner { text-align: center; color: var(--navy); font-weight: 600; }
.dest-more-icon { font-size: 2rem; display: block; margin-bottom: 8px; }

/* ── REVIEWS SECTION ── */
.reviews-section { background: var(--navy-dark); }
.reviews-section h2 em { color: var(--gold-light); }
.reviews-section .section-sub { color: rgba(255,255,255,0.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,0.85); font-size: 0.93rem; line-height: 1.7; flex: 1; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.review-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.review-loc { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.reviews-cta { text-align: center; margin-top: 48px; }

/* ── LOCATIONS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.location-card {
  background: var(--white);
  border: 1px solid rgba(26,44,107,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.location-card--hq { border-color: var(--navy); border-width: 2px; }
.location-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.location-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.location-card p { color: #555; font-size: 0.85rem; margin-bottom: 12px; }
.location-phone {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.location-phone:hover { color: var(--red-dark); }
.location-partner {
  display: block;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 8px;
}
.location-card--coming { opacity: 0.65; }
.coming-soon { color: var(--mid-gray); font-style: italic; font-size: 0.85rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--red-dark) 100%);
  padding: 64px 0;
  color: var(--white);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 52px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.footer-creds span {
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.footer-contact a { color: var(--gold-light); }
.footer-social { margin-top: 20px; display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }
.footer-social svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 72px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section p { color: #444; line-height: 1.75; margin-bottom: 18px; font-size: 0.98rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-text p { color: #555; font-size: 0.9rem; margin: 0; }

/* ── CONTACT FORM ── */
.contact-form-section { background: var(--off-white); padding: 72px 0; }
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(26,44,107,0.2);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-full { grid-column: 1 / -1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .top-bar-inner { justify-content: center; gap: 12px; font-size: 0.75rem; }
  .yelp-badge { margin-left: 0; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid rgba(26,44,107,0.1);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { padding: 12px 24px; border-radius: 0; }
  .dropdown { position: static; display: block; box-shadow: none; border: none; padding-left: 16px; }
  .has-dropdown:hover .dropdown { display: block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
