/* CaribSailing - Component Styles */

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--light-blue);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-accent);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: var(--light-blue);
  border-radius: 15px;
  z-index: -1;
}

/* ===== IMAGE CAROUSEL ===== */
.image-carousel {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--grey-light);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
  display: none;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  display: block;
}

.carousel-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.dot.active {
  background: var(--blue-accent);
  border-color: white;
  transform: scale(1.2);
}

/* Carousel Arrow Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy-primary);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-light);
}

.carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-medium);
}

.carousel-arrow.prev {
  left: 15px;
}

.carousel-arrow.next {
  right: 15px;
}

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border-left: 4px solid var(--blue-accent);
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.tour-card h3 {
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.tour-duration {
  background: var(--light-blue);
  color: var(--navy-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.tour-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--blue-accent);
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.testimonial-author {
  border-top: 2px solid var(--light-blue);
  padding-top: 1rem;
}

.testimonial-author strong {
  color: var(--navy-primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CTA BUTTONS CONTAINER ===== */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HEADER COMPONENTS ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
  text-decoration: none;
}

/* Logo text styling */
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px; /* Same height as logo */
}

.logo-text-line {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    min-width: auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .cta-btn {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
  
  .header-right {
    gap: 0.5rem;
  }
  
  /* Logo text responsive adjustments */
  .logo-text-line {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-card,
  .tour-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .about-preview {
    gap: 1.5rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* ===== ENHANCED FOOTER STYLES ===== */
.footer {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--grey-medium);
  margin-top: 0; /* Remove gap between sections */
  border-top: 3px solid var(--navy-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
  align-items: start;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(1.1);
}

.footer-brand-text h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.footer-tagline {
  color: var(--blue-accent);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
  opacity: 0.9;
}

.footer-description {
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  background: rgba(44, 90, 160, 0.15);
  color: var(--blue-accent);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(44, 90, 160, 0.3);
}

/* Footer Sections */
.footer-section {
  text-align: left;
}

.footer-heading {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--navy-primary);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--grey-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--blue-accent);
  transform: translateX(3px);
}

/* Contact Section */
.footer-contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.contact-icon {
  font-size: 1rem;
  width: 18px;
  text-align: center;
  opacity: 0.8;
}

.contact-item a {
  color: var(--grey-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--blue-accent);
}

.contact-item span {
  color: var(--grey-medium);
}

/* Footer Social */
.footer-social h5 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--grey-medium);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: var(--blue-accent);
  background: rgba(44, 90, 160, 0.2);
  transform: translateY(-2px);
  border-color: var(--navy-primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  /* Ensure background extends to full width */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-content p {
  color: var(--grey-medium);
  margin: 0;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-legal a {
  color: var(--grey-medium);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-legal a:hover {
  color: var(--blue-accent);
}

.footer-legal span {
  color: var(--grey-medium);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 0 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer-brand-text {
    text-align: center;
  }
  
  .footer-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-accent) 100%);
  color: var(--text-light);
  padding: 8rem 0 4rem;
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--grey-light);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--blue-accent);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--blue-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: var(--navy-primary);
}

/* Latest Posts Section */
.latest-posts {
  background: var(--bg-light);
  padding: 4rem 0;
}

.latest-posts h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--navy-primary);
  margin-bottom: 3rem;
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.latest-post-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.latest-post-image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--grey-light);
}

.latest-post-content {
  padding: 1.25rem;
}

.latest-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.latest-post-category {
  background: var(--blue-accent);
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-post-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.latest-post-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.latest-post-card p {
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Article Page Styles */
.article-page {
  padding-top: 80px;
}

.article-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-accent) 100%);
  color: var(--text-light);
  padding: 4rem 0;
}

.article-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.article-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.article-breadcrumb a:hover {
  opacity: 0.7;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

.article-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-excerpt {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
}

.article-content {
  padding: 4rem 0;
}

.article-image-container {
  margin-bottom: 3rem;
  text-align: center;
}

.article-featured-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body h2 {
  color: var(--navy-primary);
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
  font-weight: 700;
}

.article-body h3 {
  color: var(--navy-primary);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
}

.article-tags {
  margin-bottom: 2rem;
}

.article-tag {
  display: inline-block;
  background: var(--grey-light);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: var(--blue-light);
  color: var(--navy-primary);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: var(--navy-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-hero {
    padding: 6rem 0 3rem;
  }
  
  .blog-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .latest-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .latest-posts h2 {
    font-size: 2rem;
  }
  
  .article-hero {
    padding: 3rem 0;
  }
  
  .article-hero h1 {
    font-size: 2.2rem;
  }
  
  .article-excerpt {
    font-size: 1.1rem;
  }
  
  .article-content {
    padding: 3rem 0;
  }
  
  .article-featured-image {
    height: 250px;
  }
  
  .article-body {
    font-size: 1rem;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

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

/* Contact Hero Section */
.contact-hero {
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 54, 93, 0.4), rgba(44, 90, 160, 0.3));
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  padding: 2rem;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.contact-hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(135, 206, 235, 0.2);
  color: var(--blue-accent);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(135, 206, 235, 0.4);
  backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--light-blue);
}

.contact-form-container h2 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-form-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form row removed - using single column layout */

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--text-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info - Simplified Single Card */
.contact-info-card-single {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--light-blue);
}

.contact-info-card-single h2 {
  color: var(--navy-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-info-card-single .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-light);
}

.contact-info-card-single .contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.contact-info-card-single .contact-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-details strong {
  color: var(--navy-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.contact-details a:hover {
  color: var(--blue-accent);
}

.contact-details span {
  color: var(--text-body);
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hours-info span {
  color: var(--text-body);
}

.hours-alt {
  color: var(--text-muted) !important;
  font-size: 0.85rem;
}

/* Contact Social - Simplified */
.contact-social-simple {
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
  text-align: center;
}

.contact-social-simple strong {
  color: var(--navy-primary);
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* FAQ Section */
.contact-faq {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.faq-item h3 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-body);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 3rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
  }
  
  .contact-hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Form row removed - single column layout */
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-info-card-single {
    padding: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p {
    font-size: 1rem;
  }
  
  .contact-form-container,
  .contact-info-card-single,
  .faq-item {
    padding: 1.25rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ============================================================
   HOMEPAGE — SUN-BLEACHED LAYOUTS
   Scoped to .section-* parents so other pages keep their styles.
   ============================================================ */

/* ----- Shared section helpers ----- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow--light { color: var(--sun); }

.section-header {
  margin-bottom: 3rem;
  max-width: 720px;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  max-width: 60ch;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

.text-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.text-link:hover {
  color: var(--terracotta-deep);
  transform: translateX(2px);
}

.container--narrow { max-width: 820px; }

/* ----- TOURS ----- */
.section-tours { background: var(--bone); }

.section-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .section-tours .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-tours .tours-grid { grid-template-columns: 1fr; }
}

.section-tours .tour-card {
  background: var(--bone-warm);
  padding: 0;
  border-radius: 3px;
  box-shadow: none;
  border: none;
  border-left: none;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.section-tours .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.12);
}

.tour-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bone-deep) 0%, var(--bone-warm) 50%, var(--sun) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tour-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 27, 22, 0.14) 100%);
}

.photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  background: rgba(243, 237, 224, 0.72);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}

.tour-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section-tours .tour-duration {
  background: var(--terracotta);
  color: var(--bone);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.section-tours .tour-card h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.5rem;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
  margin-bottom: 0.65rem;
  letter-spacing: -0.015em;
}

.tour-price {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.tour-price span {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-left: 0.2rem;
}

.section-tours .tour-card p {
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.tour-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
}

.tour-link:hover {
  color: var(--terracotta-deep);
  transform: translateX(3px);
}

/* ----- YACHT / ABOUT split ----- */
.section-yacht { background: var(--bone-warm); }
.section-about { background: var(--bone); }

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview--reverse .about-content { order: 2; }
.about-preview--reverse .about-image { order: 1; }

.section-yacht .about-content h2,
.section-about .about-content h2 { margin-bottom: 1.25rem; }

.section-yacht .about-content p,
.section-about .about-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.about-image { position: relative; }
.about-image::before { display: none; }

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: sepia(0.08) saturate(1.05) contrast(0.97);
  box-shadow: 0 8px 28px rgba(31, 27, 22, 0.14);
}

.about-image--tilt img {
  transform: rotate(-1.2deg);
  transition: transform 0.5s ease;
}

.about-image--tilt:hover img { transform: rotate(-0.4deg); }

.about-image--mask img {
  border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
  transform: rotate(1deg);
  transition: transform 0.6s ease, border-radius 0.6s ease;
}

.about-image--mask:hover img {
  transform: rotate(0deg);
  border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%;
}

.image-caption {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}

.yacht-logbook {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 2rem;
  margin: 0 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(31, 27, 22, 0.14);
  border-bottom: 1px solid rgba(31, 27, 22, 0.14);
}

.yacht-logbook div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
}

.yacht-logbook dt {
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 500;
}

.yacht-logbook dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.15rem;
  color: var(--terracotta);
  margin: 1.25rem 0 2rem;
  letter-spacing: 0.01em;
}

/* ----- DESTINATIONS ----- */
.section-destinations { background: var(--bone-warm); }

.section-destinations .destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

@media (max-width: 1024px) {
  .section-destinations .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .section-destinations .destinations-grid { grid-template-columns: 1fr; }
}

.destination-card {
  background: var(--bone);
  padding: 0;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(31, 27, 22, 0.10);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

.destination-card.postcard--a { transform: rotate(-0.8deg); }
.destination-card.postcard--b { transform: rotate(0.6deg); }
.destination-card.postcard--c { transform: rotate(-0.4deg); }
.destination-card.postcard--d { transform: rotate(1deg); }

.destination-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 14px 36px rgba(31, 27, 22, 0.16);
}

.destination-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--bone-deep) 0%, var(--bone-warm) 60%, var(--sun) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.destination-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 27, 22, 0.12) 100%);
}

.destination-body { padding: 1.25rem 1.25rem 1.5rem; }

.destination-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.destination-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--ink);
  margin-bottom: 0.65rem;
  font-weight: 400;
}

.destination-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ----- WHY US — EDITORIAL (no cards) ----- */
.section-why { background: var(--bone); }

.section-why .features-grid,
.features-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .section-why .features-grid,
  .features-editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-why .feature-card,
.features-editorial .feature-card {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.section-why .feature-card:hover,
.features-editorial .feature-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.feature-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: 1.5rem;
}

.section-why .feature-card h3,
.features-editorial .feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 70;
}

.section-why .feature-card p,
.features-editorial .feature-card p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ----- TESTIMONIALS — staggered pull quotes ----- */
.section-testimonials { background: var(--bone-warm); }

.section-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .section-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.section-testimonials .testimonial-card {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  min-width: 0;
}

.section-testimonials .testimonial-card:nth-child(2) { margin-top: 3rem; }
.section-testimonials .testimonial-card:nth-child(3) { margin-top: 1.5rem; }

@media (max-width: 1024px) {
  .section-testimonials .testimonial-card:nth-child(2),
  .section-testimonials .testimonial-card:nth-child(3) {
    margin-top: 0;
  }
}

.section-testimonials .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: -0.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.85;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.section-testimonials blockquote {
  margin: 0;
  padding: 0;
}

.section-testimonials .testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-weight: 400;
}

.section-testimonials .testimonial-author {
  border-top: none;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.section-testimonials .testimonial-author strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.section-testimonials .testimonial-author span {
  font-family: var(--font-body);
  color: var(--ink-muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ----- FAQ — accordion ----- */
.section-faq { background: var(--bone); }

.faq-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(31, 27, 22, 0.14);
}

.section-faq .faq-item {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(31, 27, 22, 0.14);
  transition: none;
}

.section-faq .faq-item:hover {
  transform: none;
  box-shadow: none;
}

.section-faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
  font-variation-settings: 'opsz' 144, 'SOFT' 90;
}

.section-faq .faq-item summary::-webkit-details-marker { display: none; }
.section-faq .faq-item summary::marker { display: none; content: ''; }

.section-faq .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.25s ease;
  line-height: 1;
}

.section-faq .faq-item[open] summary::after {
  content: '\2013';
  transform: translateY(-50%);
}

.section-faq .faq-item summary:hover { color: var(--terracotta); }

.section-faq .faq-item p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink-muted);
  padding: 0 0 1.4rem;
  margin: 0;
  max-width: 65ch;
}

/* ----- FINAL CTA ----- */
.section-final {
  background: var(--ocean-deep);
  color: var(--bone);
  padding: 6rem 0;
}

.final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-final .eyebrow,
.eyebrow--light { color: var(--sun); }

.section-final h2 {
  color: var(--bone);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-final h2 em { color: var(--sun); }

.final-lede {
  color: rgba(243, 237, 224, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  max-width: none;
}

.final-lede .muted {
  color: rgba(243, 237, 224, 0.55);
  font-size: 0.92rem;
}

.section-final .cta-buttons {
  justify-content: center;
  margin-bottom: 2rem;
}

.section-final .cta-btn {
  background: var(--terracotta);
  color: var(--bone);
  border-color: var(--terracotta);
}

.section-final .cta-btn:hover {
  background: var(--sun);
  color: var(--ink);
  border-color: var(--sun);
}

.section-final .cta-btn.secondary {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(243, 237, 224, 0.5);
}

.section-final .cta-btn.secondary:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.final-contact {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(243, 237, 224, 0.7);
}

.final-contact a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(243, 237, 224, 0.45);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.final-contact a:hover {
  color: var(--sun);
  text-decoration-color: var(--sun);
}

/* ----- HOMEPAGE RESPONSIVE ----- */
@media (max-width: 900px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-preview--reverse .about-content { order: 2; }
  .about-preview--reverse .about-image { order: 1; }
}

@media (max-width: 768px) {
  .section-header { margin-bottom: 2.25rem; }
  .destination-card.postcard--a,
  .destination-card.postcard--b,
  .destination-card.postcard--c,
  .destination-card.postcard--d {
    transform: rotate(0deg);
  }
  .yacht-logbook { grid-template-columns: 1fr; }
  .section-final { padding: 4.5rem 0; }
  .section-testimonials .testimonial-card::before {
    font-size: 4rem;
    top: -1.5rem;
  }
}

/* ============================================================
   CRO LAYOUT COMPONENTS
   Added 2026-06-11 — bridge cards, tour hero/glance, itinerary,
   sister destinations, sticky mobile CTA, two-up tours grid.
   No backdrop-filter — solid backgrounds only.
   ============================================================ */

/* --- BRIDGE CARD --- */
.bridge-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bone-warm);
  border-left: 3px solid var(--terracotta);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 760px;
  box-shadow: var(--shadow-soft);
}

.bridge-card__icon {
  color: var(--terracotta);
  flex-shrink: 0;
  display: flex;
}

.bridge-card__text {
  flex: 1;
  min-width: 0;
}

.bridge-card__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.bridge-card__title {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

.bridge-card__title a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.bridge-card__title a:hover { color: var(--terracotta-deep); }

.bridge-card__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.bridge-card--large {
  max-width: 820px;
  padding: 2rem 2.25rem;
  margin: 3rem auto;
  gap: 1.75rem;
}

.bridge-card--large .bridge-card__title { font-size: 1.1rem; }

@media (max-width: 640px) {
  .bridge-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
  .bridge-card__cta { width: 100%; text-align: center; }
}

/* --- TOUR HERO --- */
.tour-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3rem;
  overflow: hidden;
  background: var(--ocean-deep);
}

.tour-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,51,64,0.15) 0%, rgba(30,51,64,0.7) 100%);
  z-index: 1;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  color: var(--bone);
}

.tour-hero-content .breadcrumbs,
.tour-hero-content .breadcrumbs a,
.tour-hero-content .breadcrumbs span {
  color: rgba(243, 237, 224, 0.85);
}

.tour-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bone);
  margin: 0.5rem 0 1.5rem 0;
  max-width: 18ch;
  line-height: 1.05;
}

.tour-hero-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.tour-hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tour-hero-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.7);
}

.tour-hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone);
}

.tour-hero-cta { margin-top: 0.5rem; }

/* --- TOUR GLANCE STRIP --- */
.tour-glance {
  background: var(--bone-warm);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--bone-deep);
}

.tour-glance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.tour-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  flex: 1;
}

.tour-glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tour-glance-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tour-glance-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

@media (max-width: 640px) {
  .tour-glance-inner { flex-direction: column; align-items: stretch; }
  .tour-glance-list { gap: 1rem 1.5rem; }
  .tour-glance .cta-btn { width: 100%; text-align: center; }
}

/* --- ITINERARY --- */
.itinerary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itinerary__day {
  position: relative;
  padding: 0 0 0 1.75rem;
  margin: 0 0 2.5rem 0;
  border-left: 2px solid var(--terracotta);
}

.itinerary__day:last-child { margin-bottom: 0; }

.itinerary__day-chip {
  display: inline-block;
  background: var(--terracotta);
  color: var(--bone);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.itinerary__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.itinerary__body {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.itinerary__link {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0.5rem 0 0 0;
}

.itinerary__link a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.itinerary__link a:hover { color: var(--terracotta-deep); }

/* --- INCLUSIONS / HIGHLIGHTS LIST --- */
.inclusions-list,
.highlights-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
}

.inclusions-list li,
.highlights-list li { margin-bottom: 0.5rem; }

/* --- DESTINATION HERO --- */
.destination-hero {
  position: relative;
  padding: 6rem 0 2.5rem;
  background: var(--bone);
  overflow: hidden;
}

.destination-hero-content {
  position: relative;
  z-index: 2;
}

.destination-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--ink);
  margin: 0.5rem 0 1rem 0;
  max-width: 18ch;
  line-height: 1.05;
}

.destination-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0;
}

.destination-hero-image {
  margin: 2rem 0 0 0;
  height: 280px;
  background: linear-gradient(135deg, var(--bone-warm) 0%, var(--bone-deep) 100%);
  position: relative;
  overflow: hidden;
}

.destination-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .destination-hero-image { height: 180px; }
}

/* --- SISTER DESTINATIONS GRID --- */
.destinations-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .destinations-grid--compact { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .destinations-grid--compact { grid-template-columns: 1fr; }
}

.destination-card--compact .destination-card-photo {
  aspect-ratio: 16 / 9;
}

.destination-card--compact .destination-card-body {
  padding: 1rem 1.25rem;
}

.destination-card--compact .destination-card-body p { display: none; }

.destination-card__tour-tag {
  display: inline-block;
  background: var(--bone-deep);
  color: var(--ocean);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  margin: 0 0 0.75rem 0;
}

/* --- STICKY MOBILE CTA --- */
.tour-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .tour-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--bone);
    border-top: 1px solid var(--bone-deep);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 16px rgba(31, 27, 22, 0.10);
  }
  .tour-sticky-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  body { padding-bottom: 5rem; }
}

/* --- TWO-UP TOURS GRID --- */
@media (min-width: 768px) {
  .tours-grid--two-up { grid-template-columns: repeat(2, 1fr); }
}

