/* ===================================
   RADIANT PATHWAY - GRADIENT MODERN STYLE
   Design: Modern with gradient elements
   =================================== */

/* CSS Reset & Base Styles */
* {
  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: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a3d4d;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
  color: #2B5F75;
}

h4 {
  font-size: 18px;
  color: #2B5F75;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #34495e;
}

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

a:hover {
  color: #d4782f;
}

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

li {
  margin-bottom: 8px;
  color: #34495e;
}

strong {
  font-weight: 600;
  color: #2B5F75;
}

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

/* Header & Navigation */
header {
  background: linear-gradient(135deg, rgba(43, 95, 117, 0.98) 0%, rgba(26, 61, 77, 0.98) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F4A460 0%, #d4782f 100%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #F4A460;
}

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

.cta-button {
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 120, 47, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #F4A460 0%, #d4782f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 120, 47, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2B5F75 0%, #1a3d4d 100%);
  z-index: 1050;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4A460;
  padding-left: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(43, 95, 117, 0.95) 0%, rgba(26, 61, 77, 0.95) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232B5F75" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 120, 47, 0.1) 100%);
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #F4A460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-primary, .btn-secondary {
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 120, 47, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4A460 0%, #d4782f 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 120, 47, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.btn-link {
  color: #2B5F75;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, rgba(43, 95, 117, 0.95) 0%, rgba(26, 61, 77, 0.95) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-internal p {
  color: #ffffff;
  font-size: 18px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Value Proposition */
.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2B5F75 0%, #F4A460 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-color: #F4A460;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(43, 95, 117, 0.2));
}

.benefit-card h3 {
  margin-bottom: 16px;
}

.benefit-card p {
  color: #5a6c7d;
  font-size: 15px;
}

/* Services Preview */
.services-preview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4782f 0%, #F4A460 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-color: #d4782f;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 16px;
  flex-grow: 1;
  color: #5a6c7d;
}

.price {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0;
}

/* Services Grid Full */
.services-grid-full {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-card-detailed {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 48px 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.service-card-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2B5F75 0%, #F4A460 100%);
  border-radius: 16px 16px 0 0;
}

.service-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-color: #F4A460;
}

.service-card-detailed h2 {
  margin-bottom: 24px;
}

.service-card-detailed p {
  margin-bottom: 24px;
  color: #5a6c7d;
}

.included-list {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  list-style: none;
}

.included-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #34495e;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4782f;
  font-weight: bold;
  font-size: 18px;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 32px 0;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  margin-bottom: 60px;
  border-radius: 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #F4A460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 450px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  border-left: 4px solid #F4A460;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: rgba(212, 120, 47, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: #2c3e50;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: #2B5F75;
  margin-bottom: 0;
  text-align: right;
}

.testimonial-card .author strong {
  color: #1a3d4d;
  display: block;
  margin-bottom: 4px;
}

/* Location Highlight */
.location-highlight {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
}

.location-highlight h2 {
  margin-bottom: 24px;
}

.location-highlight p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #5a6c7d;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(212, 120, 47, 0.3);
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: #d4782f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.08);
  border-left: 4px solid #F4A460;
}

.text-section h3 {
  margin-bottom: 16px;
}

.text-section p {
  color: #5a6c7d;
}

/* Values Section */
.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-top-color: #F4A460;
}

.value-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.value-card p {
  color: #5a6c7d;
  font-size: 14px;
}

/* Certifications */
.certifications {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
}

.certifications h2 {
  margin-bottom: 24px;
}

.certifications p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #5a6c7d;
}

/* Experiences */
.experiences {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.experience-featured {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 48px 40px;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.experience-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2B5F75 0%, #F4A460 100%);
  border-radius: 16px 16px 0 0;
}

.experience-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-color: #F4A460;
}

.experience-featured h2 {
  margin-bottom: 24px;
}

.experience-featured p {
  margin-bottom: 24px;
  color: #5a6c7d;
}

.experience-highlights {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.experience-highlights h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.experience-highlights ul {
  list-style: none;
  margin: 0;
}

.experience-highlights li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #34495e;
}

.experience-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4782f;
  font-weight: bold;
  font-size: 18px;
}

.experience-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}

.experience-details p {
  flex: 1 1 200px;
  margin: 0;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  border-radius: 8px;
}

/* Fish Species */
.fish-species {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.species-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.species-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.15);
  border-top-color: #d4782f;
}

.species-card h3 {
  margin-bottom: 12px;
  color: #2B5F75;
}

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

/* Course Levels */
.course-levels {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.level-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.level-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-color: #F4A460;
}

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

.level-card p {
  color: #5a6c7d;
}

/* Courses */
.courses {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.course-detailed {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 48px 40px;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  border-left: 4px solid #F4A460;
}

.course-detailed h2 {
  margin-bottom: 24px;
}

.course-detailed p {
  margin-bottom: 24px;
  color: #5a6c7d;
}

.curriculum-list {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  list-style: none;
}

.curriculum-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #34495e;
}

.curriculum-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4782f;
  font-weight: bold;
}

.course-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.course-info p {
  flex: 1 1 200px;
  margin: 0;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  border-radius: 8px;
}

/* Instructors */
.instructors {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
}

.instructors h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.instructors p {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

/* Catch Stories */
.catch-stories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.story-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 450px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  border-top: 4px solid #F4A460;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.15);
}

.story-card h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.story-card p {
  margin-bottom: 12px;
  color: #5a6c7d;
}

.story-card p strong {
  color: #2B5F75;
}

/* Locations */
.locations {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

.location-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.location-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #2B5F75;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
  border-left-color: #F4A460;
}

.location-card h3 {
  margin-bottom: 16px;
}

.location-card p {
  color: #5a6c7d;
}

/* Seasonal */
.seasonal {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.season-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
  border-left: 4px solid #F4A460;
}

.season-section h3 {
  margin-bottom: 16px;
}

.season-section p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 400px;
}

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

.info-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #F4A460;
}

.info-block h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.info-block p {
  color: #5a6c7d;
  margin-bottom: 0;
}

.info-block a {
  color: #2B5F75;
  font-weight: 600;
}

.contact-form-wrapper {
  flex: 1 1 500px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
}

.contact-form-wrapper h2 {
  margin-bottom: 16px;
}

.contact-form-wrapper p {
  margin-bottom: 24px;
  color: #5a6c7d;
}

.form-note {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #2B5F75;
}

.form-note p {
  margin-bottom: 16px;
  color: #34495e;
}

.form-note ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.form-note li {
  margin-bottom: 8px;
  color: #5a6c7d;
}

/* Contact Reasons */
.contact-reasons {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.reason-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.15);
}

.reason-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.reason-card p {
  color: #5a6c7d;
  font-size: 14px;
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.map-section h2 {
  margin-bottom: 24px;
}

.map-section p {
  max-width: 700px;
  margin: 0 auto;
  color: #5a6c7d;
}

/* Booking Process */
.booking-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

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

.step {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.15);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(212, 120, 47, 0.3);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.step p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 0;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
}

.legal-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #e8eef5;
}

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

.legal-text ul {
  margin-bottom: 20px;
}

.legal-text li {
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #2B5F75 0%, #1a3d4d 100%);
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(212, 120, 47, 0.4);
}

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

.confirmation-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  margin-bottom: 60px;
}

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

.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(43, 95, 117, 0.1);
  position: relative;
}

.step-card .step-number {
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step-card p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 0;
}

/* While Waiting */
.while-waiting {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.action-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(43, 95, 117, 0.1);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 95, 117, 0.2);
}

.action-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.action-card h3 {
  margin-bottom: 16px;
}

.action-card p {
  color: #5a6c7d;
  margin-bottom: 20px;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, #1a3d4d 0%, #0f2633 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #F4A460;
  padding-left: 5px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 61, 77, 0.98) 0%, rgba(15, 38, 51, 0.98) 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

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

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

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

.cookie-banner-text a {
  color: #F4A460;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(212, 120, 47, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 120, 47, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
  background: transparent;
  color: #F4A460;
  border: 2px solid #F4A460;
}

.cookie-btn-settings:hover {
  background: rgba(244, 164, 96, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2B5F75;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(43, 95, 117, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #F4A460;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-category p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #d4782f 0%, #F4A460 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Sections */
  .section {
    padding: 32px 20px;
  }
  
  .value-proposition,
  .services-preview,
  .testimonials,
  .location-highlight,
  .cta-banner {
    padding: 40px 20px;
  }
  
  /* Cards and Grids */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .levels-grid,
  .species-grid,
  .stories-grid,
  .location-cards,
  .reasons-grid,
  .steps-grid,
  .actions-grid {
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .level-card,
  .species-card,
  .story-card,
  .location-card,
  .reason-card,
  .step,
  .action-card {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }
  
  /* Contact Grid */
  .contact-grid {
    gap: 32px;
  }
  
  .contact-info,
  .contact-form-wrapper {
    max-width: 100%;
  }
  
  /* Experience Details */
  .experience-details {
    flex-direction: column;
  }
  
  .experience-details p {
    max-width: 100%;
  }
  
  /* Course Info */
  .course-info {
    flex-direction: column;
  }
  
  .course-info p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .service-card,
  .service-card-detailed,
  .course-detailed,
  .experience-featured {
    padding: 24px 20px;
  }
  
  .price-large {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta-buttons,
  .btn-primary,
  .btn-secondary,
  .cta-button {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .hero,
  .hero-internal {
    background: white;
    color: black;
  }
  
  .hero h1,
  .hero p,
  .hero-internal h1,
  .hero-internal p {
    color: black;
    text-shadow: none;
  }
}