/* =====================================================
   Sunny Suitcase Travel by Stacy — Main Stylesheet
   style.css · Created: 2026-04-11
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Open+Sans:wght@400;700&display=swap');

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  --teal: #3DF0E8;
  --teal-hover: #1ECEC7;
  --orange: #FF6B35;
  --navy: #003366;
  --cream: #FFFFFF;
  --white: #FFFFFF;
  --body-text: #444444;
  --muted: #777777;
  --border-light: #E8E8E8;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-card: 0 4px 24px rgba(0,51,102,0.08);
  --shadow-card-hover: 0 12px 32px rgba(0,51,102,0.15);
  --shadow-orange: 0 4px 18px rgba(255,107,53,0.35);
  --shadow-orange-hover: 0 8px 28px rgba(255,107,53,0.45);
  --radius-btn: 50px;
  --radius-card: 12px;
  --transition: 0.25s ease;
  --container-max: 1200px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; color: var(--body-text); line-height: 1.7; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--navy); line-height: 1.25; }
h1 { font-size: 60px; font-weight: 800; }
h2 { font-size: 42px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-bg-cream { background: var(--cream); }
/* Cream dropped per confirmed brand guidelines v1.2.1 (2026-06-08) — sections rotate white/teal/navy only */
.section-bg-cream-warm { background: var(--white); }
.section-bg-navy { background: var(--navy); }
.section-bg-teal { background: var(--teal); }
.text-center { text-align: center; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-header.light h2,
.section-header.light p { color: rgba(255,255,255,0.9); }
.section-header.light p { color: rgba(255,255,255,0.75); }
/* Cream backgrounds — force navy heading so teal never bleeds onto light bg */
.section-bg-cream .section-header h2,
.section-bg-cream-warm .section-header h2 { color: var(--navy); }

/* =====================================================
   DEMO NOTICE
   ===================================================== */
.demo-notice {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
}
.demo-notice strong { color: var(--orange); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: #e85c25; transform: translateY(-2px); box-shadow: var(--shadow-orange-hover); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--teal); padding: 14px 34px; }
.btn-secondary:hover { background: var(--teal); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 14px 34px; }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-white-orange { background: var(--white); color: var(--orange); padding: 16px 40px; font-size: 17px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white-orange:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--orange); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.link-teal { color: var(--navy); font-weight: 600; transition: color var(--transition); }
.link-teal:hover { color: var(--orange); }

/* =====================================================
   UTILITY BAR
   ===================================================== */
.utility-bar { background: var(--navy); height: 38px; display: flex; align-items: center; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.utility-bar .contact-info { font-size: 13px; color: var(--white); }
.utility-bar .contact-info a { color: var(--white); transition: opacity var(--transition); }
.utility-bar .contact-info a:hover { opacity: 0.8; }
.utility-bar .social-icons { display: flex; gap: 14px; }
.utility-bar .social-icons a { color: var(--white); font-size: 15px; transition: opacity var(--transition); }
.utility-bar .social-icons a:hover { opacity: 0.8; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-nav { background: var(--teal); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--orange); transition: box-shadow var(--transition); }
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,51,102,0.22); }
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 170px; }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-icon { width: 156px; height: 156px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.nav-logo img { border-radius: 50%; object-fit: cover; flex-shrink: 0; width: 156px; height: 156px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); border: 3px solid rgba(255,255,255,0.55); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-logo-text .brand { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--white); letter-spacing: -0.2px; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.nav-logo-text .tagline { font-size: 14px; color: rgba(255,255,255,0.82); font-style: italic; }
.nav-contact { display: flex; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.nav-contact a { font-size: 12px; color: rgba(255,255,255,0.72); font-family: var(--font-body); transition: color var(--transition); white-space: nowrap; }
.nav-contact a:hover { color: var(--white); }

.nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-menu a { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.92); padding: 8px 12px; border-radius: 6px; transition: color var(--transition), background var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.18); }
.nav-menu a.nav-cta { background: var(--orange); color: var(--white) !important; border-radius: var(--radius-btn); padding: 10px 24px; box-shadow: var(--shadow-orange); font-family: var(--font-heading); font-weight: 700; margin-left: 8px; }
.nav-menu a.nav-cta:hover { background: #e85c25; transform: translateY(-1px); box-shadow: var(--shadow-orange-hover); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.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); }

/* =====================================================
   HERO — FULL (HOME)
   ===================================================== */
.hero-full {
  min-height: 100vh;
  background: linear-gradient(140deg, #001a3d 0%, #003366 40%, #004d80 70%, #006680 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-full::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(0,168,168,0.18), transparent);
  pointer-events: none;
}
.hero-full::after {
  content: '🌊';
  position: absolute;
  bottom: -20px; right: 5%;
  font-size: 300px;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}
.hero-content { position: relative; z-index: 2; padding-left: 8%; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,168,0.25);
  border: 1px solid rgba(0,168,168,0.5);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-full h1 { color: var(--white); font-size: 64px; line-height: 1.1; margin-bottom: 24px; }
.hero-full .hero-subtitle { color: rgba(255,255,255,0.88); font-size: 20px; line-height: 1.65; margin-bottom: 40px; max-width: 580px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-label { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-arrow { width: 22px; height: 22px; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg); animation: bounce 1.5s ease infinite; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* HERO — SHORT (inner pages) */
.hero-short {
  background: linear-gradient(140deg, #001a3d 0%, #003366 55%, #004d80 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-short::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--teal)); }
.hero-short h1 { color: var(--white); margin-bottom: 16px; font-size: 52px; }
.hero-short .hero-subtitle { color: rgba(255,255,255,0.85); font-size: 20px; max-width: 600px; margin: 0 auto; }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar { background: var(--cream); padding: 48px 0; border-bottom: 3px solid var(--teal); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.trust-item { text-align: center; }
.trust-item .icon { font-size: 36px; margin-bottom: 12px; }
.trust-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.trust-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* =====================================================
   ABOUT INTRO (HOME)
   ===================================================== */
.about-intro-grid { display: grid; grid-template-columns: 40% 60%; gap: 64px; align-items: center; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--teal), #004d7a);
  border-radius: var(--radius-card);
  border-left: 5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
}
.about-img-placeholder img,
.bio-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.about-text h2 { margin-bottom: 20px; }
.testimonial-pull { background: var(--cream); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.testimonial-pull p { font-size: 14px; font-style: italic; color: var(--body-text); margin-bottom: 6px; }
.testimonial-pull .attr { font-size: 13px; color: var(--muted); font-style: normal; font-weight: 600; }

/* =====================================================
   SERVICE CARDS (HOME PREVIEW)
   ===================================================== */
.services-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-card); padding: 32px 24px; border-top: 4px solid var(--teal); box-shadow: var(--shadow-card); transition: all var(--transition); }
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.service-card .card-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

/* =====================================================
   DESTINATION CARDS
   ===================================================== */
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.destination-card { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition); background: var(--white); }
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.dest-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.destination-card:hover .dest-img { filter: brightness(1.1); }
.dest-aruba .dest-img { background: linear-gradient(135deg, #0097a7, #00bcd4); }
.dest-cancun .dest-img { background: linear-gradient(135deg, #00897b, #26c6da); }
.dest-cruise .dest-img { background: linear-gradient(135deg, #1565c0, #0097a7); }
.dest-disney .dest-img { background: linear-gradient(135deg, #6a1b9a, #d81b60); }
.dest-bahamas .dest-img { background: linear-gradient(135deg, #00acc1, #00e5ff); }
.dest-turks .dest-img { background: linear-gradient(135deg, #006064, #00b0ff); }
.dest-jamaica .dest-img { background: linear-gradient(135deg, #2e7d32, #00838f); }
.dest-dr .dest-img { background: linear-gradient(135deg, #00695c, #0097a7); }
.dest-stlucia .dest-img { background: linear-gradient(135deg, #1565c0, #2e7d32); }
.dest-hawaii .dest-img { background: linear-gradient(135deg, #ad1457, #f57c00); }
.dest-universal .dest-img { background: linear-gradient(135deg, #4527a0, #1565c0); }
.dest-mexico-city .dest-img { background: linear-gradient(135deg, #b71c1c, #e65100); }

.dest-badge { position: absolute; top: 12px; left: 12px; background: var(--teal); color: var(--white); font-size: 11px; font-weight: 700; font-family: var(--font-heading); padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.dest-body { padding: 20px 24px 24px; }
.dest-body h3 { font-size: 20px; margin-bottom: 6px; color: var(--navy); }
.dest-tagline { font-size: 13px; color: var(--navy); font-weight: 600; font-family: var(--font-heading); margin-bottom: 8px; }
.dest-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* =====================================================
   HOW IT WORKS (STEPS)
   ===================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px; left: 14%; right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number { width: 56px; height: 56px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 17px; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,168,168,0.4); }
.step-number.orange { background: var(--orange); box-shadow: 0 4px 16px rgba(255,107,53,0.4); }
.step-item h4 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.step-item p { font-size: 14px; color: var(--muted); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: linear-gradient(135deg, var(--teal), var(--teal-hover)); padding: 80px 0; }
.testimonials-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-slide { display: none; text-align: center; padding: 0 40px; animation: fadeIn 0.4s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote-mark { font-size: 80px; line-height: 0.6; color: rgba(255,255,255,0.2); font-family: Georgia, serif; margin-bottom: 20px; display: block; }
.testimonial-slide blockquote { font-size: 20px; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 24px; }
.testimonial-stars { font-size: 20px; color: var(--orange); margin-bottom: 12px; }
.testimonial-attr { color: rgba(255,255,255,0.95); font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.testimonial-attr .location { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; color: var(--white); font-size: 18px; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition); border: none; }
.slider-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner { background: linear-gradient(135deg, #FF6B35, #e85c25); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: 44px; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 560px; margin: 0 auto 36px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,0.8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 80px; height: 80px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.footer-logo-text .brand { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--white); display: block; }
.footer-logo-text .tagline { font-size: 11px; color: rgba(255,255,255,0.6); display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--white); transition: all var(--transition); }
.footer-social a:hover { background: var(--teal); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.bio-grid { display: grid; grid-template-columns: 40% 60%; gap: 64px; align-items: start; }
.bio-img-stack { display: flex; flex-direction: column; gap: 16px; }
.bio-img-placeholder { width: 100%; border-radius: var(--radius-card); border-left: 5px solid var(--teal); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); overflow: hidden; }
.bio-img-placeholder.primary { aspect-ratio: 3/4; background: linear-gradient(145deg, var(--teal), #004d7a); font-size: 80px; }
.bio-img-placeholder.secondary { aspect-ratio: 16/9; background: linear-gradient(145deg, #004d7a, var(--navy)); font-size: 56px; }
.bio-text h2 { margin-bottom: 24px; font-size: 34px; line-height: 1.2; }
.bio-text p { font-size: 16px; color: var(--body-text); }
.why-me-list { margin-top: 32px; }
.why-me-list h3 { color: var(--navy); margin-bottom: 20px; font-size: 22px; }
.why-item { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
.why-item .why-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 16px; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); margin: 0; }
.fun-facts { background: var(--teal); padding: 56px 0; }
.fun-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.fun-fact-item .fact-icon { font-size: 28px; margin-bottom: 8px; }
.fun-fact-item .fact-number { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.fun-fact-item .fact-label { color: rgba(255,255,255,0.85); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.value-card .value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.service-block { padding: 72px 0; }
.service-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-block-grid.reverse .service-text { order: -1; }
.service-img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-card); box-shadow: var(--shadow-card-hover); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.svc-beach { background: linear-gradient(145deg, #0097a7, #00bcd4); }
.svc-family { background: linear-gradient(145deg, #1565c0, #0288d1); }
.svc-caribbean { background: linear-gradient(145deg, #00695c, #26a69a); }
.svc-cruise { background: linear-gradient(145deg, #1565c0, #0097a7); }
.svc-honeymoon { background: linear-gradient(145deg, #ad1457, #f06292); }
.svc-group { background: linear-gradient(145deg, #6a1b9a, #ab47bc); }
.service-text { border-left: 4px solid var(--teal); padding-left: 28px; }
.service-text h2 { font-size: 34px; margin-bottom: 20px; line-height: 1.2; }
.service-text p { font-size: 16px; color: var(--body-text); }
.service-destinations { margin: 20px 0 28px; padding: 14px 18px; background: var(--cream); border-radius: 8px; font-size: 14px; color: var(--body-text); }
.service-destinations strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.process-step { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.process-step-num { width: 52px; height: 52px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 18px; margin: 0 auto 16px; }
.process-step-num.orange { background: var(--orange); }
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--muted); margin: 0; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; transition: all var(--transition); background: var(--white); }
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--cream); border-left: 4px solid var(--orange); }
.faq-question h4 { font-size: 17px; color: var(--navy); font-weight: 600; margin: 0; padding-right: 16px; }
.faq-icon { width: 28px; height: 28px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; flex-shrink: 0; transition: all var(--transition); }
.faq-question.open .faq-icon { background: var(--orange); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 4px 24px 24px; font-size: 15px; color: var(--body-text); line-height: 1.7; }

/* =====================================================
   DESTINATIONS PAGE
   ===================================================== */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-tab { padding: 8px 22px; border-radius: 50px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; cursor: pointer; border: 2px solid var(--teal); color: var(--navy); background: transparent; transition: all var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.destination-item { transition: all var(--transition); }
.destination-item.hidden { display: none; }
.custom-strip { background: var(--teal); padding: 56px 0; text-align: center; }
.custom-strip h2 { color: var(--white); margin-bottom: 16px; }
.custom-strip p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 520px; margin: 0 auto 28px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 60% 40%; gap: 56px; align-items: start; }
.form-wrap { background: var(--white); border-radius: var(--radius-card); padding: 40px; box-shadow: var(--shadow-card); }
.form-wrap h3 { color: var(--navy); margin-bottom: 28px; font-size: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border-light); border-radius: 8px; font-family: var(--font-body); font-size: 15px; color: var(--body-text); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; }
.form-consent input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); width: 16px; height: 16px; }
.form-consent label { font-size: 13px; color: var(--muted); font-style: normal; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 400; }
.demo-form-notice { background: rgba(0,168,168,0.08); border: 1px solid rgba(0,168,168,0.2); border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: var(--navy); text-align: center; }
.contact-info-col { padding-top: 8px; }
.contact-info-col h3 { color: var(--navy); margin-bottom: 24px; font-size: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-detail .icon { font-size: 22px; flex-shrink: 0; }
.contact-detail h4 { font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--muted); margin: 0; }
.hours-table { width: 100%; margin-top: 24px; border-collapse: collapse; }
.hours-table td { padding: 6px 0; font-size: 14px; color: var(--body-text); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); padding-right: 16px; width: 55%; }
.contact-quote { margin-top: 28px; background: var(--cream); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 8px 8px 0; font-size: 14px; font-style: italic; color: var(--body-text); }
.contact-quote .attr { font-style: normal; font-weight: 600; color: var(--navy); font-size: 13px; margin-top: 8px; display: block; }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.reassurance-item { text-align: center; padding: 24px; }
.reassurance-item .icon { font-size: 36px; margin-bottom: 12px; }
.reassurance-item h4 { font-size: 16px; margin-bottom: 8px; }
.reassurance-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* =====================================================
   THANK YOU PAGE
   ===================================================== */
.thank-you-section { min-height: 70vh; display: flex; align-items: center; background: var(--cream); padding: 80px 0; }
.thank-you-card { max-width: 640px; margin: 0 auto; text-align: center; background: var(--white); border-radius: 20px; padding: 64px 48px; box-shadow: 0 8px 48px rgba(0,51,102,0.12); border-top: 5px solid var(--teal); }
.thank-you-icon { font-size: 72px; margin-bottom: 24px; }
.thank-you-card h2 { margin-bottom: 20px; }
.thank-you-card p { font-size: 17px; color: var(--body-text); }
.thank-you-sig { font-style: italic; color: var(--muted); margin-top: 24px !important; font-size: 16px !important; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
