:root {
  --primary-yellow: #ffe642;
  --bg-yellow: #ffdc3a;
  --bg-navy: #1b263b;
  --text-navy: #19253d;
  --accent-cyan: #38e0ff;
  --accent-blue: #0088cc;
  --white: #ffffff;
  --light-blue: #eef8fc;
  
  --font-main: 'Outfit', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--text-navy);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-style: italic;
  font-weight: 800;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-cyan {
  background-color: var(--accent-cyan);
  color: var(--text-navy);
}

.btn-cyan:hover {
  background-color: #26c6e5;
  transform: translateY(-2px);
}

.btn-yellow {
  background-color: var(--primary-yellow);
  color: var(--text-navy);
}

.btn-yellow:hover {
  background-color: #e5cd2a;
  transform: translateY(-2px);
}

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

.btn-navy:hover {
  background-color: #293855;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--bg-navy);
}

/* Header */
header {
  background-color: var(--primary-yellow);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.logo h2 {
  font-size: 2rem;
  letter-spacing: -1px;
}

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

.nav-links a {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('assets/hero_yacht_bg_1776818299778.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  background: var(--bg-navy);
  color: var(--white);
  padding: 5px 15px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--primary-yellow);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 span {
  color: var(--accent-cyan);
}

.hero-box {
  background-color: rgba(27, 38, 59, 0.9);
  padding: 30px;
  margin-bottom: 30px;
}

.hero-box h3 {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-style: normal;
}

.hero-box p {
  color: var(--white);
  font-size: 1.1rem;
}

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

/* About Us Section */
.about {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  box-shadow: 15px 15px 0px var(--accent-cyan);
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: var(--bg-navy);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--primary-yellow);
  z-index: -1;
  transform: rotate(-2deg);
}

.about-text h3 {
  font-size: 1.6rem;
  font-style: normal;
  color: var(--text-navy);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.highlight-bg {
  background-color: var(--primary-yellow);
  padding: 0 5px;
}

/* Why ITC Section */
.why-itc {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.why-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text {
  order: 1;
}

.why-image {
  order: 2;
}

@media (max-width: 900px) {
  .why-text {
    order: 2;
  }
  .why-image {
    order: 1;
  }
}

.why-text p.intro-italic {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-navy);
  margin-bottom: 30px;
  line-height: 1.5;
}

.why-text p.intro-regular {
  font-size: 1.4rem;
  color: var(--text-navy);
  line-height: 1.6;
}

.hl-yellow {
  background-color: var(--primary-yellow);
  padding: 0 4px;
}

.hl-cyan {
  background-color: var(--accent-cyan);
  padding: 0 4px;
}

.hl-mixed {
  background: linear-gradient(to bottom, var(--primary-yellow) 60%, var(--accent-cyan) 40%);
  padding: 0 4px;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: left;
  box-shadow: 15px 15px 0px var(--accent-cyan);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--bg-navy);
  color: var(--white);
  text-align: center;
}

.how-it-works h2 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.how-it-works h2::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: var(--accent-cyan);
  z-index: -1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-card {
  background-color: rgba(255,255,255,0.05);
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.8;
  margin-bottom: -15px;
}

.num-1 { color: #5b85a6; }
.num-2 { color: #87c7e6; }
.num-3 { color: var(--accent-cyan); }
.num-4 { color: #ffe642; }
.num-5 { color: #f2aa00; }

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-1 { background-color: #5b85a6; }
.bg-2 { background-color: #87c7e6; }
.bg-3 { background-color: var(--accent-cyan); }
.bg-4 { background-color: #ffe642; color: #111; }
.bg-5 { background-color: #f2aa00; }

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-style: normal;
}

.step-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Itineraries Section */
.itineraries {
  padding: 100px 0;
  background-color: var(--white);
}

.itineraries-header {
  margin-bottom: 50px;
}

.itineraries-header h2 {
  font-size: 4.5rem;
  color: var(--bg-navy);
  margin-bottom: -10px;
}

.itineraries-header h3 {
  font-size: 2.2rem;
  color: var(--bg-navy);
}

.itineraries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.itinerary-card {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.card-cyan {
  background-color: var(--accent-cyan);
}

.card-yellow {
  background-color: var(--primary-yellow);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 2.5rem;
  color: var(--bg-navy);
  font-style: normal;
}

.badge {
  background-color: var(--bg-navy);
  color: var(--white);
  padding: 5px 15px;
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-yellow { background-color: var(--primary-yellow); color: var(--bg-navy); }
.badge-cyan { background-color: var(--accent-cyan); color: var(--bg-navy); }

.itinerary-card p.desc {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.itinerary-list {
  margin-bottom: 40px;
  flex-grow: 1;
}

.itinerary-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1rem;
}

.itinerary-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.itinerary-card p.footer {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 15px;
}

/* Products Section */
.products {
  padding: 100px 0;
  background-color: var(--bg-yellow);
}

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

.product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 125%;
  height: 125%;
  object-fit: contain;
  object-position: center;
}

/* Parallax Hero Section */
.parallax-banner {
  height: 50vh;
  min-height: 400px;
  background-image: url('assets/Group1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
}

@media (max-width: 768px) {
  .parallax-banner {
    background-attachment: scroll;
    height: 40vh;
  }
}

/* Destinations Section */
.destinations {
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.destinations-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.destinations-map {
  position: relative;
}

.map-embed {
  width: 100%;
  height: 500px;
  display: block;
  /* Add subtle drop shadow to the SVG container if needed */
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.05));
}

/* Floating Tooltip */
.map-tooltip {
  position: fixed;
  background-color: var(--primary-yellow);
  color: var(--bg-navy);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.map-tooltip.visible {
  opacity: 1;
}

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 350px;
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--accent-cyan);
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  color: var(--bg-navy);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
}

/* Footer */
footer {
  background-color: var(--bg-navy);
  color: var(--white);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .about, .why-itc, .how-it-works, .itineraries, .destinations, .products {
    padding: 60px 0;
  }
  
  .about-grid, .why-grid-main, .itineraries-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    max-width: 85% !important;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .steps-grid, .products-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-blue);
  overflow: hidden;
}

.testimonial-slider {
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0 40px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.testimonial-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  background-color: var(--white);
  padding: 40px;
  box-shadow: 10px 10px 0px var(--bg-navy);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card.card-cyan {
  box-shadow: 10px 10px 0px var(--accent-cyan);
}

.testimonial-card.card-yellow {
  box-shadow: 10px 10px 0px var(--primary-yellow);
}

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

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-navy);
  margin-bottom: 30px;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-style: normal;
  color: var(--bg-navy);
}

.testimonial-author span {
  font-size: 0.9rem;
  opacity: 0.7;
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--bg-navy);
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  width: 30px;
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 85vw;
    max-width: 85vw;
    padding: 30px;
  }
}
