/* ============================================
   In Motion Getaways — Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #0D1B2E;
  --primary-light: #152740;
  --accent: #3AAEDC;
  --accent-hover: #2d9ac5;
  --highlight: #F5A52A;
  --highlight-hover: #e0941f;
  --bg-light: #F7F9FC;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #5A6677;
  --text-white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 10px;
  --nav-height: 75px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 0.6rem; }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--primary);
  transition: background var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--highlight);
}

.nav-phone {
  color: var(--highlight) !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--highlight);
}

.nav-email {
  color: var(--highlight) !important;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-email svg {
  width: 16px;
  height: 16px;
  fill: var(--highlight);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-white);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Mobile Nav --- */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-phone {
    margin-top: 10px;
    font-size: 1rem !important;
  }

  .nav-email {
    margin-top: 10px;
    font-size: 0.9rem !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo span {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,0.85) 0%, rgba(13,27,46,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-phone {
  display: inline-block;
  color: var(--highlight);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.hero-phone:hover {
  color: #fff;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(135deg, rgba(13,27,46,0.88) 0%, rgba(13,27,46,0.65) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.page-hero h1 {
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--highlight);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.5);
  margin: 0 8px;
}

.breadcrumb span:last-child {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
  .hero { min-height: 70vh; }
  .page-hero { min-height: 45vh; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--highlight);
  color: var(--primary);
  border-color: var(--highlight);
}

.btn-primary:hover {
  background: var(--highlight-hover);
  border-color: var(--highlight-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,165,42,0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,174,220,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 80px 0;
}

.section-dark {
  background: var(--primary);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-white);
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.75);
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-dark .section-label {
  color: var(--highlight);
}

@media (max-width: 767px) {
  section { padding: 50px 0; }
  .section-header { margin-bottom: 35px; }
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trust-badge {
  text-align: center;
  padding: 25px 15px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.trust-badge h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
}

@media (max-width: 767px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-badge { padding: 20px 10px; }
}

/* ============================================
   CARDS — Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: color var(--transition), gap var(--transition);
}

.service-card:hover .card-link {
  color: var(--highlight);
}

@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Large Service Cards (services.html) */
.services-grid-lg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card-lg {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.service-card-lg .service-card-img {
  height: 250px;
}

.service-card-lg .service-card-body {
  padding: 30px;
}

@media (max-width: 767px) {
  .services-grid-lg { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.section-dark .step-number {
  background: var(--highlight);
  color: var(--primary);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-dark .step p {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 767px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  cursor: default;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.destination-card-overlay h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 1023px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card { height: 180px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--highlight);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ============================================
   SERVICE DETAIL (individual service pages)
   ============================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-image-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.service-detail-content h2 {
  margin-top: 2rem;
}

.service-detail-content h2:first-of-type {
  margin-top: 0;
}

/* Destinations List Grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.dest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dest-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dest-item .dest-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.dest-item .dest-duration {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Region Grid (Condo page) */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.region-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.region-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.region-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.region-card li {
  background: var(--bg-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* City Grid (Fly-Away page) */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.city-item {
  padding: 14px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-left: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.city-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Callout Box */
.callout-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 30px;
  color: var(--text-white);
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid var(--highlight);
}

.callout-box-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.callout-box h3 {
  color: var(--highlight);
  margin-bottom: 6px;
}

.callout-box p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 575px) {
  .callout-box { flex-direction: column; text-align: center; }
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
}

.benefit-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 575px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Terms & Conditions Accordion */
.terms-section {
  margin: 40px 0;
}

.terms-section h2 {
  margin-bottom: 20px;
}

.terms-list {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--highlight);
}

.terms-list ul {
  list-style: none;
}

.terms-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--highlight);
  margin-top: 10px;
  flex-shrink: 0;
}

/* Internal links section */
.internal-links {
  margin: 40px 0;
  padding: 30px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
}

.internal-links h3 {
  margin-bottom: 16px;
}

.internal-links-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.internal-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.internal-links-list a:hover {
  background: var(--accent);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mission-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--text-white);
  text-align: center;
  margin: 50px 0;
}

.mission-box h2 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.mission-box p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.disclosures {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--highlight);
  margin: 30px 0;
}

.disclosures h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.disclosures li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.disclosures li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--highlight);
  margin-top: 10px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-content img { height: 300px; }
}

/* ============================================
   SERVICE AREA PAGE
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.area-item {
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-align: center;
  border-bottom: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.area-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,174,220,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.contact-info-card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-item a {
  font-weight: 600;
  word-break: break-all;
}

.contact-info-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.email-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  word-break: break-all;
}

.email-large:hover {
  background: var(--accent-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,174,220,0.4);
}

.disclosure-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--highlight);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--accent);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}

.social-links a:hover svg {
  fill: var(--text-white);
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form { padding: 24px; }
  .email-large { font-size: 0.85rem; padding: 12px 18px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--highlight);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--highlight);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact a {
  color: var(--accent);
}

.footer-contact a:hover {
  color: var(--highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
}

.footer-bottom a:hover {
  color: var(--highlight);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.15s; }
.animate-delay-2 { transition-delay: 0.3s; }
.animate-delay-3 { transition-delay: 0.45s; }
.animate-delay-4 { transition-delay: 0.6s; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-section h1 {
  color: var(--accent);
}

.thank-you-section p {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

/* ============================================
   AI SUMMARY (visually hidden for schema)
   ============================================ */
.ai-summary {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 40px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-left: 4px solid var(--accent);
}

/* ============================================
   CRUISE PORTS GRID
   ============================================ */
.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.port-item {
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-left: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.port-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Cruise destination cards */
.cruise-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.cruise-dest-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.cruise-dest-card h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.cruise-dest-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Cruise lengths */
.cruise-lengths {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.cruise-length-badge {
  background: var(--primary);
  color: var(--text-white);
  padding: 16px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--accent);
}
