/* =====================================================
   DISPAS BAMB - ELEGANT CLASSIC FISHING CHARTER WEBSITE
   Design Style: Elegant Classic - Timeless Mediterranean
   ===================================================== */

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

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* =====================================================
   TYPOGRAPHY - ELEGANT CLASSIC STYLE
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Baskerville', serif;
  font-weight: 600;
  color: #1A5F7A;
  line-height: 1.3;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4A5568;
}

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

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

.section {
  margin-bottom: 60px;
  padding: 60px 0;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #1A5F7A;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

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

/* =====================================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ===================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #1A5F7A;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #D4AF37;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1A5F7A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D4AF37;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #1A5F7A;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #E8F4F8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

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

.hero {
  background: linear-gradient(to bottom, #E8F4F8 0%, #FFFFFF 100%);
  padding: 80px 0;
  border-bottom: 3px solid #D4AF37;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #1A5F7A;
  margin-bottom: 24px;
  font-size: 52px;
}

.hero-subheading {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-indicators span {
  color: #1A5F7A;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   BUTTONS - ELEGANT STYLE
   ===================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #1A5F7A;
  color: #FFFFFF;
  border-color: #1A5F7A;
}

.btn-primary:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1A5F7A;
  border-color: #1A5F7A;
}

.btn-secondary:hover {
  background-color: #1A5F7A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

/* =====================================================
   VALUE PROPOSITION SECTION
   ===================================================== */

.value-proposition {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FAF8F5;
  border: 2px solid #E8F4F8;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 95, 122, 0.15);
  border-color: #D4AF37;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.value-card h3 {
  color: #1A5F7A;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #4A5568;
}

/* =====================================================
   SERVICES SHOWCASE
   ===================================================== */

.services-showcase {
  padding: 80px 0;
  background-color: #E8F4F8;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #4A5568;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #D4AF37;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 95, 122, 0.15);
}

.service-card h3 {
  color: #1A5F7A;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #4A5568;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 16px;
}

.services-showcase .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FAF8F5;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1A5F7A;
  font-style: normal;
  margin-top: 8px;
}

.testimonial-card .rating {
  color: #D4AF37;
  font-size: 18px;
  letter-spacing: 2px;
}

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

.cta-banner {
  background: linear-gradient(135deg, #1A5F7A 0%, #2C3E50 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

.cta-banner .btn-primary:hover {
  background-color: #FFFFFF;
  color: #1A5F7A;
  border-color: #FFFFFF;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-badges span {
  color: #E8F4F8;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(232, 244, 248, 0.3);
  border-radius: 20px;
}

/* =====================================================
   PAGE HERO (Internal Pages)
   ===================================================== */

.page-hero {
  background: linear-gradient(to bottom, #E8F4F8 0%, #FFFFFF 100%);
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* =====================================================
   SERVICES DETAILED PAGE
   ===================================================== */

.services-detailed {
  padding: 60px 0;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

.service-detail h2 {
  color: #1A5F7A;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.service-detail ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #4A5568;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* =====================================================
   BOOKING INCENTIVES
   ===================================================== */

.booking-incentives {
  padding: 60px 0;
  background-color: #FAF8F5;
}

.booking-incentives h2 {
  text-align: center;
  margin-bottom: 40px;
}

.inclusions {
  max-width: 800px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inclusions li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #4A5568;
}

.inclusions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

.note {
  text-align: center;
  font-style: italic;
  color: #1A5F7A;
  margin-top: 32px;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background-color: #FAF8F5;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 4px solid #1A5F7A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #1A5F7A;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #4A5568;
  line-height: 1.7;
}

/* =====================================================
   CTA SECTION (Internal Pages)
   ===================================================== */

.cta-section {
  background-color: #E8F4F8;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 32px;
}

.cta-section p {
  font-size: 18px;
  margin-top: 24px;
  color: #1A5F7A;
}

/* =====================================================
   STORY SECTION (Chi Siamo)
   ===================================================== */

.story-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.story-section h2 {
  margin-bottom: 32px;
}

.story-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 48px;
  color: #4A5568;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.milestone {
  padding: 24px;
  background-color: #FAF8F5;
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

.milestone h3 {
  color: #1A5F7A;
  margin-bottom: 12px;
}

.milestone p {
  color: #4A5568;
  margin-bottom: 0;
}

/* =====================================================
   MISSION & VALUES
   ===================================================== */

.mission-values {
  padding: 60px 0;
  background-color: #E8F4F8;
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: #1A5F7A;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */

.team-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 17px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FAF8F5;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 95, 122, 0.15);
}

.team-member h3 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.team-member .role {
  color: #D4AF37;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.team-member p {
  color: #4A5568;
  font-size: 15px;
}

/* =====================================================
   FLEET OVERVIEW (Flotta Page)
   ===================================================== */

.fleet-overview {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.fleet-overview h2 {
  text-align: center;
  margin-bottom: 24px;
}

.fleet-overview > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 17px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 32px;
  background-color: #E8F4F8;
  border-radius: 8px;
  min-width: 200px;
}

.stat h3 {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat p {
  color: #1A5F7A;
  font-size: 16px;
  margin: 0;
}

/* =====================================================
   VESSELS SHOWCASE
   ===================================================== */

.vessels-showcase {
  padding: 60px 0;
  background-color: #FAF8F5;
}

.vessel {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #1A5F7A;
}

.vessel h2 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.vessel-type {
  color: #D4AF37;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.specs {
  background-color: #E8F4F8;
  padding: 16px;
  border-radius: 4px;
  margin: 16px 0;
}

.specs p {
  margin: 0;
  color: #1A5F7A;
  font-weight: 600;
}

.vessel ul {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vessel ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #4A5568;
}

.vessel ul li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  color: #1A5F7A;
}

.ideal-for {
  font-style: italic;
  color: #D4AF37;
  margin-top: 24px;
  font-weight: 600;
}

/* =====================================================
   EQUIPMENT SECTION
   ===================================================== */

.equipment-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.equipment-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.equipment-category {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FAF8F5;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.equipment-category h3 {
  color: #1A5F7A;
  margin-bottom: 24px;
}

.equipment-category ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.equipment-category ul li {
  padding-left: 24px;
  position: relative;
  color: #4A5568;
}

.equipment-category ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */

.gallery-categories {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.gallery-categories h2 {
  text-align: center;
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #E8F4F8;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #D4AF37;
  box-shadow: 0 8px 24px rgba(26, 95, 122, 0.15);
}

.category-card h3 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.category-card p {
  color: #4A5568;
  font-size: 15px;
}

.category-card .count {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
}

/* =====================================================
   FEATURED MOMENTS
   ===================================================== */

.featured-moments {
  padding: 60px 0;
  background-color: #FAF8F5;
}

.featured-moments h2 {
  text-align: center;
  margin-bottom: 60px;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.featured-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-item h3 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.featured-item p {
  color: #4A5568;
  font-size: 15px;
}

/* =====================================================
   CATCHES & SCENERY SECTIONS
   ===================================================== */

.catches-showcase,
.scenery-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.catches-showcase h2,
.scenery-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.catches-showcase > p,
.scenery-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
}

.species-tags,
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.species-tags span,
.location-tags span {
  padding: 10px 20px;
  background-color: #E8F4F8;
  color: #1A5F7A;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.species-tags span:hover,
.location-tags span:hover {
  background-color: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* =====================================================
   SOCIAL PROOF SECTION
   ===================================================== */

.social-proof {
  padding: 60px 0;
  background-color: #FAF8F5;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 24px;
}

.social-proof p {
  font-size: 17px;
  color: #4A5568;
  margin-bottom: 16px;
}

.social-proof strong {
  color: #D4AF37;
}

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

.contact-methods {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FAF8F5;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 95, 122, 0.15);
}

.contact-card img {
  width: 56px;
  height: 56px;
}

.contact-card h3 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.contact-card .contact-value {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
}

.contact-card p {
  color: #4A5568;
  font-size: 15px;
}

.contact-card .hours,
.contact-card .response {
  font-weight: 600;
  color: #1A5F7A;
  font-size: 14px;
}

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

.contact-form-section {
  padding: 60px 0;
  background-color: #E8F4F8;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.form-notice {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-notice p {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.8;
  margin: 0;
}

/* =====================================================
   MAP SECTION
   ===================================================== */

.map-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.address-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 24px;
  background-color: #E8F4F8;
  border-radius: 8px;
}

.address-info p {
  margin-bottom: 8px;
  color: #4A5568;
}

.directions {
  max-width: 800px;
  margin: 0 auto;
}

.directions h3 {
  color: #1A5F7A;
  margin-bottom: 24px;
}

.directions ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.directions ul li {
  padding-left: 28px;
  position: relative;
  color: #4A5568;
  line-height: 1.7;
}

.directions ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

.directions strong {
  color: #1A5F7A;
}

/* =====================================================
   FAQ CONTACT
   ===================================================== */

.faq-contact {
  padding: 60px 0;
  background-color: #FAF8F5;
}

/* =====================================================
   HOURS INFO
   ===================================================== */

.hours-info {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.hours-info h2 {
  text-align: center;
  margin-bottom: 60px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.hours-card {
  background-color: #E8F4F8;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  min-width: 280px;
}

.hours-card h3 {
  color: #1A5F7A;
  margin-bottom: 16px;
}

.hours-card p {
  color: #4A5568;
  font-size: 16px;
  margin-bottom: 8px;
}

.booking-notice {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background-color: #FAF8F5;
  border-radius: 8px;
  border: 2px solid #D4AF37;
  color: #1A5F7A;
  font-weight: 600;
}

/* =====================================================
   TRUST SECTION
   ===================================================== */

.trust-section {
  padding: 60px 0;
  background-color: #E8F4F8;
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 200px;
}

.badge img {
  width: 48px;
  height: 48px;
}

.badge p {
  color: #1A5F7A;
  font-weight: 600;
  margin: 0;
}

/* =====================================================
   LEGAL CONTENT PAGES
   ===================================================== */

.legal-content {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #FAF8F5;
  border-radius: 8px;
  border-left: 4px solid #1A5F7A;
}

.legal-section h2 {
  color: #1A5F7A;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section p {
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section a {
  color: #D4AF37;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #1A5F7A;
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */

.thank-you-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to bottom, #E8F4F8 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.thank-you-hero h1 {
  margin-bottom: 24px;
}

.confirmation {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

.next-steps {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps ul li {
  padding-left: 32px;
  position: relative;
  color: #4A5568;
  line-height: 1.7;
}

.next-steps ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

/* =====================================================
   QUICK INFO (Thank You Page)
   ===================================================== */

.quick-info {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.quick-info h2 {
  text-align: center;
  margin-bottom: 60px;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.info-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FAF8F5;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.info-card img {
  width: 56px;
  height: 56px;
}

.info-card h3 {
  color: #1A5F7A;
  margin-bottom: 8px;
}

.info-card p {
  color: #4A5568;
  font-size: 15px;
}

.info-card a {
  color: #D4AF37;
  font-weight: 600;
  text-decoration: underline;
}

.info-card a:hover {
  color: #1A5F7A;
}

/* =====================================================
   TESTIMONIAL SINGLE
   ===================================================== */

.testimonial-single {
  padding: 60px 0;
  background-color: #E8F4F8;
}

.testimonial-single .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
}

/* =====================================================
   CONTACT REMINDER
   ===================================================== */

.contact-reminder {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 32px;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 32px;
  background-color: #E8F4F8;
  border-radius: 8px;
}

.contact-info p {
  color: #4A5568;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-info strong {
  color: #1A5F7A;
}

.contact-reminder .note {
  max-width: 700px;
  margin: 0 auto;
  color: #1A5F7A;
  font-style: italic;
}

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

.navigation-cta {
  padding: 60px 0;
  background-color: #FAF8F5;
  text-align: center;
}

.navigation-cta h2 {
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

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

footer {
  background-color: #1A5F7A;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E8F4F8;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #E8F4F8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #D4AF37;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 244, 248, 0.2);
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
  margin: 0;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D4AF37;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: #1A5F7A;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #1A5F7A;
  color: #FFFFFF;
  border-color: #1A5F7A;
}

.cookie-btn-accept:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #1A5F7A;
  border-color: #1A5F7A;
}

.cookie-btn-reject:hover {
  background-color: #1A5F7A;
  color: #FFFFFF;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #4A5568;
  border-color: #4A5568;
}

.cookie-btn-settings:hover {
  background-color: #4A5568;
  color: #FFFFFF;
}

/* =====================================================
   COOKIE PREFERENCES MODAL
   ===================================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal h2 {
  color: #1A5F7A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #FAF8F5;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #1A5F7A;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #CCC;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1A5F7A;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ===================================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hide desktop navigation, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Header adjustments */
  .logo {
    height: 50px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheading {
    font-size: 17px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Flexbox cards - stack on mobile */
  .value-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .featured-grid,
  .contact-grid,
  .equipment-grid,
  .info-cards {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .category-card,
  .featured-item,
  .contact-card,
  .equipment-category,
  .info-card {
    flex: 1 1 100%;
  }
  
  /* Sections padding */
  .section,
  .hero,
  .value-proposition,
  .services-showcase,
  .testimonials,
  .cta-banner,
  .story-section,
  .mission-values,
  .team-section,
  .fleet-overview,
  .vessels-showcase,
  .equipment-section,
  .gallery-categories,
  .featured-moments,
  .catches-showcase,
  .scenery-section,
  .contact-methods,
  .map-section,
  .hours-info,
  .legal-content,
  .thank-you-hero,
  .quick-info {
    padding: 40px 0;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 0;
  }
  
  /* Navigation CTA */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .service-card,
  .value-card,
  .vessel,
  .service-detail,
  .legal-section {
    padding: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* =====================================================
   SMOOTH SCROLLING & ANIMATIONS
   ===================================================== */

@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* Fade in animation for sections */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #FFF;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =====================================================
   END OF STYLES
   ===================================================== */
