/* =================================
   HORIZON REFLECT - GEOMETRIC STRUCTURED DESIGN
   Fishing Adventures in Portimão
   ================================= */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #0D2A3D;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-left: 6px solid #FF8C5A;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #FF8C5A;
}

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

/* CONTAINER - GEOMETRIC GRID STRUCTURE */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =================================
   HEADER - ANGULAR PRECISION
   ================================= */
header {
  background: linear-gradient(135deg, #0D2A3D 0%, #1B4965 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(13, 42, 61, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 30px;
}

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

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

.main-nav a:hover {
  color: #FF8C5A;
  border-bottom-color: transparent;
}

.cta-button {
  background: #FF8C5A;
  color: #FFFFFF;
  padding: 12px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #FF8C5A;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: transparent;
  color: #FF8C5A;
  transform: translateY(-2px);
}

/* MOBILE MENU - GEOMETRIC SLIDE */
.mobile-menu-toggle {
  display: none;
  background: #FF8C5A;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #0D2A3D;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0D2A3D 0%, #1B4965 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.mobile-menu-close:hover {
  background: #FF8C5A;
  border-color: #FF8C5A;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.mobile-nav a:hover {
  background: rgba(255, 140, 90, 0.2);
  border-left-color: #FF8C5A;
  transform: translateX(8px);
  color: #FF8C5A;
}

/* =================================
   HERO SECTIONS - ANGULAR IMPACT
   ================================= */
.hero {
  background: linear-gradient(135deg, #0D2A3D 0%, #1B4965 50%, #5FA8D3 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 140, 90, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(95, 168, 211, 0.15);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-page {
  background: linear-gradient(135deg, #0D2A3D 0%, #1B4965 100%);
  padding: 100px 0 60px 0;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 40px;
}

.hero-page h1 {
  color: #FFFFFF;
  font-size: 48px;
}

.hero-page p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 0;
}

/* =================================
   BUTTONS - GEOMETRIC PRECISION
   ================================= */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #FF8C5A;
  color: #FFFFFF;
  border-color: #FF8C5A;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn-primary:hover {
  background: #0D2A3D;
  border-color: #0D2A3D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #0D2A3D;
  transform: translateY(-3px);
}

.btn-link {
  background: transparent;
  color: #5FA8D3;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  clip-path: none;
}

.btn-link:hover {
  color: #FF8C5A;
  transform: translateX(5px);
}

/* =================================
   SECTIONS - STRUCTURED LAYOUT
   ================================= */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.intro,
.services-preview,
.experience,
.testimonials,
.location,
.story,
.mission,
.team,
.sustainability,
.services,
.booking-process,
.trips,
.conditions,
.what-to-bring,
.departure,
.catches,
.species,
.stories,
.seasonal,
.social,
.contact-info,
.contact-form-section,
.map-section,
.faq-contact,
.team-contact,
.legal-content,
.booking-terms,
.thank-you,
.thank-you-resources,
.social-invite,
.return-home,
.next-actions,
.return-section {
  padding: 60px 0;
}

.intro {
  background: #FFFFFF;
  text-align: center;
}

.intro h2 {
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

/* =================================
   STATS GRID - GEOMETRIC DISPLAY
   ================================= */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  background: #F5F5F5;
  min-width: 200px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  border: 3px solid #0D2A3D;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(13, 42, 61, 0.2);
  background: #FF8C5A;
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
  color: #FFFFFF;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #FF8C5A;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0D2A3D;
  text-align: center;
  transition: color 0.3s ease;
}

/* =================================
   SERVICE CARDS - ANGULAR CONTAINERS
   ================================= */
.services-preview {
  background: #F5F5F5;
  text-align: center;
}

.service-cards,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.service-card,
.card {
  background: #FFFFFF;
  padding: 40px 32px;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(13, 42, 61, 0.15);
  border-color: #FF8C5A;
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-card h3 {
  color: #0D2A3D;
  margin-bottom: 12px;
}

.service-card p {
  color: #333333;
  flex-grow: 1;
}

.service-card .price,
.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #FF8C5A;
  letter-spacing: 1px;
  margin-top: auto;
}

/* =================================
   EXPERIENCE GRID - STRUCTURED INFO
   ================================= */
.experience {
  background: #FFFFFF;
}

.experience-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.experience-item,
.feature-item {
  flex: 1 1 250px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #F5F5F5;
  border-left: 6px solid #5FA8D3;
  transition: all 0.3s ease;
}

.experience-item:hover,
.feature-item:hover {
  background: #FFFFFF;
  border-left-color: #FF8C5A;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(13, 42, 61, 0.1);
}

.experience-item img {
  width: 48px;
  height: 48px;
}

.experience-item h3 {
  color: #0D2A3D;
  font-size: 18px;
}

.experience-item p {
  color: #555555;
  font-size: 14px;
}

/* =================================
   TESTIMONIALS - GEOMETRIC CARDS
   ================================= */
.testimonials {
  background: #F5F5F5;
  padding: 80px 0;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 40px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: #FF8C5A;
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.client-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #0D2A3D;
  letter-spacing: 1.5px;
  display: block;
  margin-top: auto;
}

.client-location {
  font-size: 14px;
  color: #666666;
  display: block;
}

.stars {
  color: #FF8C5A;
  font-size: 20px;
  letter-spacing: 4px;
}

/* =================================
   LOCATION - HIGHLIGHT BOXES
   ================================= */
.location {
  background: #FFFFFF;
  text-align: center;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.highlight-item {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px 24px;
  background: #F5F5F5;
  border-top: 6px solid #FF8C5A;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: #0D2A3D;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(13, 42, 61, 0.2);
}

.highlight-item:hover h4,
.highlight-item:hover p {
  color: #FFFFFF;
}

.highlight-item h4 {
  color: #0D2A3D;
  font-size: 18px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.highlight-item p {
  color: #555555;
  font-size: 14px;
  transition: color 0.3s ease;
}

/* =================================
   CTA SECTIONS - ANGULAR CALL TO ACTION
   ================================= */
.cta-booking,
.cta {
  background: linear-gradient(135deg, #FF8C5A 0%, #0D2A3D 100%);
  padding: 80px 0;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 60px 0;
}

.cta-booking h2,
.cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.cta-booking p,
.cta p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-booking .btn-primary,
.cta .btn-primary {
  background: #FFFFFF;
  color: #0D2A3D;
  border-color: #FFFFFF;
}

.cta-booking .btn-primary:hover,
.cta .btn-primary:hover {
  background: #5FA8D3;
  color: #FFFFFF;
  border-color: #5FA8D3;
}

/* =================================
   FOOTER - STRUCTURED NAVIGATION
   ================================= */
footer {
  background: #0D2A3D;
  color: #FFFFFF;
  padding: 60px 0 24px 0;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-col h4 {
  color: #FF8C5A;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  border-left: 4px solid #FF8C5A;
  padding-left: 12px;
}

.footer-col p {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-col nav a {
  color: #CCCCCC;
  font-size: 14px;
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #FF8C5A;
  border-left-color: #FF8C5A;
  transform: translateX(6px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

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

/* =================================
   ABOUT PAGE - MISSION & VALUES
   ================================= */
.story {
  background: #FFFFFF;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
  font-size: 16px;
  line-height: 1.9;
}

.mission {
  background: #F5F5F5;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.mission-item {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 40px;
  background: #FFFFFF;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
}

.mission-item h3 {
  color: #FF8C5A;
  font-size: 24px;
  margin-bottom: 16px;
}

.mission-item p {
  color: #333333;
  font-size: 16px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.value-item {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px 24px;
  background: #FFFFFF;
  text-align: center;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #FF8C5A;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.2);
}

.value-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
}

.value-item h4 {
  color: #0D2A3D;
  font-size: 18px;
  margin-bottom: 12px;
}

.value-item p {
  color: #666666;
  font-size: 14px;
}

.team {
  background: #FFFFFF;
}

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

.team-member {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px;
  background: #F5F5F5;
  border-left: 6px solid #FF8C5A;
  transition: all 0.3s ease;
}

.team-member:hover {
  background: #FFFFFF;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(13, 42, 61, 0.1);
}

.team-member h3 {
  color: #0D2A3D;
  font-size: 22px;
  margin-bottom: 8px;
}

.team-member .role {
  font-family: 'Bebas Neue', sans-serif;
  color: #5FA8D3;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  color: #555555;
  font-size: 14px;
}

.sustainability {
  background: #F5F5F5;
  text-align: center;
}

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

.practice-item {
  flex: 1 1 300px;
  max-width: 450px;
  padding: 32px;
  background: #FFFFFF;
  border-top: 6px solid #5FA8D3;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  transition: all 0.3s ease;
}

.practice-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(95, 168, 211, 0.2);
  border-top-color: #FF8C5A;
}

.practice-item h4 {
  color: #0D2A3D;
  font-size: 20px;
  margin-bottom: 12px;
}

.practice-item p {
  color: #555555;
  font-size: 14px;
}

/* =================================
   SERVICES PAGE - DETAILED LISTINGS
   ================================= */
.services {
  background: #FFFFFF;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.service-detail {
  padding: 48px;
  background: #F5F5F5;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 10px 32px rgba(13, 42, 61, 0.15);
  border-color: #FF8C5A;
}

.service-detail img {
  width: 72px;
  height: 72px;
}

.service-detail h3 {
  color: #0D2A3D;
  font-size: 28px;
}

.service-detail p {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.service-detail ul li {
  background: #FFFFFF;
  padding: 12px 20px;
  border-left: 4px solid #5FA8D3;
  font-size: 14px;
  color: #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

.service-detail .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #FF8C5A;
  letter-spacing: 2px;
}

.booking-process {
  background: #F5F5F5;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 32px 24px;
  background: #FFFFFF;
  text-align: center;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #5FA8D3;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(95, 168, 211, 0.2);
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: #FF8C5A;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 60px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.step h3 {
  font-size: 18px;
  color: #0D2A3D;
  margin-bottom: 12px;
}

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

/* =================================
   TRIPS PAGE - LISTING CARDS
   ================================= */
.trips {
  background: #FFFFFF;
}

.trip-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.trip-card {
  padding: 40px;
  background: #F5F5F5;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.trip-card:hover {
  box-shadow: 0 8px 28px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
  transform: translateX(6px);
}

.trip-card h3 {
  color: #0D2A3D;
  font-size: 24px;
}

.trip-date {
  font-family: 'Bebas Neue', sans-serif;
  color: #FF8C5A;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.trip-card p {
  color: #333333;
  font-size: 15px;
}

.trip-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.trip-details span {
  background: #FFFFFF;
  padding: 8px 16px;
  border-left: 3px solid #5FA8D3;
  font-size: 13px;
  color: #0D2A3D;
}

.conditions {
  background: #F5F5F5;
  text-align: center;
}

.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.condition-item {
  flex: 1 1 180px;
  max-width: 220px;
  padding: 24px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  transition: all 0.3s ease;
}

.condition-item:hover {
  border-color: #5FA8D3;
  transform: translateY(-4px);
}

.condition-item h4 {
  color: #0D2A3D;
  font-size: 16px;
  margin-bottom: 8px;
}

.condition-item p {
  font-family: 'Bebas Neue', sans-serif;
  color: #FF8C5A;
  font-size: 24px;
  margin: 0;
}

.conditions-status {
  color: #28A745;
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
}

.what-to-bring {
  background: #FFFFFF;
}

.bring-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.bring-col {
  flex: 1 1 350px;
  max-width: 500px;
  padding: 40px;
  background: #F5F5F5;
  border-left: 6px solid #FF8C5A;
}

.bring-col h3 {
  color: #0D2A3D;
  font-size: 22px;
  margin-bottom: 24px;
}

.bring-col ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bring-col ul li {
  padding: 12px 16px;
  background: #FFFFFF;
  border-left: 3px solid #5FA8D3;
  font-size: 14px;
  color: #333333;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

.departure {
  background: #F5F5F5;
  text-align: center;
}

.address {
  font-size: 18px;
  line-height: 1.8;
  color: #0D2A3D;
  margin-top: 32px;
  margin-bottom: 32px;
}

.departure-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: #FFFFFF;
  border-top: 6px solid #FF8C5A;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.departure-info h3 {
  color: #0D2A3D;
  margin-bottom: 16px;
}

.departure-info p {
  color: #555555;
  line-height: 1.8;
}

/* =================================
   GALLERY PAGE - CATCHES & SPECIES
   ================================= */
.catches {
  background: #FFFFFF;
}

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

.catch-card {
  flex: 1 1 300px;
  max-width: 380px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.catch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #FF8C5A;
}

.catch-card h3 {
  color: #0D2A3D;
  font-size: 24px;
  margin-bottom: 16px;
}

.catch-details {
  font-family: 'Bebas Neue', sans-serif;
  color: #FF8C5A;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.catch-date,
.catch-location {
  font-size: 14px;
  color: #666666;
  display: block;
  margin-bottom: 6px;
}

.species {
  background: #F5F5F5;
}

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

.species-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background: #FFFFFF;
  border-left: 6px solid #5FA8D3;
  transition: all 0.3s ease;
}

.species-card:hover {
  border-left-color: #FF8C5A;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(13, 42, 61, 0.1);
}

.species-card h3 {
  color: #0D2A3D;
  font-size: 20px;
  margin-bottom: 16px;
}

.species-card p {
  color: #555555;
  font-size: 14px;
}

.difficulty,
.size {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #0D2A3D;
  font-weight: 600;
}

.stories {
  background: #FFFFFF;
}

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

.story-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 40px;
  background: #F5F5F5;
  border-top: 6px solid #FF8C5A;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  transition: all 0.3s ease;
}

.story-card:hover {
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.2);
}

.story-card h3 {
  color: #0D2A3D;
  font-size: 22px;
  margin-bottom: 16px;
}

.story-card p {
  color: #555555;
  font-size: 15px;
  line-height: 1.8;
}

.story-author {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #999999;
  font-style: italic;
}

.seasonal {
  background: #F5F5F5;
}

.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.season-tab {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 32px 24px;
  background: #FFFFFF;
  text-align: center;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  transition: all 0.3s ease;
}

.season-tab:hover {
  border-color: #5FA8D3;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(95, 168, 211, 0.2);
}

.season-tab h3 {
  color: #FF8C5A;
  font-size: 20px;
  margin-bottom: 16px;
}

.season-tab p {
  color: #555555;
  font-size: 14px;
}

.social {
  background: #FFFFFF;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.social-link {
  padding: 16px 32px;
  background: #5FA8D3;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #5FA8D3;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #FF8C5A;
  border-color: #FF8C5A;
  transform: translateY(-3px);
}

/* =================================
   CONTACT PAGE - INFO & FORM
   ================================= */
.contact-info {
  background: #FFFFFF;
}

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

.info-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 40px 32px;
  background: #F5F5F5;
  text-align: center;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
}

.info-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px auto;
}

.info-card h3 {
  color: #0D2A3D;
  font-size: 20px;
  margin-bottom: 16px;
}

.info-card p {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
}

.contact-form-section {
  background: #F5F5F5;
  text-align: center;
}

.form-container {
  max-width: 700px;
  margin: 48px auto 0 auto;
  padding: 48px;
  background: #FFFFFF;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.form-note {
  text-align: left;
  padding: 24px;
  background: #FFF9E6;
  border-left: 6px solid #FF8C5A;
  margin-bottom: 32px;
}

.form-note strong {
  color: #0D2A3D;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}

.form-note p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 16px;
}

.form-fields {
  margin-top: 16px;
}

.form-fields ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-fields ul li {
  padding: 8px 12px;
  background: #FFFFFF;
  border-left: 3px solid #5FA8D3;
  font-size: 13px;
  color: #333333;
}

.map-section {
  background: #FFFFFF;
  text-align: center;
}

.map-address {
  font-size: 18px;
  color: #0D2A3D;
  line-height: 1.8;
  margin-top: 32px;
  margin-bottom: 32px;
}

.directions {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: #F5F5F5;
  border-top: 6px solid #5FA8D3;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.directions h3 {
  color: #0D2A3D;
  margin-bottom: 16px;
}

.directions p {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
}

.faq-contact {
  background: #F5F5F5;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 32px;
  background: #FFFFFF;
  border-left: 6px solid #FF8C5A;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(13, 42, 61, 0.1);
}

.faq-item h4 {
  color: #0D2A3D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555555;
  font-size: 14px;
}

.team-contact {
  background: #FFFFFF;
}

.team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.team-contact-card {
  flex: 1 1 320px;
  max-width: 450px;
  padding: 40px;
  background: #F5F5F5;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.team-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
}

.team-contact-card h3 {
  color: #0D2A3D;
  font-size: 22px;
  margin-bottom: 8px;
}

.team-contact-card .role {
  font-family: 'Bebas Neue', sans-serif;
  color: #5FA8D3;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.team-contact-card p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-contact-card .email {
  color: #FF8C5A;
  font-size: 14px;
  font-weight: 600;
}

/* =================================
   LEGAL PAGES - CONTENT LAYOUT
   ================================= */
.legal-content {
  background: #FFFFFF;
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: #F9F9F9;
  border-left: 6px solid #0D2A3D;
}

.content-wrapper h2 {
  color: #0D2A3D;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 6px solid #FF8C5A;
  padding-left: 16px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  color: #0D2A3D;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper p {
  color: #333333;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 32px;
  margin-bottom: 20px;
}

.content-wrapper li {
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-wrapper strong {
  color: #0D2A3D;
  font-weight: 600;
}

.content-wrapper a {
  color: #5FA8D3;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #FF8C5A;
}

.cookie-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: #FFFFFF;
}

.cookie-table th,
.cookie-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid #E0E0E0;
  font-size: 14px;
}

.cookie-table th {
  background: #0D2A3D;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cookie-table td {
  color: #333333;
}

.booking-terms {
  background: #F5F5F5;
  text-align: center;
}

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

.term-box {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 32px;
  background: #FFFFFF;
  border-top: 6px solid #FF8C5A;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.term-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.2);
}

.term-box h3 {
  color: #0D2A3D;
  font-size: 20px;
  margin-bottom: 16px;
}

.term-box p {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
}

/* =================================
   THANK YOU PAGE - SUCCESS MESSAGE
   ================================= */
.thank-you {
  background: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px auto;
}

.thank-you h1 {
  color: #0D2A3D;
  font-size: 48px;
  margin-bottom: 24px;
}

.confirmation-message {
  color: #555555;
  font-size: 18px;
  margin-bottom: 40px;
}

.next-steps {
  margin-top: 60px;
  padding: 48px;
  background: #F5F5F5;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.next-steps h2 {
  color: #0D2A3D;
  border: none;
  padding: 0;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-box {
  flex: 1 1 180px;
  max-width: 220px;
  padding: 24px;
  background: #FFFFFF;
  text-align: center;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  transition: all 0.3s ease;
}

.step-box:hover {
  border-color: #5FA8D3;
  transform: translateY(-4px);
}

.step-num {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px auto;
  background: #5FA8D3;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 50px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.step-box p {
  font-size: 14px;
  color: #555555;
}

.response-info {
  margin-top: 40px;
  padding: 32px;
  background: #FFF9E6;
  border-left: 6px solid #FF8C5A;
  text-align: left;
}

.response-info p {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.response-info p:last-child {
  margin-bottom: 0;
}

.response-time,
.response-info {
  margin-top: 32px;
  padding: 24px;
  background: #F5F5F5;
  border-left: 6px solid #5FA8D3;
}

.response-time p {
  color: #555555;
  font-size: 15px;
  margin: 0;
}

.thank-you-resources {
  background: #F5F5F5;
}

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

.resource-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 40px 32px;
  background: #FFFFFF;
  text-align: center;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #FF8C5A;
}

.resource-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px auto;
}

.resource-card h3 {
  color: #0D2A3D;
  font-size: 20px;
  margin-bottom: 16px;
}

.resource-card p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 24px;
}

.social-invite {
  background: #FFFFFF;
  text-align: center;
}

.social-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #5FA8D3;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #5FA8D3;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
  margin: 0 8px;
}

.social-btn:hover {
  background: #FF8C5A;
  border-color: #FF8C5A;
  transform: translateY(-3px);
}

.return-home,
.return-section {
  background: #F5F5F5;
  text-align: center;
  padding: 60px 0;
}

.next-actions {
  background: #F5F5F5;
}

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

.action-item {
  flex: 1 1 320px;
  max-width: 450px;
  padding: 40px;
  background: #FFFFFF;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  transition: all 0.3s ease;
}

.action-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 42, 61, 0.15);
  border-color: #5FA8D3;
}

.action-item h3 {
  color: #0D2A3D;
  font-size: 22px;
  margin-bottom: 16px;
}

.action-item p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 24px;
}

/* =================================
   COOKIE CONSENT BANNER - GEOMETRIC DESIGN
   ================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0D2A3D 0%, #1B4965 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

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

.cookie-btn-accept:hover {
  background: #FFFFFF;
  color: #0D2A3D;
  border-color: #FFFFFF;
}

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

.cookie-btn-reject:hover {
  background: #FFFFFF;
  color: #0D2A3D;
}

.cookie-btn-settings {
  background: transparent;
  color: #5FA8D3;
  border: none;
  text-decoration: underline;
  padding: 12px 16px;
  clip-path: none;
}

.cookie-btn-settings:hover {
  color: #FF8C5A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 42, 61, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  position: relative;
  border: 3px solid #0D2A3D;
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid #0D2A3D;
  color: #0D2A3D;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.cookie-modal-close:hover {
  background: #FF8C5A;
  color: #FFFFFF;
  border-color: #FF8C5A;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #0D2A3D;
  font-size: 28px;
  margin-bottom: 24px;
  border-left: 6px solid #FF8C5A;
  padding-left: 16px;
}

.cookie-modal p {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cookie-category {
  padding: 24px;
  background: #F5F5F5;
  border-left: 4px solid #5FA8D3;
  margin-bottom: 20px;
}

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

.cookie-category h3 {
  color: #0D2A3D;
  font-size: 18px;
  margin: 0;
}

.cookie-category p {
  color: #666666;
  font-size: 13px;
  margin: 12px 0 0 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #CCCCCC;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.cookie-toggle.active {
  background: #5FA8D3;
}

.cookie-toggle.disabled {
  background: #0D2A3D;
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  transition: transform 0.3s ease;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.cookie-toggle.active::before {
  transform: translateX(30px);
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.cookie-modal-buttons .btn-primary,
.cookie-modal-buttons .btn-secondary {
  flex: 1 1 180px;
  max-width: 250px;
}

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-page h1 {
    font-size: 36px;
  }
  
  /* Header - Show mobile menu */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 0 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Section padding */
  .section,
  .intro,
  .services-preview,
  .experience,
  .testimonials,
  .location,
  .story,
  .mission,
  .team,
  .sustainability,
  .services,
  .booking-process,
  .trips,
  .conditions,
  .what-to-bring,
  .departure,
  .catches,
  .species,
  .stories,
  .seasonal,
  .social,
  .contact-info,
  .contact-form-section,
  .map-section,
  .faq-contact,
  .team-contact,
  .legal-content,
  .booking-terms,
  .thank-you,
  .thank-you-resources,
  .social-invite {
    padding: 40px 0;
  }
  
  /* Grid adjustments */
  .stats-grid,
  .service-cards,
  .experience-grid,
  .testimonial-grid,
  .location-highlights,
  .mission-grid,
  .values-grid,
  .team-grid,
  .practices-list,
  .steps,
  .trip-list,
  .conditions-grid,
  .bring-list,
  .catch-grid,
  .species-grid,
  .story-grid,
  .season-tabs,
  .info-grid,
  .team-contact-grid,
  .terms-grid,
  .steps-grid,
  .resource-grid,
  .action-grid {
    gap: 20px;
  }
  
  .stat-item,
  .service-card,
  .experience-item,
  .testimonial-card,
  .highlight-item,
  .mission-item,
  .value-item,
  .team-member,
  .practice-item,
  .step,
  .trip-card,
  .condition-item,
  .bring-col,
  .catch-card,
  .species-card,
  .story-card,
  .season-tab,
  .info-card,
  .team-contact-card,
  .term-box,
  .step-box,
  .resource-card,
  .action-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Padding adjustments */
  .service-card,
  .testimonial-card,
  .mission-item,
  .service-detail,
  .trip-card,
  .catch-card,
  .story-card,
  .info-card,
  .team-contact-card,
  .term-box,
  .resource-card,
  .action-item {
    padding: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Forms and content */
  .form-container,
  .content-wrapper,
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Tables */
  .cookie-table {
    font-size: 12px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Apply subtle entrance animations */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.service-card,
.testimonial-card,
.team-member {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Focus states for accessibility */
a:focus,
button:focus,
.cookie-toggle:focus {
  outline: 3px solid #FF8C5A;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta,
  .cta-booking {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}