/* ===================================
   MARIT BOVAR PESCA - ELEGANT CLASSIC STYLE
   Timeless Design with Refined Elements
   =================================== */

/* 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.7;
  color: #2c3e50;
  background-color: #fdfbf7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1B4965;
  margin-bottom: 16px;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; letter-spacing: -0.3px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #4a5568;
}

a {
  color: #1B4965;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #5FA8D3;
}

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

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
  color: #1B4965;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #1B4965;
  color: #ffffff;
  border-color: #1B4965;
  box-shadow: 0 2px 4px rgba(27, 73, 101, 0.15);
}

.btn-primary:hover {
  background-color: #2c5a7a;
  border-color: #2c5a7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.25);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background-color: #1B4965;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.15);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1B4965;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fdfbf7;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #1B4965;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #5FA8D3;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: #1B4965;
  font-size: 18px;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.mobile-nav a:hover {
  background-color: #CAE9FF;
  color: #1B4965;
  padding-left: 28px;
}

/* ===================================
   HEADER
   =================================== */
header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1B4965;
  position: relative;
  padding: 8px 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.3px;
}

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

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

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero {
  background: linear-gradient(135deg, #1B4965 0%, #2c5a7a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-block;
  background-color: rgba(202, 233, 255, 0.2);
  color: #CAE9FF;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(202, 233, 255, 0.3);
  letter-spacing: 0.5px;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #CAE9FF;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-internal {
  background: linear-gradient(135deg, #1B4965 0%, #2c5a7a 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #CAE9FF;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #CAE9FF;
}

.breadcrumb a {
  color: #CAE9FF;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: rgba(202, 233, 255, 0.5);
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid,
.features-grid,
.services-grid-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.feature-card,
.service-card-expanded {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.feature-card:hover,
.service-card-expanded:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
  border-color: #5FA8D3;
}

.service-icon,
.feature-icon {
  width: 64px;
  height: 64px;
  background-color: #CAE9FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon img,
.feature-icon img {
  width: 36px;
  height: 36px;
}

.service-card h3,
.feature-card h3,
.service-card-expanded h2 {
  color: #1B4965;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.feature-card p,
.service-card-expanded p {
  color: #6b7280;
  line-height: 1.6;
  flex-grow: 1;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: #1B4965;
  margin-top: 12px;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: #5FA8D3;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #1B4965;
  transform: translateX(4px);
}

.service-link::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-features li {
  padding: 8px 0;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: #5FA8D3;
  font-weight: bold;
  flex-shrink: 0;
}

.service-price-box {
  background-color: #f9fafb;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  margin: 16px 0;
  border: 1px solid #e5e7eb;
}

.service-price-box .price {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 4px;
}

.service-price-box .duration {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
  background-color: #f9fafb;
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.testimonial-author strong {
  color: #1B4965;
  font-size: 16px;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 14px;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, #1B4965 0%, #2c5a7a 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-content p {
  color: #CAE9FF;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.urgency-text,
.phone-prominent {
  font-size: 14px;
  color: #CAE9FF;
  font-style: italic;
}

.phone-prominent {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  margin-top: 16px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background-color: #1B4965;
  color: #CAE9FF;
  padding: 60px 20px 20px;
  border-top: 4px solid #5FA8D3;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 220px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 14px;
  color: #CAE9FF;
  font-style: italic;
  line-height: 1.5;
}

footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

footer p {
  color: #CAE9FF;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

footer a {
  color: #CAE9FF;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}

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

footer nav a {
  font-size: 14px;
  padding: 4px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(202, 233, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #CAE9FF;
  font-size: 14px;
}

/* ===================================
   SPECIFIC PAGE SECTIONS
   =================================== */

/* About Page */
.about-story,
.team,
.certifications,
.commitment {
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section h2,
.text-section h3 {
  color: #1B4965;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-section ul {
  margin-bottom: 24px;
}

.text-section ul li {
  margin-bottom: 12px;
  color: #4a5568;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #CAE9FF;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.timeline-year {
  font-size: 20px;
  font-weight: 600;
  color: #1B4965;
  min-width: 80px;
  background-color: #CAE9FF;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  left: -40px;
}

.timeline-content {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-left: 60px;
}

.timeline-content h3 {
  color: #1B4965;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #6b7280;
}

.mission-values {
  background-color: #f9fafb;
  padding: 40px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 800px;
  border: 1px solid #e5e7eb;
}

.mission-values h3 {
  color: #1B4965;
  margin-bottom: 16px;
  margin-top: 24px;
}

.mission-values h3:first-child {
  margin-top: 0;
}

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

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
}

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

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

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

.cert-badge {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.1);
}

.cert-badge img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.cert-badge p {
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
}

/* Services Page */
.booking-process {
  background-color: #f9fafb;
  padding: 60px 20px;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #1B4965;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.step h3 {
  color: #1B4965;
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  color: #6b7280;
  font-size: 14px;
}

.faq {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.08);
}

.faq-item h3 {
  color: #1B4965;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* Excursions Page */
.excursions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.excursion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
  border-color: #5FA8D3;
}

.excursion-card h3 {
  color: #1B4965;
  margin-bottom: 8px;
}

.excursion-details {
  background-color: #f9fafb;
  padding: 16px;
  border-radius: 4px;
  margin: 16px 0;
}

.excursion-details p {
  margin-bottom: 8px;
  color: #4a5568;
  font-size: 14px;
}

.excursion-details .price {
  color: #1B4965;
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
}

.spots-grid,
.seasons-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.spot-card,
.season-box {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.spot-card:hover,
.season-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.1);
}

.spot-card h3,
.season-box h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

.spot-card p,
.season-box p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
}

.difficulty {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background-color: #CAE9FF;
  color: #1B4965;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.whats-included {
  background-color: #f9fafb;
  padding: 60px 20px;
}

.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.included-column,
.bring-column {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.included-column h3,
.bring-column h3 {
  color: #1B4965;
  margin-bottom: 16px;
  font-size: 20px;
}

.included-column ul,
.bring-column ul {
  list-style: none;
  padding: 0;
}

.included-column ul li,
.bring-column ul li {
  padding: 10px 0;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.included-column ul li::before {
  content: '✓';
  color: #5FA8D3;
  font-weight: bold;
  font-size: 18px;
}

.bring-column ul li::before {
  content: '•';
  color: #1B4965;
  font-weight: bold;
  font-size: 20px;
}

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

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
  border-color: #5FA8D3;
}

.category-icon {
  width: 80px;
  height: 80px;
  background-color: #CAE9FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.category-icon img {
  width: 48px;
  height: 48px;
}

.category-card h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

.brands {
  color: #5FA8D3;
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
}

.price-range {
  color: #1B4965;
  font-weight: 600;
  font-size: 18px;
  margin: 12px 0;
}

.rental-info {
  padding: 60px 20px;
}

.rental-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.rental-benefits,
.rental-pricing {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.rental-benefits h3,
.rental-pricing h3 {
  color: #1B4965;
  margin-bottom: 16px;
}

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.tier {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier h4 {
  color: #1B4965;
  margin-bottom: 4px;
}

.tier p {
  color: #6b7280;
  font-size: 14px;
}

.tier .price {
  color: #1B4965;
  font-size: 20px;
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 16px;
}

.consultation-service,
.maintenance-service {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.consultation-features,
.maintenance-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 32px auto;
}

.feature-box,
.service-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-box:hover,
.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.1);
}

.feature-box h3,
.service-item h3 {
  color: #1B4965;
  margin-bottom: 8px;
}

/* Gallery Page */
.stories-grid,
.catches-grid,
.seasons-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.story-card,
.catch-card,
.season-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.story-card:hover,
.catch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
  border-color: #5FA8D3;
}

.story-icon,
.action-icon {
  width: 64px;
  height: 64px;
  background-color: #CAE9FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.story-icon img,
.action-icon img {
  width: 36px;
  height: 36px;
}

.story-card h3,
.catch-card h3,
.season-item h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

.story-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.catch-card .weight {
  font-size: 32px;
  font-weight: 600;
  color: #1B4965;
  text-align: center;
  margin: 16px 0;
}

.catch-card .description {
  font-style: italic;
  color: #6b7280;
  font-size: 14px;
}

.social-feed {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.social-link,
.social-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1B4965;
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-link:hover,
.social-btn:hover {
  background-color: #2c5a7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.2);
  color: #ffffff;
}

.hashtag-display {
  margin-top: 32px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hashtag {
  font-size: 18px;
  color: #1B4965;
  font-weight: 600;
  margin-top: 16px;
}

/* Contact Page */
.contact-cards,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card,
.action-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.contact-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.12);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background-color: #CAE9FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 36px;
  height: 36px;
}

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

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #1B4965;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.form-note {
  background-color: #CAE9FF;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #1B4965;
}

.form-note p {
  color: #1B4965;
  margin-bottom: 12px;
  font-weight: 500;
}

.form-note ul {
  list-style: none;
  padding: 0;
}

.form-note ul li {
  padding: 8px 0;
  color: #2c5a7a;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #1B4965;
  font-size: 14px;
}

.field-placeholder {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 14px;
}

.business-hours {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hours-table {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid #e5e7eb;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.special {
  background-color: #f9fafb;
}

.hours-row .day {
  font-weight: 600;
  color: #1B4965;
}

.hours-row .hours {
  color: #4a5568;
}

.faq-contact {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.social-proof {
  padding: 60px 20px;
  text-align: center;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #1B4965;
}

.stat-label {
  font-size: 16px;
  color: #6b7280;
}

.benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.benefits-list li {
  padding: 10px 0;
  color: #CAE9FF;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list li::before {
  content: '✓';
  color: #CAE9FF;
  font-weight: bold;
  font-size: 20px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  color: #6b7280;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

.user-rights {
  background-color: #f9fafb;
  padding: 60px 20px;
}

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

.right-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.right-item h3 {
  color: #1B4965;
  margin-bottom: 8px;
  font-size: 16px;
}

.right-item p {
  color: #6b7280;
  font-size: 14px;
}

.data-requests {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.request-form-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.cookie-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.cookie-row {
  background-color: #f9fafb;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}

.cookie-preferences {
  background-color: #f9fafb;
  padding: 60px 20px;
}

.preferences-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.preference-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.preference-item h3 {
  color: #1B4965;
  margin-bottom: 8px;
  font-size: 18px;
}

.cancellation-policy,
.safety-requirements {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.policy-table {
  max-width: 800px;
  margin: 0 auto 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.policy-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid #e5e7eb;
}

.policy-row:last-child {
  border-bottom: none;
}

.policy-row.special {
  background-color: #CAE9FF;
}

.policy-row .timeframe {
  font-weight: 600;
  color: #1B4965;
}

.policy-row .refund {
  color: #4a5568;
}

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

.requirement-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.requirement-item h3 {
  color: #1B4965;
  margin-bottom: 12px;
}

/* Thank You Page */
.hero-confirmation {
  background: linear-gradient(135deg, #1B4965 0%, #2c5a7a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(202, 233, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #CAE9FF;
  margin: 0 auto 24px;
  border: 3px solid #CAE9FF;
}

.hero-confirmation h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-confirmation p {
  color: #CAE9FF;
  font-size: 18px;
}

.next-steps {
  padding: 60px 20px;
}

.response-time {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin-top: 32px;
  padding: 16px;
  background-color: #CAE9FF;
  border-radius: 4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.alternative-actions,
.social-connect,
.contact-reminder {
  padding: 60px 20px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.contact-option strong {
  display: block;
  color: #1B4965;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-option p {
  color: #4a5568;
  font-size: 14px;
}

.contact-info {
  max-width: 600px;
  margin: 24px auto;
  text-align: center;
}

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

/* ===================================
   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.1);
  padding: 24px;
  z-index: 1000;
  border-top: 2px solid #1B4965;
  display: none;
}

#cookie-consent.show {
  display: block;
}

.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 500px;
}

.cookie-text p {
  color: #4a5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', 'Times New Roman', serif;
}

#accept-all {
  background-color: #1B4965;
  color: #ffffff;
  border-color: #1B4965;
}

#accept-all:hover {
  background-color: #2c5a7a;
}

#reject-all {
  background-color: transparent;
  color: #1B4965;
  border-color: #1B4965;
}

#reject-all:hover {
  background-color: #f9fafb;
}

#cookie-settings {
  background-color: transparent;
  color: #5FA8D3;
  border-color: #5FA8D3;
}

#cookie-settings:hover {
  background-color: #5FA8D3;
  color: #ffffff;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

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

.modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #1B4965;
}

.modal-content h2 {
  color: #1B4965;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #f9fafb;
}

.cookie-category h3 {
  color: #1B4965;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-toggle label {
  color: #4a5568;
  font-size: 14px;
  cursor: pointer;
}

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

#save-preferences {
  flex: 1;
  padding: 12px 24px;
  background-color: #1B4965;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', 'Times New Roman', serif;
}

#save-preferences:hover {
  background-color: #2c5a7a;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  
  .service-card,
  .feature-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta .btn-secondary {
    display: none;
  }
  
  /* Adjust header */
  .header-content {
    justify-content: space-between;
  }
  
  .header-cta {
    gap: 0;
  }
  
  /* Typography adjustments */
  .hero h1 { font-size: 32px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero-subheadline { font-size: 16px; }
  
  /* Full width cards on mobile */
  .service-card,
  .feature-card,
  .service-card-expanded,
  .category-card,
  .team-member,
  .excursion-card,
  .spot-card,
  .season-box,
  .story-card,
  .catch-card,
  .season-item,
  .contact-card,
  .action-card,
  .cert-badge,
  .step,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stack flex containers */
  .hero-cta,
  .cta-actions,
  .header-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer stacking */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Timeline adjustments */
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-year {
    position: static;
  }
  
  .timeline-content {
    margin-left: 0;
  }
  
  /* Stats row */
  .stats-row {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Contact options */
  .contact-options,
  .actions-grid {
    flex-direction: column;
  }
  
  .contact-option,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Hours table */
  .hours-row {
    padding: 16px 20px;
  }
  
  /* Section padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-internal {
    padding: 60px 20px;
  }
  
  /* Included grid */
  .included-column,
  .bring-column,
  .rental-benefits,
  .rental-pricing {
    flex: 1 1 100%;
  }
  
  /* Modal content */
  .modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  
  .hero h1 { font-size: 28px; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container { padding: 0 16px; }
  
  .logo img { height: 50px; }
  
  .mobile-menu { width: 100%; }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .stat-number { font-size: 36px; }
  
  .service-icon,
  .feature-icon { width: 56px; height: 56px; }
  
  .service-icon img,
  .feature-icon img { width: 30px; height: 30px; }
  
  .modal-buttons { flex-direction: column; }
  
  #save-preferences { width: 100%; }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #5FA8D3;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #CAE9FF;
  color: #1B4965;
}

::-moz-selection {
  background-color: #CAE9FF;
  color: #1B4965;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-banner,
  header {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .container {
    max-width: 100%;
  }
}