/* ============================================
   Robinson Brothers Guide Service
   Old Florida Charter Fishing Website
   ============================================ */

/* --- Color Palette ---
   Primary:    #8B6914 (old gold)
   Secondary:  #2C4A1E (deep moss green)
   Accent:     #C4883A (warm copper)
   Dark:       #1A1207 (dark walnut)
   Light:      #F5E6C8 (parchment)
   Cream:      #FDF6E3 (warm cream)
   ---------------------- */

:root {
  --color-gold: #8B6914;
  --color-gold-light: #B8941F;
  --color-green: #2C4A1E;
  --color-green-dark: #1A2E12;
  --color-copper: #C4883A;
  --color-dark: #1A1207;
  --color-parchment: #F5E6C8;
  --color-cream: #FDF6E3;
  --color-brown: #5C3D11;
  --color-warm-white: #FAF3E6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
}

/* ============================================
   Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-cream);
  background-image: url('../images/background1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-gold);
}

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

/* ============================================
   Navigation
   ============================================ */
#mainNav {
  padding: 15px 0;
  transition: all 0.4s ease;
  background: transparent;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(26, 18, 7, 0.95);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.nav-logo {
  height: 75px;
  transition: all 0.4s ease;
  opacity: 1;
}

/* Text brand - hidden by default */
.nav-brand-text {
  display: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-parchment);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-brand-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-copper);
  margin-top: 2px;
}

/* Scrolled state: shrink logo */
#mainNav.scrolled .nav-logo {
  height: 50px;
}

#mainNav.scrolled .nav-brand-text {
  display: none;
}

#mainNav .navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
  color: var(--color-copper);
}

.btn-book {
  background: var(--color-copper) !important;
  color: #fff !important;
  border-radius: 4px !important;
  margin-left: 10px;
  text-shadow: none !important;
}

.btn-book:hover {
  background: var(--color-gold) !important;
  color: #fff !important;
}

.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

#mainNav .dropdown-item:active,
#mainNav .dropdown-item:focus {
  background-color: var(--color-copper);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background-image: url('../images/background1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 18, 7, 0.55) 0%,
    rgba(26, 18, 7, 0.80) 100%
  );
  z-index: 1;
}

/* Framed image slider */
.hero-frame-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 950px;
  margin-bottom: 35px;
}

.hero-frame {
  position: relative;
  padding: 12px;
  background: linear-gradient(
    145deg,
    #8B6914 0%,
    #C4883A 15%,
    #F5E6C8 25%,
    #C4883A 35%,
    #8B6914 50%,
    #C4883A 65%,
    #F5E6C8 75%,
    #C4883A 85%,
    #8B6914 100%
  );
  border-radius: 4px;
  box-shadow:
    0 0 0 2px #5C3D11,
    0 0 0 4px #8B6914,
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-frame-edge {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(92, 61, 17, 0.4);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}

.hero-frame #heroCarousel {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-frame .carousel-item img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* Carousel Controls inside frame */
.hero-frame .carousel-control-prev,
.hero-frame .carousel-control-next {
  width: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hero-frame:hover .carousel-control-prev,
.hero-frame:hover .carousel-control-next {
  opacity: 0.8;
}

.hero-frame .carousel-control-prev:hover,
.hero-frame .carousel-control-next:hover {
  opacity: 1;
}

.hero-frame .carousel-indicators {
  bottom: 10px;
  z-index: 3;
}

.hero-frame .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-frame .carousel-indicators button.active {
  background-color: var(--color-copper);
  border-color: #fff;
}

/* Hero Text below frame */
.hero-text {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.8s ease forwards 0.3s;
  opacity: 0;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-copper);
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease forwards 0.5s;
  opacity: 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-parchment);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn-hero {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: var(--color-copper);
  border: 2px solid var(--color-copper);
  padding: 14px 40px;
  border-radius: 0;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.btn-hero:hover {
  background: transparent;
  color: var(--color-copper);
  border-color: var(--color-copper);
}

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

/* ============================================
   Welcome Strip
   ============================================ */
.welcome-strip {
  background: var(--color-dark);
  padding: 30px 0;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}

.welcome-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-parchment);
  margin: 0;
  padding: 0 20px;
}

.rope-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-copper), transparent);
  margin: 10px auto;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-padding::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 246, 227, 0.92);
  z-index: 0;
}

.section-padding > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--color-dark);
}

.section-dark::before {
  background: rgba(26, 18, 7, 0.92);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-brown);
}

.section-title.light {
  color: var(--color-parchment);
}

.title-underline {
  width: 80px;
  height: 3px;
  background: var(--color-copper);
  margin: 15px auto 20px;
}

.title-underline.light {
  background: var(--color-gold);
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-green);
}

.section-subtitle.light {
  color: var(--color-copper);
}

/* ============================================
   About Section
   ============================================ */
.about-image-frame {
  background: var(--color-parchment);
  padding: 20px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-img {
  max-width: 100%;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: 5px;
}

.about-established {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--color-copper);
  margin-bottom: 20px;
}

.about-content p {
  color: #4A3B28;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--color-gold);
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-copper);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-green);
}

/* ============================================
   Trip Cards
   ============================================ */
.trip-card {
  background: rgba(253, 246, 227, 0.95);
  border: 2px solid var(--color-gold);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-gold), var(--color-copper), var(--color-gold));
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trip-card.featured {
  border-color: var(--color-copper);
  box-shadow: 0 5px 30px rgba(196, 136, 58, 0.3);
}

.trip-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--color-copper);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.trip-card-icon {
  font-size: 2.5rem;
  color: var(--color-copper);
  margin-bottom: 20px;
}

.trip-card h3 {
  font-size: 1.5rem;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.trip-divider {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 20px;
}

.trip-card p {
  color: #4A3B28;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.trip-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  flex-grow: 1;
}

.trip-details li {
  padding: 6px 0;
  color: #4A3B28;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(139, 105, 20, 0.15);
}

.trip-details li:last-child {
  border-bottom: none;
}

.trip-details li i {
  color: var(--color-green);
  margin-right: 10px;
  font-size: 0.85rem;
}

.btn-trip {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--color-dark);
  background: transparent;
  border: 2px solid var(--color-gold);
  padding: 12px 30px;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-trip:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: #fff;
}

/* ============================================
   Species Cards
   ============================================ */
.species-card {
  background: rgba(253, 246, 227, 0.6);
  border: 1px solid var(--color-gold);
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.species-card:hover {
  background: rgba(253, 246, 227, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.species-icon {
  font-size: 2rem;
  color: var(--color-copper);
  margin-bottom: 10px;
}

.species-card h4 {
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-bottom: 5px;
}

.species-card p {
  font-size: 0.85rem;
  color: var(--color-green);
  margin: 0;
  font-style: italic;
}

.species-note {
  font-size: 0.9rem;
  color: var(--color-green);
  font-style: italic;
}

.species-note i {
  color: var(--color-copper);
  margin-right: 5px;
}

/* ============================================
   Area Cards
   ============================================ */
.area-card {
  height: 100%;
}

.area-card-inner {
  background: rgba(245, 230, 200, 0.08);
  border: 1px solid rgba(196, 136, 58, 0.3);
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.area-card-inner:hover {
  background: rgba(245, 230, 200, 0.12);
  border-color: var(--color-copper);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.area-card-inner i {
  font-size: 2rem;
  color: var(--color-copper);
  margin-bottom: 15px;
}

.area-icon-svg {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: invert(56%) sepia(52%) saturate(520%) hue-rotate(357deg) brightness(92%) contrast(88%);
}

.area-card-inner h4 {
  font-size: 1.3rem;
  color: var(--color-parchment);
  margin-bottom: 12px;
}

.area-divider {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 15px;
}

.area-card-inner p {
  font-size: 0.9rem;
  color: rgba(245, 230, 200, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-section::before {
  background: rgba(245, 230, 200, 0.92);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-stars i {
  margin: 0 2px;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: #4A3B28;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-copper);
  font-size: 1rem;
}

.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next {
  width: 40px;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
  filter: invert(30%) sepia(60%) saturate(500%) hue-rotate(15deg);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-card {
  background: rgba(245, 230, 200, 0.06);
  border: 1px solid rgba(196, 136, 58, 0.25);
  padding: 35px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(245, 230, 200, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card-icon i {
  font-size: 1.4rem;
  color: var(--color-copper);
}

.contact-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-parchment);
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(245, 230, 200, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-gold-light);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0D0A04;
  padding: 40px 0 20px;
  border-top: 3px solid var(--color-gold);
}

.footer-logo {
  height: 90px;
}

.footer-address {
  color: rgba(245, 230, 200, 0.6);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-phone {
  margin: 0;
}

.footer-phone a {
  color: var(--color-copper);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-phone a:hover {
  color: var(--color-gold-light);
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 136, 58, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-copper);
  color: #fff;
  border-color: var(--color-copper);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 105, 20, 0.2);
}

.footer-bottom p {
  color: rgba(245, 230, 200, 0.4);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: rgba(196, 136, 58, 0.5);
}

.footer-credit a {
  color: rgba(196, 136, 58, 0.5);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--color-copper);
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 160px 20px 80px;
  text-align: center;
  background-image: url('../images/background1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 7, 0.7) 0%,
    rgba(26, 18, 7, 0.85) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.page-header-tagline {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
}

/* ============================================
   Captain Cards
   ============================================ */
.captain-card {
  background: rgba(253, 246, 227, 0.95);
  border: 1px solid rgba(139, 105, 20, 0.25);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.captain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.captain-card.dark {
  background: rgba(26, 18, 7, 0.6);
  border-color: rgba(196, 136, 58, 0.2);
}

.captain-card.dark:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.captain-photo {
  position: relative;
  overflow: hidden;
}

.captain-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.captain-card:hover .captain-photo img {
  transform: scale(1.05);
}

.captain-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26, 18, 7, 0.85);
  color: var(--color-copper);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  backdrop-filter: blur(5px);
}

.captain-badge i {
  margin-right: 5px;
}

.captain-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.captain-info h3 {
  font-size: 1.3rem;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.captain-card.dark .captain-info h3 {
  color: var(--color-parchment);
}

.captain-boat {
  font-size: 0.82rem;
  color: var(--color-copper);
  margin-bottom: 12px;
  font-weight: 600;
}

.captain-boat i {
  margin-right: 5px;
}

.captain-info p {
  font-size: 0.9rem;
  color: #4A3B28;
  line-height: 1.65;
  margin-bottom: 15px;
}

.captain-card.dark .captain-info p {
  color: rgba(245, 230, 200, 0.7);
}

.captain-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px solid rgba(139, 105, 20, 0.15);
  padding-top: 12px;
}

.captain-card.dark .captain-details {
  border-color: rgba(196, 136, 58, 0.15);
}

.captain-details li {
  font-size: 0.85rem;
  color: var(--color-green);
  padding: 4px 0;
}

.captain-card.dark .captain-details li {
  color: rgba(245, 230, 200, 0.5);
}

.captain-details li i {
  color: var(--color-copper);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.btn-captain {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--color-dark);
  background: transparent;
  border: 2px solid var(--color-gold);
  padding: 10px 24px;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-top: auto;
  text-align: center;
}

.btn-captain:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: #fff;
}

.captain-card.dark .btn-captain {
  color: var(--color-parchment);
  border-color: rgba(196, 136, 58, 0.4);
}

.captain-card.dark .btn-captain:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: #fff;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-copper);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  background: var(--color-gold);
  color: #fff;
  transform: translateY(-3px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-frame .carousel-item img {
    height: 400px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .about-stats {
    justify-content: center;
  }

  .nav-right-controls {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  #mainNav .navbar-collapse {
    background: rgba(26, 18, 7, 0.95);
    padding: 15px 20px;
    margin-top: 10px;
    border: 1px solid rgba(196, 136, 58, 0.2);
    backdrop-filter: blur(10px);
  }

  .btn-book {
    display: inline-block;
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .captain-photo img {
    height: 260px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 130px 15px 60px;
    background-attachment: scroll;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .page-header-tagline {
    font-size: 1.2rem;
  }

  .captain-photo img {
    height: 240px;
  }

  .hero-section {
    min-height: auto;
    padding: 95px 15px 45px;
    background-attachment: scroll;
  }

  .hero-frame-wrapper {
    margin-bottom: 25px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .hero-frame {
    padding: 8px;
  }

  .hero-frame .carousel-item img {
    height: 230px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .welcome-text {
    font-size: 1.3rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .trip-card {
    padding: 30px 20px;
  }

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

@media (max-width: 575.98px) {
  .hero-section {
    padding: 90px 12px 40px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-sub {
    font-size: 0.82rem;
    margin-bottom: 15px;
  }

  .hero-frame-wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-frame {
    padding: 6px;
    box-shadow:
      0 0 0 1px #5C3D11,
      0 0 0 3px #8B6914,
      0 5px 20px rgba(0, 0, 0, 0.4),
      inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  }

  .hero-frame .carousel-item img {
    height: 190px;
  }

  .btn-hero {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

/* ============================================
   Trip Info Page - Info Cards (Seasons)
   ============================================ */
.info-card {
  background: rgba(253, 246, 227, 0.95);
  border: 2px solid var(--color-gold);
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-gold), var(--color-copper), var(--color-gold));
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card.featured {
  border-color: var(--color-copper);
  box-shadow: 0 5px 30px rgba(196, 136, 58, 0.2);
}

.info-card.featured::before {
  background: var(--color-copper);
  height: 5px;
}

.info-card-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--color-copper);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.info-card-icon {
  font-size: 2.2rem;
  color: var(--color-copper);
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.4rem;
  color: var(--color-brown);
  margin-bottom: 5px;
}

.info-card-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}

.info-card p {
  color: #4A3B28;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Trip Info Page - Prep Cards (Bring/Provided)
   ============================================ */
.prep-card {
  background: rgba(245, 230, 200, 0.06);
  border: 1px solid rgba(196, 136, 58, 0.25);
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.prep-card:hover {
  background: rgba(245, 230, 200, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prep-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(196, 136, 58, 0.2);
}

.prep-card-header i {
  font-size: 1.8rem;
  color: var(--color-copper);
}

.prep-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-parchment);
  margin: 0;
}

.prep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prep-list li {
  padding: 10px 0;
  color: rgba(245, 230, 200, 0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(196, 136, 58, 0.1);
}

.prep-list li:last-child {
  border-bottom: none;
}

.prep-list li i {
  color: var(--color-copper);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.prep-list.provided li i {
  color: var(--color-copper);
}

.prep-card-note {
  margin-top: 18px;
  padding: 12px 15px;
  background: rgba(196, 136, 58, 0.1);
  border-left: 3px solid var(--color-copper);
  color: var(--color-copper);
  font-size: 0.85rem;
  font-weight: 600;
}

.prep-card-note i {
  margin-right: 8px;
}

/* ============================================
   Trip Info Page - Booking Cards
   ============================================ */
.booking-card {
  background: rgba(253, 246, 227, 0.95);
  border: 1px solid rgba(139, 105, 20, 0.25);
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.booking-card-icon {
  width: 65px;
  height: 65px;
  border: 2px solid var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.booking-card:hover .booking-card-icon {
  background: var(--color-copper);
}

.booking-card-icon i {
  font-size: 1.4rem;
  color: var(--color-copper);
  transition: color 0.3s ease;
}

.booking-card:hover .booking-card-icon i {
  color: #fff;
}

.booking-card h4 {
  font-size: 1.15rem;
  color: var(--color-brown);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-card p {
  color: #4A3B28;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.whitebox {
  background: rgba(253, 246, 227, 0.95);
  border: 1px solid rgba(139, 105, 20, 0.25);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
