/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #071321;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #343a40;
  background-color: #071321;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 100%;
  background: #d09b45;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0;
}

.trust-section {
  padding: 40px 0 20px;
  background: #e9ecef;
}

.trust-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #1a365d;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item i {
  color: #d09b45;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  font-weight: 600;
  color: #1a365d;
}

.trust-link:hover {
  color: #d09b45;
}

.reviews-section {
  padding: 40px 0 80px;
  background: #e9ecef;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  color: #1a365d;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.review-name {
  font-weight: 700;
}

.review-time {
  color: #6c757d;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #d09b45;
  margin-bottom: 12px;
}

.season-notice {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(120deg, #114b93, #1b63b8, #0f3d7a);
  background-size: 200% 200%;
  color: #f4f8ff;
  border-bottom: 1px solid #0b2f5f;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  z-index: 1007;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(15, 61, 122, 0.18);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.season-notice i {
  color: #b9d7ff;
  font-size: 1.1rem;
}

.season-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: seasonNoticeGlow 2.8s ease infinite;
}

@keyframes seasonNoticeGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  background: #071321; /* Dark blue background */
  z-index: 1000;
  padding: 0;
}

.separator {
  width: 100%;
  height: 3px;
  background-color: #d09b45; /* Teal accent color */
  position: fixed;
  z-index: 4;
}

.foldable {
  position: fixed;
  top: 0;
  background-color: transparent;
  right: 0;
  height: 90px;
  width: 100%;
  display: flex;
  z-index: 1006;
  border-bottom: 3px solid #d09b45; /* Teal accent border */
}

.nav-container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 80px;
  width: 90%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white; /* White text on dark blue */
}

.brand-accent {
  color: #d09b45; /* Teal accent color */
}

.nav-contact {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 30%;
  margin-left: 70%;
}

.contact-link {
  display: flex;
  align-items: center;
  color: white; /* White text */
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-link i {
  font-size: 1.1rem;
  color: #d09b45; /* Teal icons */
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url("header_img.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Grey transparent overlay */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Additional grey overlay if needed */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  text-align: left;
  margin-left: 20px;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: #d09b45;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #d09b45;
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #d09b45;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: transparent;
  color: #d09b45;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(208, 155, 69, 0.3);
}
/* Featured Section */

.featured-section {
  background: #e9ecef;
}
.featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.featured-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-image:hover .featured-main-img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff6b6b;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.boat-model {
  font-size: 2.2rem;
  color: #1a365d;
  margin-bottom: 15px;
}

.boat-tagline {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spec-item i {
  font-size: 1.5rem;
  color: #d09b45;
}

.spec-text {
  display: flex;
  flex-direction: column;
}

.spec-value {
  font-weight: 700;
  color: #1a365d;
  font-size: 1.1rem;
}

.spec-label {
  font-size: 0.9rem;
  color: #6c757d;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d09b45;
  font-weight: 600;
  padding: 15px 25px;
  border: 2px solid #d09b45;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-link:hover {
  background: #d09b45;
  color: white;
  transform: translateY(-2px);
}

/* Info Section */
.info-section {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a8a 100%);
  color: white;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.info-card.accent {
  background: rgba(208, 155, 69, 0.2);
  border: 2px solid #d09b45;
}

.info-card.accent:hover {
  background: rgba(208, 155, 69, 0.3);
}

.info-icon {
  font-size: 3rem;
  color: #d09b45;
  margin-bottom: 20px;
}

.info-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.info-card-text {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.info-card-note {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

/* Fleet Section */
.fleet-section {
  background: #e9ecef;
}

.boat-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.boat-header {
  padding: 30px;
  background: #1a365d;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boat-name {
  font-size: 1.8rem;
}

.price-badge {
  background: #d09b45;
  padding: 10px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-from {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.boat-content {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.gallery-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a365d;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: #d09b45;
  color: white;
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.boat-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.special-offer {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  padding: 25px;
  border-radius: 12px;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offer-text {
  font-size: 1.1rem;
  line-height: 1.5;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.price-option:hover {
  border-color: #d09b45;
  transform: translateX(5px);
}

.duration {
  font-weight: 600;
  color: #1a365d;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d09b45;
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destinations-section {
  background: #f8f9fa;
}

.destination-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 350px;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: white;
  z-index: 2;
}

.destination-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.destination-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Location Section */
.location-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px;
  justify-content: center;
  align-items: center;
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: left;
}

.section-header .section-title::after {
  left: 0;
  transform: none;
}

.location-info {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-item i {
  font-size: 1.5rem;
  color: #d09b45;
  width: 50px;
  height: 50px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h4 {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a365d;
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #1a365d;
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.map-button:hover {
  background: #d09b45;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 60%;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay i {
  font-size: 4rem;
  color: white;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #0f274d;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #d09b45;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.contact-links a:hover {
  opacity: 1;
  color: #d09b45;
  transform: translateX(5px);
}

.contact-links i {
  font-size: 1.1rem;
  width: 25px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}

.info-item i {
  color: #d09b45;
  font-size: 1.1rem;
  width: 50px;
  height: 50px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-card,
  .boat-content,
  .location-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  .foldable {
    background-color: #071321;
    position: relative;
    width: 100%;
    margin-top: 90px;
    z-index: 5;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-contact {
    margin-top: 90px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .contact-link {
    font-size: 0.9rem;
  }
  .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .boat-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .gallery-container {
    height: 200px;
  }

  .featured-card,
  .location-card {
    padding: 20px;
  }
}
