/* ============================================
   Cruising With Grandkids - Multigenerational Cruise Site
   Warm, inviting, family-legacy vibe
   ============================================ */

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

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

:root {
  --navy: #1a3c5e;
  --ocean: #2980b9;
  --sky: #5dade2;
  --sunset: #e67e22;
  --coral: #e74c3c;
  --sand: #fdebd0;
  --light-bg: #fdf2e9;
  --dark: #1a1a2e;
  --text: #2d3436;
  --white: #ffffff;
  --cta: #d4a017;
  --cta-hover: #b8860b;
  --gold: #d4a017;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

a { color: var(--ocean); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: none;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 50px; }
.nav-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: 14px; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--ocean); }
.nav-cta {
  background: linear-gradient(135deg, var(--cta) 0%, #e6a817 100%);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
  transition: all 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }
.mobile-menu { display: none; font-size: 28px; cursor: pointer; color: var(--navy); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, rgba(12,45,72,0.8) 0%, rgba(46,134,193,0.6) 50%, rgba(240,147,43,0.4) 100%),
              url('hero-bg.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 100px 20px 120px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 2px 3px 12px rgba(0,0,0,0.4);
}
.hero p {
  font-size: 21px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--cta) 0%, #e6a817 100%);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 25px rgba(212,160,23,0.4);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212,160,23,0.5);
  color: var(--white);
}
.btn-cta-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-left: 15px;
  transition: all 0.3s;
}
.btn-cta-outline:hover { background: var(--white); color: var(--navy); }

/* ---- WAVE SEPARATORS ---- */
.wave-top, .wave-bottom { position: relative; }
.wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f0f7fc' d='M0,30 C480,60 960,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* ---- SECTIONS ---- */
section { padding: 80px 0; position: relative; }
.bg-light { background: var(--light-bg); }
.bg-navy { background: var(--navy); color: var(--white); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.bg-navy .section-title { color: var(--white); }

.section-subtitle {
  text-align: center;
  color: #636e72;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.bg-navy .section-subtitle { color: rgba(255,255,255,0.8); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item span { font-size: 20px; }

/* ---- BENEFIT CARDS ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.4s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--sky), var(--sunset));
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.benefit-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-bg), #d6eaf8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 32px;
}
.benefit-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}
.benefit-card p { font-size: 15px; color: #636e72; }

/* ---- STEPS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(46,134,193,0.3);
}
.step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}
.step p { font-size: 15px; color: #636e72; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 50%, var(--sunset) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  margin-bottom: 15px;
}
.cta-banner p { font-size: 19px; margin-bottom: 28px; opacity: 0.95; }

/* ---- CRUISE LINE CARDS ---- */
.cruise-lines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}
.cruise-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cruise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--sunset));
  opacity: 0;
  transition: opacity 0.3s;
}
.cruise-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.cruise-card:hover::after { opacity: 1; }
.cruise-card .best-for {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cruise-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 10px;
}
.cruise-card p { font-size: 15px; color: #636e72; line-height: 1.7; }

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.pricing-table th {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-table td { padding: 15px 20px; border-bottom: 1px solid #eef3f8; font-size: 15px; }
.pricing-table tr:nth-child(even) { background: var(--light-bg); }
.pricing-table tr:hover { background: #d4effc; }
.pricing-table td:first-child { font-weight: 600; color: var(--navy); }

.price-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.price-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 4px solid;
}
.price-info-card:nth-child(1) { border-color: var(--cta); }
.price-info-card:nth-child(2) { border-color: var(--sunset); }
.price-info-card:nth-child(3) { border-color: var(--ocean); }
.price-info-card strong { color: var(--navy); font-size: 16px; }
.price-info-card p { font-size: 14px; margin-top: 8px; color: #636e72; }

/* ---- CHECKLIST ---- */
.checklist { max-width: 800px; margin: 0 auto; }
.checklist-phase {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--ocean);
  transition: all 0.3s;
}
.checklist-phase:hover { border-left-color: var(--sunset); transform: translateX(5px); }
.checklist-phase h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist-phase h3::before { font-size: 22px; }
.checklist-phase ul { list-style: none; }
.checklist-phase li { padding: 6px 0 6px 30px; position: relative; font-size: 15px; }
.checklist-phase li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
  font-size: 16px;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.faq-question {
  padding: 20px 55px 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  font-size: 17px;
  font-family: 'Playfair Display', Georgia, serif;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--ocean);
  font-family: 'Open Sans', sans-serif;
  transition: transform 0.3s;
  width: 30px;
  height: 30px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.active .faq-question::after { content: "\2212"; background: var(--ocean); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---- LEAD FORM ---- */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 60%, var(--sky) 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C480,60 960,0 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top;
  background-size: cover;
}
.form-section .section-title { color: var(--white); }
.form-section .section-subtitle { color: rgba(255,255,255,0.85); }

.lead-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 4px; }
.form-row .form-group { margin-bottom: 0; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #e0e8ef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
  font-family: inherit;
  background: #fafbfc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,134,193,0.1);
}
.age-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-label {
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e8ef;
  cursor: pointer;
  transition: all 0.2s;
}
.checkbox-label:hover { background: #eef3f8; border-color: var(--ocean); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--ocean); }

.form-submit {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--cta) 0%, #e6a817 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 25px rgba(212,160,23,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(212,160,23,0.4); }
.form-note { text-align: center; font-size: 13px; color: #999; margin-top: 14px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  margin-bottom: 18px;
}
.footer p { font-size: 14px; line-height: 1.9; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.3s; }
.footer a:hover { color: var(--sunset); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
}
.footer-legal { font-size: 12px; margin-top: 6px; color: rgba(255,255,255,0.4); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p, .hero .btn-cta, .hero-badge {
  animation: fadeInUp 0.8s ease forwards;
}
.hero p { animation-delay: 0.2s; }
.hero .btn-cta { animation-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
  .hero { min-height: 450px; padding: 70px 20px 100px; }
  .section-title { font-size: 30px; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 12px;
  }
  .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 30px;
    font-size: 17px;
  }
  .btn-cta-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 14px;
    padding: 14px 30px;
  }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .trust-bar .container { gap: 12px; font-size: 12px; }
  .trust-item span { font-size: 16px; }
  .section-subtitle { font-size: 16px; margin-bottom: 30px; }
  .benefit-card { padding: 25px 20px; }
  .steps { grid-template-columns: 1fr; gap: 15px; }
  .step { padding: 20px 15px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p { font-size: 16px; }
  .pricing-table { font-size: 13px; }
  .pricing-table th { padding: 10px 8px; font-size: 11px; }
  .pricing-table td { padding: 10px 8px; font-size: 13px; }
  .checklist-phase { padding: 20px; }
  .age-checkboxes { grid-template-columns: 1fr; gap: 8px; }
  .checkbox-label { font-size: 14px; padding: 10px 12px; }
  .lead-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cruise-lines { grid-template-columns: 1fr; }
  .price-info-grid { grid-template-columns: 1fr; }
}
