:root {
  --primary: #005F9E;
  --primary-dark: #004070;
  --primary-light: #E0F4FF;
  --primary-mid: #0096C7;
  --accent: #F4A261;
  --accent-dark: #E08548;
  --accent-light: #FFF4EB;
  --teal: #0096C7;
  --teal-light: #E0F7FF;
  --gold: #F59E0B;
  --gold-light: #FFFBEB;
  --navy: #03045E;
  --dark: #0A1628;
  --dark-2: #1A2740;
  --gray: #64748b;
  --mid-gray: #94a3b8;
  --light-gray: #F0F8FF;
  --white: #FFFFFF;
  --border: #BAE6FD;
  --border-gray: #E2E8F0;
  --shadow-sm: 0 2px 10px rgba(0,95,158,0.08);
  --shadow: 0 4px 22px rgba(0,95,158,0.12);
  --shadow-md: 0 8px 32px rgba(0,95,158,0.16);
  --shadow-lg: 0 16px 56px rgba(0,95,158,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --transition: 0.22s ease;
}

/* =================================
   RESET & BASE STYLES
   ================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* =================================
   TYPOGRAPHY
   ================================= */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
  line-height: 1.75;
}

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

a:hover {
  color: var(--primary-dark);
}

/* =================================
   LAYOUT
   ================================= */

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

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background-color: var(--light-gray);
}

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

.section-dark p {
  color: #B8C5D6;
}

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

/* =================================
   TAGS
   ================================= */

.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag-primary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.tag-accent {
  background-color: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid #FFE5CF;
}

.tag-teal {
  background-color: var(--teal-light);
  color: var(--primary-dark);
  border: 1px solid #7ADDFF;
}

.tag-gold {
  background-color: var(--gold-light);
  color: #92400E;
  border: 1px solid #FED7AA;
}

/* =================================
   SECTION HEADERS
   ================================= */

.sec-head {
  margin-bottom: 3rem;
}

.sec-head h2 {
  margin-bottom: 0.5rem;
}

.sec-head.center {
  text-align: center;
}

.sec-head.center h2 {
  margin: 0 auto 0.5rem;
  max-width: 700px;
}

.sec-sub {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.sec-head.center .sec-sub {
  margin: 0 auto;
  max-width: 600px;
}

/* =================================
   BUTTONS
   ================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 1.2rem 2.4rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* =================================
   PULSE ANIMATION
   ================================= */

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(244, 162, 97, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* =================================
   TOP BAR
   ================================= */

.top-bar {
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.8rem 0;
}

.tb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tb-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
}

.tb-left {
  gap: 0.5rem;
}

/* =================================
   SITE HEADER
   ================================= */

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--primary-dark);
}

.logo-mark {
  font-size: 1.8rem;
}

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

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.slogan {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =================================
   NAVIGATION
   ================================= */

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

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

.nav a:hover::after {
  width: 100%;
}

.dd {
  position: relative;
}

.dd-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}

.dd-btn:hover {
  color: var(--primary);
}

.dd-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform var(--transition);
}

.dd.active .dd-btn::after {
  transform: rotate(180deg);
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  margin-top: 0.5rem;
  z-index: 1000;
}

.dd.active .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-menu a {
  display: block;
  padding: 0.9rem 1.2rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border-gray);
  transition: background-color var(--transition);
}

.dd-menu a:last-child {
  border-bottom: none;
}

.dd-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--navy) 100%);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 750px;
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.2rem;
  color: #E0F4FF;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 700px;
}

.ht-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ht-ico {
  font-size: 1.8rem;
  min-width: 40px;
}

.ht-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, var(--white) 100%);
  clip-path: polygon(0 50%, 2% 48%, 4% 50%, 6% 48%, 8% 50%, 10% 48%, 12% 50%, 14% 48%, 16% 50%, 18% 48%, 20% 50%, 22% 48%, 24% 50%, 26% 48%, 28% 50%, 30% 48%, 32% 50%, 34% 48%, 36% 50%, 38% 48%, 40% 50%, 42% 48%, 44% 50%, 46% 48%, 48% 50%, 50% 48%, 52% 50%, 54% 48%, 56% 50%, 58% 48%, 60% 50%, 62% 48%, 64% 50%, 66% 48%, 68% 50%, 70% 48%, 72% 50%, 74% 48%, 76% 50%, 78% 48%, 80% 50%, 82% 48%, 84% 50%, 86% 48%, 88% 50%, 90% 48%, 92% 50%, 94% 48%, 96% 50%, 98% 48%, 100% 50%, 100% 100%, 0 100%);
}

/* =================================
   PHONE STRIP
   ================================= */

.phone-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 2rem 0;
  margin: 3rem 0;
}

.ps-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.ps-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.ps-num {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ps-avail {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* =================================
   SERVICE CARDS GRID
   ================================= */

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  text-align: center;
}

.srv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

.srv-ico {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.srv-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.srv-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =================================
   CRUISE HIGHLIGHTS GRID
   ================================= */

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cruise-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
  aspect-ratio: 1 / 1.2;
  background: var(--primary-light);
}

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

.cruise-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
}

.cruise-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 1.5rem;
  color: var(--white);
}

.cruise-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cruise-route {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 0.8rem;
}

.cruise-tag {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =================================
   FEATURED CRUISE LINES
   ================================= */

.cruise-lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.cruise-line-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.cruise-line-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.cruise-line-ico {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cruise-line-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cruise-line-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =================================
   HOW IT WORKS
   ================================= */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.step-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =================================
   WHY CHOOSE US
   ================================= */

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

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
  transition: all var(--transition);
  text-align: center;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.why-ico {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =================================
   CTA BANNER
   ================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--teal) 100%);
  color: var(--white);
  padding: 4rem 0;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cta-desc {
  font-size: 1.05rem;
  max-width: 500px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================
   CONTACT SECTION
   ================================= */

#contact {
  scroll-margin-top: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--white);
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-gray);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-form-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-form-box h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-form-box p {
  color: #FFF;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-form-box .btn {
  width: 100%;
}

/* =================================
   DISCLAIMER STRIP
   ================================= */

.disc-strip {
  background-color: var(--navy);
  color: #B8C5D6;
  padding: 2rem 0;
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disc-strip p {
  color: #B8C5D6;
  margin-bottom: 0;
}

/* =================================
   FOOTER
   ================================= */

.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-brand h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ft-logo {
  font-size: 1.8rem;
}

.ft-brand p {
  color: #B8C5D6;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ft-iata {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

.ft-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  margin-bottom: 0.8rem;
}

.ft-col a {
  color: #B8C5D6;
  transition: color var(--transition);
}

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

.ft-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9DB3C3;
  font-size: 0.85rem;
  line-height: 1.7;
}

.ft-bottom p {
  color: #9DB3C3;
  margin-bottom: 0.8rem;
}

/* =================================
   POLICY PAGES
   ================================= */

.pol-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
}

.pol-hero h1 {
  margin-bottom: 0.5rem;
}

.pol-hero p {
  color: #E0F4FF;
  max-width: 600px;
}

.pol-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.pol-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pol-nav {
  list-style: none;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.pol-nav li {
  border-bottom: 1px solid var(--border-gray);
}

.pol-nav li:last-child {
  border-bottom: none;
}

.pol-nav a {
  display: block;
  padding: 1rem 1.2rem;
  color: var(--dark);
  transition: all var(--transition);
}

.pol-nav a:hover,
.pol-nav a.active {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding-left: calc(1.2rem - 4px);
}

.pol-body {
  background: var(--white);
}

.pol-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-gray);
}

.pol-body h2:first-child {
  margin-top: 0;
}

.pol-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pol-body p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.pol-body ul,
.pol-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.pol-body li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.info-tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.info-tbl th,
.info-tbl td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.info-tbl th {
  background-color: var(--primary-light);
  font-weight: 700;
  color: var(--primary-dark);
}

.info-tbl tr:last-child td {
  border-bottom: none;
}

.step-list {
  list-style: decimal;
  padding-left: 2rem;
  margin: 1.5rem 0;
}

.step-list li {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.entity-card {
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.entity-card h4 {
  margin-bottom: 0.5rem;
}

.ec-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.disc-box {
  background-color: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.disc-box p {
  color: var(--dark);
  margin-bottom: 0;
}

/* =================================
   CONTACT PAGE
   ================================= */

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
}

.contact-hero h1 {
  margin-bottom: 0.5rem;
}

.contact-hero p {
  color: #E0F4FF;
  max-width: 600px;
}

.contact-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.cc-ico {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.8rem;
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.contact-card a {
  font-weight: 600;
  color: var(--primary);
}

.contact-map-box {
  background-color: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-map-box h3 {
  margin-bottom: 1rem;
}

.contact-map-box p {
  max-width: 500px;
  margin: 0 auto;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .container-sm {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav {
    gap: 1.5rem;
  }

  .ps-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pol-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pol-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .srv-grid,
  .cruise-grid,
  .how-grid,
  .why-grid,
  .cruise-lines-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .how-step:not(:last-child)::after {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .tb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .tb-left,
  .tb-right {
    gap: 1rem;
  }

  .hd-inner {
    flex-direction: space-between;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
  }

  .nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
    padding: 0.5rem;
  }

  .nav-toggle.active span {
    display: none;
  }

  .nav-toggle.active::before {
    content: '✕';
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .srv-grid,
  .cruise-grid,
  .cruise-lines-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 2.5rem 0;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }

  .contact-grid-full {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container,
  .container-sm {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-mark {
    font-size: 1.5rem;
  }

  .brand {
    font-size: 1rem;
  }

  .slogan {
    font-size: 0.65rem;
  }

  .ps-num {
    font-size: 1.3rem;
  }

  .ps-text {
    font-size: 1rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .cta-inner {
    gap: 1.5rem;
  }

  .cta-text h2 {
    font-size: 1.3rem;
  }

  .cta-desc {
    font-size: 0.9rem;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-form-box {
    padding: 2rem;
  }

  .disc-strip {
    font-size: 0.8rem;
  }
}

/* =================================
   UTILITY CLASSES
   ================================= */

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}
