/* ==========================================================================
   M/Y NOAH LUXURY DIVING EXPEDITIONS - DESIGN SYSTEM
   Palette: Ocean Navy & White with Gold & Cyan luxury accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Ocean Navy & Sea Blue Palette */
  --navy-deep: #051329;
  --navy-dark: #0A1E3F;
  --navy-card: #0E2A52;
  --navy-light: #163E75;
  
  --ocean-blue: #0077B6;
  --ocean-bright: #0096C7;
  --cyan-vivid: #00B4D8;
  --cyan-soft: #90E0EF;
  --cyan-subtle: #CAF0F8;
  
  /* Pure Whites & Light Neutrals */
  --white: #FFFFFF;
  --white-soft: #F8FAFC;
  --white-dim: #E2E8F0;
  --white-glass: rgba(255, 255, 255, 0.08);
  --white-glass-hover: rgba(255, 255, 255, 0.14);
  --border-glass: rgba(255, 255, 255, 0.15);
  --border-light: rgba(14, 42, 82, 0.1);
  
  /* Luxury Gold Accents */
  --gold-primary: #D4AF37;
  --gold-bright: #F3E5AB;
  --gold-dark: #997B1E;
  
  /* Text & Surfaces */
  --text-primary: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  /* Accents */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  
  /* Fonts */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(5, 19, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(5, 19, 41, 0.1);
  --shadow-lg: 0 16px 40px rgba(5, 19, 41, 0.16);
  --shadow-luxury: 0 20px 50px rgba(0, 119, 182, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP BAR (PHONE, EMAIL, SOCIALS, CURRENCY)
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 10000;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light-muted);
}

.top-bar-contact a:hover {
  color: var(--cyan-vivid);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--text-light-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-links a:hover {
  color: var(--cyan-vivid);
  transform: translateY(-1px);
}

.currency-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.lang-selector-dropdown {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--cyan-vivid);
  color: var(--cyan-soft);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #06152B;
  border: 1px solid rgba(0, 180, 216, 0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  min-width: 170px;
  padding: 0.5rem 0;
  z-index: 10005;
  display: none;
}

.lang-dropdown-menu.active {
  display: block;
}

.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lang-dropdown-menu a:hover {
  background: var(--navy-light);
  color: var(--cyan-soft);
}

.lang-dropdown-menu a.active {
  color: var(--cyan-vivid);
  font-weight: 700;
}

/* ==========================================================================
   MAIN NAVIGATION HEADER (LUXURY NAVBAR)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5, 19, 41, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 900;
  transition: all var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

/* LOGO NOAH */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-2px);
}

.brand-logo-card {
  background: #FFFFFF;
  padding: 5px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.35);
  transition: all var(--transition-fast);
}

.brand-logo:hover .brand-logo-card {
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45), 0 0 0 1.5px var(--gold-bright);
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

/* Footer Logo Card */
.footer-logo-card {
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.3);
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.footer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--cyan-vivid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--white);
  line-height: 1.1;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-vivid);
  font-weight: 600;
}

/* NAV LINKS */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--cyan-vivid);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-vivid), var(--ocean-blue));
  transition: width var(--transition-smooth);
}

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

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--navy-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-smooth);
  z-index: 110;
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--white-dim);
}

.dropdown-link i {
  color: var(--cyan-vivid);
  width: 18px;
  text-align: center;
}

.dropdown-link:hover {
  background: var(--navy-light);
  color: var(--white);
  padding-left: 1.5rem;
}

.dropdown-badge {
  margin-left: auto;
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(0, 180, 216, 0.2);
  color: var(--cyan-vivid);
  border: 1px solid rgba(0, 180, 216, 0.4);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--cyan-vivid);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-luxury-outline:hover {
  background: rgba(0, 180, 216, 0.15);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
  color: var(--cyan-soft);
}

.btn-luxury-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-primary), #B89727);
  color: #051329;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: all var(--transition-fast);
}

.btn-luxury-gold:hover {
  background: linear-gradient(135deg, #E5C158, var(--gold-primary));
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO BANNER & VIDEO BACKGROUND
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) contrast(1.05);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 19, 41, 0.6) 0%, rgba(5, 19, 41, 0.3) 40%, rgba(5, 19, 41, 0.85) 90%, var(--navy-deep) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(0, 180, 216, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--cyan-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF, var(--cyan-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   QUICK SEARCH ENGINE BAR
   ========================================================================== */
.search-banner-container {
  position: relative;
  z-index: 20;
  margin-top: -3.5rem;
  margin-bottom: 3.5rem;
}

.search-box-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(5, 19, 41, 0.12);
  border: 1px solid rgba(0, 119, 182, 0.15);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.search-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--ocean-blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.search-select, .search-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-dim);
  background: var(--white-soft);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-select:focus, .search-input:focus {
  border-color: var(--ocean-blue);
  background: var(--white);
}

.btn-search {
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-bright));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
  transition: all var(--transition-fast);
  height: 48px;
}

.btn-search:hover {
  background: linear-gradient(135deg, var(--ocean-bright), var(--cyan-vivid));
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--navy-deep);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-dark .section-tag {
  color: var(--cyan-vivid);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-dark .section-desc {
  color: var(--text-light-muted);
}

/* ==========================================================================
   BOAT NOAH SPOTLIGHT SECTION
   ========================================================================== */
.boat-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.boat-image-composition {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.boat-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.boat-image-composition:hover .boat-main-image {
  transform: scale(1.03);
}

.boat-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(5, 19, 41, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--white);
}

.boat-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.boat-overlay-sub {
  font-size: 0.8rem;
  color: var(--cyan-soft);
}

.boat-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.spec-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cyan-soft);
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* ==========================================================================
   ROUTES / ITINERARIES CARDS
   ========================================================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 42, 82, 0.08);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--ocean-blue);
}

.route-card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.route-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 19, 41, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cyan-vivid);
  border: 1px solid rgba(0, 180, 216, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.route-card-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.route-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.route-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.route-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.route-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--white-dim);
  border-bottom: 1px solid var(--white-dim);
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.route-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.route-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.route-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ocean-blue);
  line-height: 1;
}

/* ==========================================================================
   CALENDAR & DEPARTURES TABLE / LIST
   ========================================================================== */
.calendar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 42, 82, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}

.trips-table-wrapper {
  overflow-x: auto;
}

.trips-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.trips-table th {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  font-weight: 600;
}

.trips-table th:first-child {
  border-top-left-radius: var(--radius-md);
}

.trips-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.trips-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--white-dim);
  font-size: 0.9rem;
  vertical-align: middle;
}

.trips-table tr:hover td {
  background-color: rgba(0, 119, 182, 0.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-available {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.status-few {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
}

.status-full {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

/* ==========================================================================
   BOOKING ENGINE FORM & CHECKOUT
   ========================================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.5rem;
}

.booking-steps-nav {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--white-dim);
  padding-bottom: 1rem;
  gap: 2rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.step-indicator.active {
  color: var(--ocean-blue);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white-dim);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.step-indicator.active .step-num {
  background: var(--ocean-blue);
  color: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--white-dim);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

/* FLIGHT OPTION RADIO CARDS */
.flight-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.flight-card-radio {
  border: 2px solid var(--white-dim);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
  position: relative;
}

.flight-card-radio:hover {
  border-color: var(--ocean-bright);
}

.flight-card-radio.selected {
  border-color: var(--ocean-blue);
  background: rgba(0, 119, 182, 0.04);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.12);
}

.flight-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.flight-card-icon {
  font-size: 1.25rem;
  color: var(--ocean-blue);
}

.flight-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-deep);
}

.flight-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* CABIN SELECTION CARDS */
.cabin-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.cabin-option-card {
  border: 2px solid var(--white-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition-fast);
}

.cabin-option-card:hover {
  border-color: var(--ocean-bright);
}

.cabin-option-card.selected {
  border-color: var(--ocean-blue);
  box-shadow: 0 4px 18px rgba(0, 119, 182, 0.15);
}

.cabin-option-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.cabin-option-body {
  padding: 1rem;
}

.cabin-option-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.cabin-option-sup {
  font-size: 0.8rem;
  color: var(--ocean-blue);
  font-weight: 600;
}

/* BOOKING SUMMARY SIDEBAR */
.booking-summary-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-glass);
  position: sticky;
  top: 6.5rem;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--white);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.summary-row.total {
  border-top: 1px dashed var(--border-glass);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.summary-row.deposit-highlight {
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  color: var(--cyan-soft);
  font-weight: 700;
  font-size: 1rem;
}

/* BOOKING SUMMARY INTERACTIVE ACTIONS & CLEAR SELECTION */
.summary-item-block {
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--cyan-subtle);
  margin-bottom: 0.25rem;
}

.summary-item-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-item-value strong {
  color: var(--white);
  font-size: 0.95rem;
}

.btn-sum-modify {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0, 180, 216, 0.16);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-sum-modify:hover {
  background: var(--ocean-blue);
  color: #fff;
  border-color: var(--ocean-blue);
  transform: translateY(-1px);
}

.btn-clear-selection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: all 0.2s ease;
}

.btn-clear-selection:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fff;
  transform: translateY(-1px);
}

.btn-reset-booking {
  transition: all 0.2s ease;
}

.btn-reset-booking:hover {
  background: #FFE4E6 !important;
  border-color: #F87171 !important;
  color: #991B1B !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.15);
}

.highlight-step {
  animation: pulse-step-glow 1.8s ease-out;
  border-color: var(--cyan-vivid) !important;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.35) !important;
}

@keyframes pulse-step-glow {
  0% {
    box-shadow: 0 0 0 8px rgba(0, 180, 216, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
  }
}

.trip-active-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(0, 180, 216, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  margin-top: 0.85rem;
}

.trip-empty-banner {
  background: rgba(212, 163, 115, 0.08);
  border: 1px dashed rgba(212, 163, 115, 0.4);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #b45309;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* STRIPE PAYMENT CARD SIMULATION & FORM */
.stripe-box {
  background: var(--white-soft);
  border: 1px solid var(--white-dim);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.stripe-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stripe-logos {
  display: flex;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: var(--navy-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--cyan-vivid);
  padding-left: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* ==========================================================================
   MODAL & NOTIFICATIONS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 19, 41, 0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-soft);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .boat-grid {
    grid-template-columns: 1fr;
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-box-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .search-box-card {
    grid-template-columns: 1fr;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .flight-options-grid {
    grid-template-columns: 1fr;
  }
  .cabin-select-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-contact span {
    display: none;
  }
}

/* ==========================================================================
   BLOG / EXPEDITION JOURNAL STYLES
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.4);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy-dark);
}

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

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

.blog-badge-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6, 21, 43, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cyan-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 180, 216, 0.4);
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.blog-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-read-article {
  background: transparent;
  border: none;
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.btn-read-article:hover {
  color: var(--cyan-vivid);
  transform: translateX(3px);
}

/* Category filter buttons */
.category-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cat-tab-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cat-tab-btn:hover,
.cat-tab-btn.active {
  background: var(--navy-deep);
  color: var(--cyan-soft);
  border-color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   STRIPE PAYMENT SECURITY & TRUST BADGES
   ========================================================================== */
.stripe-trust-banner {
  background: linear-gradient(135deg, #06152B, #0B2238);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(6, 21, 43, 0.25);
}

.stripe-trust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stripe-trust-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan-soft);
}

.stripe-trust-logos {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.6rem;
}

.stripe-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stripe-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.stripe-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--cyan-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.stripe-trust-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.stripe-trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

/* ==========================================================================
   ANTI-SPAM & BOT PROTECTION STYLES
   ========================================================================== */
.spam-guard-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.spam-guard-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.math-challenge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.math-challenge-badge {
  background: #06152B;
  color: #00B4D8;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE TWEAKS FOR TABLETS AND SMARTPHONES
   ========================================================================== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stripe-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 0.65rem 1rem;
  }
  .nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #06152B !important;
    padding: 1.5rem !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    border-bottom: 1px solid rgba(0, 180, 216, 0.3) !important;
    gap: 0.85rem !important;
    z-index: 99999 !important;
  }
  .nav-menu.mobile-open .nav-item {
    width: 100%;
  }
  .nav-menu.mobile-open .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 1rem;
  }
  .nav-menu.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    margin-top: 0.35rem;
  }
  .category-tabs {
    gap: 0.5rem;
  }
  .cat-tab-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
  }
  .social-links {
    display: none;
  }
}

/* ==========================================================================
   HIGH-IMPACT DAY-BY-DAY CTA & EXPANDABLE ROUTE STYLES
   ========================================================================== */
.btn-daybyday-cta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, #06152B 0%, #0A2B4C 50%, #0077B6 100%);
  border: 1.5px solid #00B4D8;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 119, 182, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-daybyday-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.45);
  border-color: #90E0EF;
  background: linear-gradient(135deg, #0B2238 0%, #0D3B66 50%, #0096C7 100%);
}

.btn-daybyday-cta .cta-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00F5D4;
  box-shadow: 0 0 10px #00F5D4;
  animation: pulseCyan 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseCyan {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(0, 245, 212, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.btn-daybyday-cta .cta-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.15rem;
}

.btn-daybyday-cta .cta-text strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.btn-daybyday-cta .cta-text small {
  font-size: 0.78rem;
  color: #CAF0F8;
  font-weight: 400;
}

.btn-daybyday-cta .toggle-arrow {
  font-size: 1.25rem;
  color: #00B4D8;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.btn-daybyday-cta.expanded .toggle-arrow {
  transform: rotate(180deg);
  color: #00F5D4;
}

/* ==========================================================================
   PAYMENT TRUST & ACCEPTED CARDS SHOWCASE
   ========================================================================== */
.payment-trust-showcase {
  background: linear-gradient(145deg, #06152B 0%, #0B2238 60%, #07192C 100%);
  border: 1.5px solid rgba(0, 180, 216, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 12px 35px rgba(6, 21, 43, 0.35);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .payment-trust-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.payment-seal-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 180, 216, 0.35));
  margin: 0 auto;
}

.accepted-cards-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 1rem;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.card-pill i {
  font-size: 1.15rem;
}

.card-pill.visa i { color: #5B92E5; }
.card-pill.mastercard i { color: #EB001B; }
.card-pill.amex i { color: #00A6E0; }
.card-pill.apple i { color: #FFFFFF; }
.card-pill.google i { color: #4285F4; }
.card-pill.stripe i { color: #635BFF; }

