/* ═══════════════════════════════════════════════════════
   DERRICK CRUISES — Pixel-perfect clone of cruises.co.ke
   ═══════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────── */
:root {
  /* Navbar / white transparent (Crew Network style) */
  --nav-bg: rgba(255, 255, 255, 0.08);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.95);

  /* Accent gold for active nav link */
  --gold: #d4a843;
  --gold-hover: #e6bc5a;

  /* Orange accent (dots, contact button) */
  --orange: #d4883e;
  --orange-hover: #e09a50;

  /* Teal footer */
  --teal: #0c0c1b;
  --teal-dark: #070711;

  /* TripAdvisor green */
  --ta-green: #00aa6c;

  /* Body / text */
  --bg-body: #0a0a16;
  --bg-light: #14142b;
  --text-dark: #ffffff;
  --text-body: rgba(255, 255, 255, 0.75);
  --text-light: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-logo: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Dimensions */
  --nav-height: 72px;
  --max-width: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.35s;

  /* Dark accent for non-navbar references */
  --dark-accent: #1a1a2e;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}

.navbar.scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Scrolled state: nav links turn dark for contrast against white bg */
.navbar.scrolled .nav-link {
  color: rgba(30, 30, 50, 0.7);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold);
}

.navbar.scrolled .logo-text-top {
  color: #1a1a2e;
}

.navbar.scrolled .nav-toggle span {
  background: #1a1a2e;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* Nav links (left and right of logo) */
.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur);
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.logo-c {
  font-family: var(--font-logo);
  font-size: 2.8rem;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #e74c3c, #e67e22, #f1c40f, #2ecc71, #3498db, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  letter-spacing: -1px;
}

.logo-rest {
  font-family: var(--font-logo);
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 6px;
  display: inline;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.35s var(--ease);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: #333344;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f0ff;
  color: #1a1a2e;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 22, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 32px 24px;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 6px;
  transition: all 0.2s;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 100px);
  padding-bottom: 120px;
  background: #0a0a16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 22, 0.85) 0%, rgba(10, 10, 22, 0.45) 50%, rgba(10, 10, 22, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-tag-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 750px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-hero-solid {
  display: inline-block;
  padding: 16px 40px;
  background: #ffffff;
  color: #1a1a2e;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
  border: 1px solid #ffffff;
}

.btn-hero-solid:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}

.btn-hero-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-images {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   CRUISE SHIPS GRID
   ═══════════════════════════════════════════════════════ */
.ships-section {
  padding: 80px 0 60px;
  background: var(--bg-body);
}

.ships-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ship-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.ship-card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.ship-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.ship-card-overlay h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   TRIPADVISOR REVIEWS
   ═══════════════════════════════════════════════════════ */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border-color);
}

.reviews-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.reviews-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.review-card {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}

.review-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.review-stars .star {
  color: var(--ta-green);
  font-size: 0.7rem;
}

.review-stars .verified {
  margin-left: 4px;
}

.review-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-accent);
  margin-bottom: 8px;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-accent);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-accent);
  background: #fafafa;
  transition: all 0.25s var(--ease);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0c0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dark-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(45, 27, 78, 0.08);
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 32px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
}

.btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 136, 62, 0.35);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(0, 170, 108, 0.1);
  border: 1px solid rgba(0, 170, 108, 0.25);
  color: var(--ta-green);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  animation: fadeSlideIn 0.4s var(--ease);
}

.form-success.show {
  display: flex;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--teal);
  color: #ffffff;
  position: relative;
  padding-top: 0;
}

.footer-wave {
  width: 100%;
  line-height: 0;
  margin-bottom: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-signup h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 28px;
  color: #ffffff;
}

.footer-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  color: var(--gold);
  transition: all var(--dur) var(--ease);
}

.footer-btn:hover {
  background: var(--gold);
  color: var(--dark-accent);
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col .bold-link {
  font-weight: 700;
  color: #ffffff;
}

.contact-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════
   CONTINUOUS CSS MOTION ANIMATIONS
   ═══════════════════════════════════════════════════════ */

/* Floating hero images */
.hero-img-top {
  animation: floatUp 6s ease-in-out infinite;
}

.hero-img-bottom {
  animation: floatUp 6s ease-in-out infinite 1.5s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gentle sway on ship cards */
.ship-card {
  animation: gentleSway 8s ease-in-out infinite;
}

.ship-card:nth-child(2) { animation-delay: 1s; }
.ship-card:nth-child(3) { animation-delay: 2s; }
.ship-card:nth-child(4) { animation-delay: 3s; }

@keyframes gentleSway {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Shimmer on card overlay */
.ship-card-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Pulsing orange dot */
.hero-dot,
.reviews-dot,
.booking-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

/* Navbar gradient removed — user requested white-transparent design.
   The navbar now relies on var(--nav-bg) and var(--nav-bg-scrolled). */

/* Review card subtle bob */
.review-card {
  animation: cardBob 7s ease-in-out infinite;
}

.review-card:nth-child(2) { animation-delay: 0.8s; }
.review-card:nth-child(3) { animation-delay: 1.6s; }
.review-card:nth-child(4) { animation-delay: 2.4s; }

@keyframes cardBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Social icon gentle wobble */
.social-icon {
  animation: socialPulse 4s ease-in-out infinite;
}

.social-icon:nth-child(2) { animation-delay: 0.5s; }
.social-icon:nth-child(3) { animation-delay: 1s; }
.social-icon:nth-child(4) { animation-delay: 1.5s; }
.social-icon:nth-child(5) { animation-delay: 2s; }

@keyframes socialPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Footer wave animation */
.footer-wave svg path {
  animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { d: path("M0,60 C360,100 720,0 1080,60 C1260,80 1380,70 1440,60 L1440,0 L0,0 Z"); }
  50% { d: path("M0,40 C360,0 720,100 1080,40 C1260,20 1380,50 1440,40 L1440,0 L0,0 Z"); }
}

/* Btn-contact pulsing glow */
.btn-contact {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(212, 136, 62, 0.2); }
  50% { box-shadow: 0 8px 30px rgba(212, 136, 62, 0.45); }
}

/* Logo color-shift */
.logo-c {
  animation: logoShift 6s ease-in-out infinite;
  background-size: 300% 300%;
}

@keyframes logoShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Contact form wrapper subtle glow */
.contact-form-wrapper {
  animation: formGlow 6s ease-in-out infinite;
}

@keyframes formGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); }
  50% { box-shadow: 0 12px 48px rgba(45, 27, 78, 0.1); }
}

/* Hero content entrance (plays once on load) */
.hero-content {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-images {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  z-index: 10000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
}

/* --- Base hidden state for all reveal elements --- */
[data-scroll] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Directional starting positions */
[data-scroll="fade-up"]    { transform: translateY(60px); }
[data-scroll="fade-down"]  { transform: translateY(-60px); }
[data-scroll="fade-left"]  { transform: translateX(-60px); }
[data-scroll="fade-right"] { transform: translateX(60px); }
[data-scroll="scale-in"]   { transform: scale(0.85); filter: blur(4px); }
[data-scroll="rotate-in"]  { transform: rotate(-5deg) translateY(40px); }
[data-scroll="zoom-fade"]  { transform: scale(0.92) translateY(30px); filter: blur(3px); }
[data-scroll="flip-up"]    { transform: perspective(800px) rotateX(15deg) translateY(40px); transform-origin: bottom center; }
[data-scroll="slide-reveal"]{ transform: translateY(40px); clip-path: inset(100% 0 0 0); }

/* --- Revealed state (applied by IntersectionObserver) --- */
[data-scroll].revealed {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

/* --- Staggered children delays --- */
[data-scroll-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-stagger].revealed > *:nth-child(1)  { transition-delay: 0.05s; }
[data-scroll-stagger].revealed > *:nth-child(2)  { transition-delay: 0.12s; }
[data-scroll-stagger].revealed > *:nth-child(3)  { transition-delay: 0.19s; }
[data-scroll-stagger].revealed > *:nth-child(4)  { transition-delay: 0.26s; }
[data-scroll-stagger].revealed > *:nth-child(5)  { transition-delay: 0.33s; }
[data-scroll-stagger].revealed > *:nth-child(6)  { transition-delay: 0.40s; }
[data-scroll-stagger].revealed > *:nth-child(7)  { transition-delay: 0.47s; }
[data-scroll-stagger].revealed > *:nth-child(8)  { transition-delay: 0.54s; }

[data-scroll-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Custom delay via data-scroll-delay --- */
[data-scroll-delay="100"] { transition-delay: 0.1s; }
[data-scroll-delay="200"] { transition-delay: 0.2s; }
[data-scroll-delay="300"] { transition-delay: 0.3s; }
[data-scroll-delay="400"] { transition-delay: 0.4s; }
[data-scroll-delay="500"] { transition-delay: 0.5s; }
[data-scroll-delay="600"] { transition-delay: 0.6s; }
[data-scroll-delay="800"] { transition-delay: 0.8s; }

/* --- Text reveal with clip-path wipe --- */
.text-reveal {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.revealed {
  clip-path: inset(0 0 0 0);
}

/* --- Parallax wrapper --- */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.parallax-wrap > img,
.parallax-wrap > .parallax-inner {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Scroll-triggered counter --- */
.scroll-counter {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  min-width: 60px;
  text-align: center;
}

/* --- Horizontal scroll section accent line --- */
.scroll-accent-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin: 0 auto 40px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.scroll-accent-line.revealed {
  width: 80px;
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  [data-scroll],
  [data-scroll-stagger] > *,
  .text-reveal,
  .scroll-accent-line,
  .parallax-wrap > img,
  .parallax-wrap > .parallax-inner {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
  }
  .scroll-progress {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ships-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    gap: 32px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 24px;
  }

  .nav-container {
    justify-content: center;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 48px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .ships-container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ship-card-img img {
    height: 220px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .ships-container {
    grid-template-columns: 1fr;
  }

  .ship-card-img img {
    height: 250px;
  }
}

/* ── Spinner utility ──────────────────────────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 22, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-text svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-link {
  color: var(--gold) !important;
  text-decoration: underline !important;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  font-family: var(--font-body);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--dark-accent);
}

.cookie-btn--accept:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   FORM VALIDATION ERRORS
   ═══════════════════════════════════════════════════════ */
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.error .form-error {
  display: block;
  animation: fadeSlideIn 0.3s var(--ease);
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
  background: #fef5f5;
}

.form-group.error input:focus,
.form-group.error textarea:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

  .cookie-text {
    flex-direction: column;
    align-items: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   BOOKINGS & DASHBOARD SECTION STYLES
   ═══════════════════════════════════════════════════════ */
.booking-section {
  padding: 100px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.booking-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.booking-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.booking-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

.booking-prompt-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  text-align: center;
  max-width: 600px;
  margin: 30px auto 0;
}

.booking-prompt-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark-accent);
  margin-bottom: 12px;
}

.booking-prompt-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 10px;
}

.booking-form-wrapper {
  background: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 30px auto 0;
}

/* Booking Estimate Box */
.booking-estimate-box {
  background: rgba(45, 27, 78, 0.04);
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px dashed var(--dark-accent);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 64px;
  width: 100%;
}

.estimate-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.estimate-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-accent);
}

.bold-link {
  font-weight: 700 !important;
  color: var(--gold) !important;
}

/* Table styles */
.bookings-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  color: #ffffff;
  min-width: 800px;
}

.bookings-table th,
.bookings-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.bookings-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--pending {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold);
}

.badge--confirmed {
  background: rgba(0, 170, 108, 0.2);
  color: var(--ta-green);
}

.badge--cancelled {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.btn-cancel-booking {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-cancel-booking:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #ffffff;
}

.ship-book-btn {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.ship-book-btn:hover {
  background: var(--orange-hover);
}

/* Success notifications */
#bookingSuccess {
  display: none;
  background: rgba(0, 170, 108, 0.1);
  color: var(--ta-green);
  border: 1.5px solid var(--ta-green);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

#bookingSuccess.show {
  display: flex;
  animation: fadeSlideIn 0.4s var(--ease);
}

/* Responsive booking */
@media (max-width: 768px) {
  .booking-form-wrapper {
    padding: 32px 20px;
  }
  .booking-estimate-box {
    align-items: center;
    height: auto;
    padding: 12px;
  }
}

/* ═══════════════════════════════════════════════════════
   LOGO DESIGN STYLES
   ═══════════════════════════════════════════════════════ */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  transition: transform 0.4s var(--ease);
}

.logo-wrapper:hover .logo-svg {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text-top {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.logo-text-bottom {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   BLOG SECTION & GRID STYLES
   ═══════════════════════════════════════════════════════ */
.blog-section {
  padding: 100px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.blog-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.blog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-dot {
  width: 8px;
  height: 8px;
  background: var(--ta-green);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.blog-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ta-green);
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-loader {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(45, 27, 78, 0.08);
  border-color: rgba(45, 27, 78, 0.15);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--dark-accent);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--dark-accent);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-read-btn {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dark-accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  cursor: pointer;
}

.blog-read-btn:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   BLOG ARTICLE MODAL STYLES
   ═══════════════════════════════════════════════════════ */
.blog-modal,
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-modal.open,
.payment-modal.open {
  display: flex;
}

.blog-modal-backdrop,
.payment-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 36, 0.75);
  backdrop-filter: blur(8px);
}

.blog-modal-content,
.payment-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalEnter 0.4s var(--ease);
}

.payment-modal-content {
  max-width: 500px;
  background: #181124;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px;
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.blog-modal-close,
.payment-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.payment-modal-close {
  color: rgba(255, 255, 255, 0.5);
}

.blog-modal-close:hover,
.payment-modal-close:hover {
  color: var(--gold);
}

.blog-modal-body {
  padding: 48px;
}

.blog-modal-img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.blog-modal-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--dark-accent);
  margin-bottom: 24px;
  line-height: 1.25;
}

.blog-modal-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

.blog-modal-text p {
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   PAYMENT / CHECKOUT MODAL STYLES
   ═══════════════════════════════════════════════════════ */
.payment-modal-header {
  margin-bottom: 24px;
}

.payment-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.payment-modal-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.payment-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.payment-tab {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.payment-tab:hover {
  color: #ffffff;
}

.payment-tab.active {
  background: var(--gold);
  color: var(--dark-accent);
}

.payment-tab-content {
  display: none;
}

.payment-tab-content.active {
  display: block;
}

/* Card Mock layout */
.interactive-card-wrapper {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.credit-card-mock {
  width: 100%;
  max-width: 320px;
  height: 180px;
  background: linear-gradient(135deg, #d4a843, #d4883e);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 24px;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #e8c070, #c89736);
  border-radius: 6px;
}

.card-brand-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-number-display {
  font-family: monospace;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: 16px 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.card-holder-display,
.card-expiry-display {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form Styles on Dark Modal */
#cardPaymentForm .form-group label {
  color: rgba(255, 255, 255, 0.8) !important;
}

#cardPaymentForm .form-group input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

#cardPaymentForm .form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

#cardPaymentForm .btn-submit {
  background: var(--gold);
  color: var(--dark-accent);
}

#cardPaymentForm .btn-submit:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

/* Google Pay button */
.gpay-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.gpay-button {
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 48px;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gpay-button:hover {
  background: #202020;
  transform: translateY(-2px);
}

.gpay-logo {
  font-family: 'Product Sans', sans-serif;
  letter-spacing: -0.5px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2.2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-body {
    padding: 32px 20px;
  }
  .blog-modal-title {
    font-size: 1.8rem;
  }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM CUSTOM ELEMENTS & LAYOUTS
   ═══════════════════════════════════════════════════════ */

/* ── Page Loader Overlay ── */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a2e; /* dark luxury bg */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  opacity: 1;
  visibility: visible;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.page-loader-inner {
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.page-loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  animation: loaderPulse 2s ease-in-out infinite;
}

.page-loader-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: #ffffff;
  font-weight: 600;
}

.page-loader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.page-loader-progress {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease-out;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.03); opacity: 1; }
}

/* ── Stats Counter Section ── */
.stats-section {
  padding: 100px 0;
  background: #151525; /* sleek dark luxury color */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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

.stat-card {
  padding: 20px;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* ── Privacy Policy Modal ── */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.privacy-modal.open {
  display: flex;
}

.privacy-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 36, 0.75);
  backdrop-filter: blur(8px);
}

.privacy-modal-content {
  position: relative;
  width: 90%;
  max-width: 650px;
  background: #181124;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transform: translateY(30px);
  transition: transform var(--dur) var(--ease);
  animation: modalEnter 0.4s var(--ease);
}

.privacy-modal.open .privacy-modal-content {
  transform: translateY(0);
}

.privacy-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  line-height: 1;
}

.privacy-modal-close:hover {
  color: var(--gold);
}

.privacy-modal h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── Rate Us Modal ── */
.rate-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rate-modal.open {
  display: flex;
}

.rate-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 36, 0.75);
  backdrop-filter: blur(8px);
}

.rate-modal-content {
  background: #181124;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalEnter 0.4s var(--ease);
  text-align: center;
}

.rate-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.rate-modal-close:hover {
  color: var(--gold);
}

.rate-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.rate-modal p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.rate-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rate-star {
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.rate-star:hover {
  transform: scale(1.2);
}

.rate-star.active,
.rate-star.hover {
  color: var(--gold);
}

#rateComment {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  resize: none;
  margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s;
}

#rateComment:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

#rateSuccess {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ta-green);
  margin-top: 15px;
  font-size: 0.95rem;
}

#rateSuccess.show {
  display: flex;
}

/* ── Side Panel Drawer ── */
.side-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% - 40px));
  z-index: 1500;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
}

.side-panel.open {
  transform: translateY(-50%) translateX(0);
}

.side-panel-tab {
  width: 40px;
  height: 50px;
  background: var(--gold);
  color: var(--dark-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.side-panel-tab:hover {
  background: var(--gold-hover);
}

.side-panel-tab svg {
  transition: transform 0.4s var(--ease);
}

.side-panel.open .side-panel-tab svg {
  transform: rotate(180deg);
}

.side-panel-drawer {
  background: #181124;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.3);
}

.side-panel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  white-space: nowrap;
}

.side-panel-btn:hover {
  background: var(--gold);
  color: var(--dark-accent);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.side-panel-btn svg {
  color: var(--gold);
  transition: color 0.3s;
}

.side-panel-btn:hover svg {
  color: var(--dark-accent);
}

/* ═══════════════════════════════════════════════════════
   CREW NETWORK-INSPIRED PREMIUM ANIMATIONS
   ═══════════════════════════════════════════════════════ */

/* --- Hero Title Solid White --- */
.hero-title {
  color: #ffffff;
}

@keyframes textShimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* --- Enhanced Hero Content Entrance (Crew Network style stagger) --- */
.hero-content {
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tag {
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-description {
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-actions {
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* --- Magnetic Hover on Ship Cards --- */
.ship-card {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}

.ship-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(212, 168, 67, 0.08);
}

.ship-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), transparent 60%);
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.ship-card:hover::after {
  opacity: 1;
}

/* --- Stats Card Glow Effect --- */
.stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s, width 0.5s;
}

.stat-card:hover::before {
  opacity: 1;
  width: 80%;
}

/* --- Luxury Horizontal Rule / Section Separator --- */
.ships-section,
.reviews-section,
.booking-section,
.blog-section,
.contact-section {
  position: relative;
}

.ships-section::before,
.reviews-section::before,
.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ships-section.revealed::before,
.reviews-section.revealed::before,
.blog-section.revealed::before {
  width: 200px;
}

/* --- Enhanced Footer Wave with Double Layer --- */
.footer-wave svg path {
  animation: waveFlow 12s ease-in-out infinite alternate;
}

@keyframes waveFlow {
  0% { d: path("M0,60 C360,100 720,0 1080,60 C1260,80 1380,70 1440,60 L1440,0 L0,0 Z"); }
  25% { d: path("M0,50 C320,10 640,90 960,40 C1200,10 1360,60 1440,50 L1440,0 L0,0 Z"); }
  50% { d: path("M0,40 C360,0 720,100 1080,40 C1260,20 1380,50 1440,40 L1440,0 L0,0 Z"); }
  75% { d: path("M0,55 C400,80 800,20 1120,55 C1280,70 1400,45 1440,55 L1440,0 L0,0 Z"); }
  100% { d: path("M0,60 C360,100 720,0 1080,60 C1260,80 1380,70 1440,60 L1440,0 L0,0 Z"); }
}

/* --- Smooth Cursor-Following Glow (Hero) --- */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

@keyframes heroGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-40%, -60%) scale(1.3); opacity: 0.8; }
  100% { transform: translate(-60%, -40%) scale(0.9); opacity: 0.4; }
}

/* --- Premium Scroll Progress Gradient --- */
.scroll-progress {
  background: linear-gradient(90deg, var(--gold), #e6bc5a, var(--orange), var(--gold));
  background-size: 300% 100%;
  animation: progressGradient 3s linear infinite;
}

@keyframes progressGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* --- Button Magnetic Ripple --- */
.btn-hero-solid,
.btn-hero-outline {
  overflow: hidden;
  position: relative;
}

.btn-hero-solid::before,
.btn-hero-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
}

.btn-hero-solid:hover::before,
.btn-hero-outline:hover::before {
  width: 300px;
  height: 300px;
}

/* --- Contact Form Glassmorphism --- */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* --- Enhanced Navbar Logo Animation --- */
.logo-svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover .logo-svg {
  animation: logoFloat 0.6s ease-in-out;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px) rotate(-3deg); }
}

/* --- Page Loader Enhanced Shimmer --- */
.page-loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), transparent);
  animation: barShimmer 1.5s ease-in-out infinite;
}

@keyframes barShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --- Blog Card Image Reveal Wipe --- */
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-accent), transparent);
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.5s var(--ease);
}

.blog-card:hover .blog-card-img::before {
  opacity: 0;
}

/* --- Review Card Glass Border Glow --- */
.review-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 168, 67, 0.2), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card {
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   ABOUT / WE'VE GOT YOU COVERED SECTION
   ═══════════════════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.about-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 40px;
}

.about-content {
  text-align: left;
  margin-bottom: 48px;
}

.about-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlight {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02));
  border-left: 4px solid var(--gold);
  padding: 32px 32px;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.about-highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-highlight p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════
   POWER SECTION
   ═══════════════════════════════════════════════════════ */
.power-section {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

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

.power-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.power-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 40px;
}

.power-tagline {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.power-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.power-badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all 0.3s var(--ease);
}

.power-badge:hover {
  background: var(--gold);
  color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.testimonials-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.testimonials-carousel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1.5px solid rgba(212, 168, 67, 0.3);
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  border-color: var(--gold);
}

.t-dot:hover {
  background: rgba(212, 168, 67, 0.5);
}

/* ═══════════════════════════════════════════════════════
   OFFICES / MEET YOUR TEAM
   ═══════════════════════════════════════════════════════ */
.offices-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.offices-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.offices-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.offices-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.offices-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.offices-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.offices-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.office-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.4s var(--ease);
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1);
}

.office-card-flag {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.office-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.office-country {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.office-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.office-hours,
.office-langs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.office-hours svg,
.office-langs svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.08);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.02));
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-text {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--bg-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
}

.cta-btn:hover {
  background: #e8be4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}

/* ═══════════════════════════════════════════════════════
   LEARN MORE SECTION
   ═══════════════════════════════════════════════════════ */
.learn-more-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.learn-more-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.learn-more-container h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.learn-more-container p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.learn-more-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
}

.learn-more-btn:hover {
  background: var(--gold);
  color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.3);
}

/* ═══════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════ */
.partners-section {
  padding: 60px 0;
  background: var(--bg-body);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.partners-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.partners-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 400;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.partner-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
}

.partner-logo-text:hover {
  color: #e8be4d;
  transform: scale(1.05);
}

.partner-divider {
  color: rgba(212, 168, 67, 0.3);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER WHATSAPP & EMAIL ICONS
   ═══════════════════════════════════════════════════════ */
.footer-contact-icons {
  display: flex;
  gap: 16px;
  padding: 8px 0;
}

.footer-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.footer-icon-link:hover {
  background: var(--gold);
  color: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
}

.footer-icon-link svg {
  fill: currentColor;
  stroke: currentColor;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE: NEW SECTIONS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-title,
  .power-title,
  .testimonials-title,
  .offices-title,
  .why-title {
    font-size: 1.8rem;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .power-badges {
    gap: 8px;
  }

  .power-badge {
    font-size: 0.65rem;
    padding: 8px 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 3rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .cta-container {
    padding: 32px 20px;
  }

  .partners-strip {
    gap: 12px;
  }

  .partner-logo-text {
    font-size: 0.9rem;
  }
}
