
/* HERO TYPOGRAPHY (BULLETPROOF) */

.hero-content{
  width: min(92vw, 56rem);
  margin: 0 auto;
  text-align: center;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));

  position: relative;
  z-index: 2;
  color: #f2f2df;
}


/* Hero copy: prevent duplicate rendering (mobile vs desktop blocks) */
.hero-copy--mobile{ display:none; }
.hero-copy--desktop{ display:block; }

@media (max-width: 768px){
  .hero-copy--desktop{ display:none; }
  .hero-copy--mobile{ display:block; }
}

/* Headline */
.hero-content h1{
  font-family: "FuturaXB", Arial, sans-serif;
  font-size: clamp(1.85rem, 7.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;

  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Subheadline */
.hero-content h2{
  font-family: "FuturaXB", Arial, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.75rem 0 0 0;
  opacity: 0.95;

  text-wrap: pretty;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Optional conditional line breaks:
   Use <br class="br-mobile"> / <br class="br-desktop"> in your hero copy */
.br-desktop{ display:none; }
.br-mobile{ display:inline; }

@media (min-width: 768px){
  .br-desktop{ display:inline; }
  .br-mobile{ display:none; }
}

/* Tiny phones: let the browser wrap naturally */
@media (max-width: 360px){
  .br-desktop,
  .br-mobile{ display:none; }

  .hero-content h1{ letter-spacing: -0.01em; }
}


/* Bristol Walking Tours Stylesheet */


@font-face {
  font-family: "FuturaXB";
  src: url("../fonts/customf1.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden; /* Additional protection against horizontal scroll */
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0f172a;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


/* Futura headline + accent */
header h1,
.hero-content h1,
.hero-content h2,
.tour-card h2,
.tour-section-title,
.cta,
.cta-button,
.tour-hero h1 {
  font-family: "FuturaXB", Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
 
    color: white;
    padding: 0rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    opacity: 0.8;
    z-index: 0;
}

header h1 {
    font-size: 4rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem; /* Reduced from 3rem */
}

/* Hero Section */
.hero-section {
    position: relative;
   
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section picture,
.hero-section img.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay { background: transparent; }

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

/* Tour Cards */
.tour-card {
    background: #f2f2df;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    /* Placeholder gradient - replace with actual images */
    background-image: #ddd;
}

.tour-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #f2f2df; /* Ensure white background for tour cards */
}

.tour-card h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-top: 0;
}

.tour-card .description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tour-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f2f2df;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    min-height: 90px; /* forces consistency across all cards */
}

.tour-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.tour-detail-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.tour-detail-value {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: bold;
    line-height: 1.2;
}

/* Call to Action Button */
.cta {
    background-color: #C62828;
    color: white;
    padding: 0.3rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.35rem;
letter-spacing: 0.06em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
}

.cta:hover {
    background-color: #2980b9;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        min-height: auto;   /* <-- important */
    height: auto;
    }
    
    
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-card {
        margin-bottom: 1rem;
    }
}

/* About Section on the About Page */
.about-section {
    padding: 3rem 0;
    color: #333;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.about-content h2 {
    color: #C62828;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.feature-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.back-to-tours {
    display: inline-block;
    background-color: #C62828;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.back-to-tours:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

/* About Preview Section on Index Page */
.about-preview {
    padding: 4rem 0;
    background-color: #111;
    color: white;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #C62828;
}

.about-preview-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-preview-text {
    flex: 2;
}

.about-preview-text h3 {
    color: #C62828;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-preview-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.about-preview-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.about-preview-image:hover .preview-img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

.about-preview-cta {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #C62828;
    border: 2px solid #C62828;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #C62828;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments for About Preview */
@media (max-width: 1024px) {
    .about-preview-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .about-preview-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-preview {
        padding: 3rem 0;
    }
    
    .about-preview-text h3 {
        font-size: 1.3rem;
    }
    
    .about-preview-text p {
        font-size: 1rem;
    }
    
    .btn-secondary {
        display: block;
        text-align: center;
    }
}

/* Highlights Section Styles */
.highlights-section {
    padding: 3rem 0;
    margin-top: 2rem;
    background-color: #1a2a3a;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.tour-section-title {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.tour-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C62828;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.about-teaser {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-link {
    color: #C62828;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.text-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Adjustments for Highlights Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-teaser {
        padding: 1rem;
        margin: 1.5rem 1rem 0 1rem;
    }
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slideshow-slide {
    display: none;
    animation: fade 1.5s ease;
    height: 500px;
    position: relative;
}

/* Make the first slide visible by default */
.slideshow-slide:first-child {
    display: block;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.slideshow-caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.slideshow-caption p {
    margin: 0;
    font-size: 1rem;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slideshow-button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1rem;
}

.slideshow-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-dots {
    text-align: center;
    position: absolute;
    bottom: 70px;
    width: 100%;
    z-index: 10;
}

.slideshow-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slideshow-dot.active {
    background-color: white;
}

@keyframes fade {
    from {opacity: 0.6}
    to {opacity: 1}
}

@media (max-width: 768px) {
    .slideshow-container {
        margin-bottom: 2rem;
    }
    
    .slideshow-slide {
        height: 350px;
    }
    
    .slideshow-caption h3 {
        font-size: 1.2rem;
    }
    
    .slideshow-caption p {
        font-size: 0.9rem;
    }
    
    .slideshow-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== TOUR PAGE SPECIFIC STYLES ===== */

/* Mobile-First Tour Page Styles */

/* Base Mobile Styles (320px+) */
.tour-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}


/* Dark overlay for hero backgrounds (replaces old gradient overlay) */
.tour-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.5);
  z-index:1;
  pointer-events:none;
}

/* Individual tour backgrounds */
.tour-hero.banksy-tour {
    background: url('../images/banksy-tour-large.jpg') center/cover;
}

.tour-hero.blackbeard-banksy {
    background: url('../images/history-tour-large.jpg') center/cover;
}

.tour-hero.cycle-city {
    background: url('../images/cycling-tour-large.jpg') center/cover;
}

.tour-hero.haunted-hidden {
    background: url('../images/ghost-tour-large.jpg') center/cover;
}

.tour-hero.show-bristol {
    background: url('../images/private-tour-large.jpg') center/cover;
}

.tour-hero.spanish-tour {
    background: url('../images/spanish-tour-large.jpg') center/cover;
}

.tour-hero-content {
    color: white;
    padding: 1rem;
    z-index: 2;
    width: 100%;
}

.tour-hero h1 {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tour-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-rating {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Hero Reviews Center */
.hero-reviews-center {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.hero-reviews-center iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
    min-height: 150px;
}

/* Top CTA Section - Now Sticky */
.top-cta-section {
    background: #000;
    padding: 0rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    
    
}

.top-cta-container {
    padding: 0 0rem;
}

.tour-highlights {
    padding: 0 1rem;
}

.highlights-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.tour-highlights-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.tour-highlights-list h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tour-highlights-list ul {
    list-style: none;
    padding: 0;
}

.tour-highlights-list li {
    padding: 0.5rem 0;
   
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

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

.tour-highlights-list li::before {
    content: "•";
    color: #C62828;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.tour-description-card {
    background: #f2f2df;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.tour-description-card .highlights-text {
    margin-bottom: 1.5rem;
    color: #333;
}

.tour-description-card .highlights-text:last-child {
    margin-bottom: 0;
}

/* ===== Video Section ===== */

.video-section {
    padding: 0.4rem 0rem;
   
    display: flex;
    justify-content: center;
}

.video-wrapper {
    width: 100%;
    max-width: 1000px; /* controls max size on desktop */
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Itinerary Section Styles - REDUCED PADDING */
.itinerary-section {
    background: #000;
    padding: 1rem 0; /* Reduced from 3rem to 1rem */
}

.itinerary-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.itinerary-expand-button {
    display: inline-block;
    background: #C62828;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    cursor: pointer;
    margin-bottom: 2rem;
    min-width: 280px;
}

.itinerary-expand-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: #2980b9;
}

.itinerary-expand-icon {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.itinerary-expand-button[aria-expanded="true"] .itinerary-expand-icon {
    transform: rotate(45deg);
}

.itinerary-expand-button[aria-expanded="true"] .itinerary-expand-icon::before {
    content: "−";
}

.itinerary-expand-icon::before {
    content: "+";
}

.itinerary-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.itinerary-accordion.expanded {
    max-height: 5000px;
}

.itinerary-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.itinerary-header {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.itinerary-header:hover {
    background: #e9ecef;
}

.itinerary-header[aria-expanded="true"] {
    background: #C62828;
    color: white;
}

.itinerary-title {
    flex: 1;
    font-weight: bold;
    color: #2c3e50;
}

.itinerary-header[aria-expanded="true"] .itinerary-title {
    color: white;
}

.itinerary-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C62828;
    transition: transform 0.3s ease;
}

.itinerary-header[aria-expanded="true"] .itinerary-toggle {
    color: white;
    transform: rotate(45deg);
}

.itinerary-header[aria-expanded="true"] .itinerary-toggle::before {
    content: "−";
}

.itinerary-toggle::before {
    content: "+";
}

.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.itinerary-content.active {
    max-height: 500px;
}

.itinerary-content p {
    padding: 1rem 1.5rem 0.5rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.itinerary-content ul {
    padding: 0.5rem 1.5rem 1.5rem 3rem;
    margin: 0;
    color: #666;
}

.itinerary-content li {
    margin-bottom: 0.3rem;
}

/* FAQ Section Styles - REDUCED PADDING */
.faq-section {
    background: #000;
    padding: 1rem 0; /* Reduced from 3rem to 1rem */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.faq-expand-button {
    display: inline-block;
    background: #C62828;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    cursor: pointer;
    margin-bottom: 2rem;
    min-width: 280px;
}



.faq-expand-icon {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-expand-button[aria-expanded="true"] .faq-expand-icon {
    transform: rotate(45deg);
}

.faq-expand-button[aria-expanded="true"] .faq-expand-icon::before {
    content: "−";
}

.faq-expand-icon::before {
    content: "+";
}

.faq-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-accordion.expanded {
    max-height: 5000px;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: #e3f2fd;
    color: #C62828;
}

.faq-icon {
    font-size: 1.5rem;
    color: #C62828;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
    content: "−";
}

.faq-icon::before {
    content: "+";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Section Styles - REDUCED PADDING */
.reviews-section {
    background: #000;
    padding: 1.5rem 0; /* Reduced from 2rem */
    text-align: center;
}

.reviews-container {
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tripadvisor-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

/* Tour Info Section - REDUCED PADDING */
.tour-info-section {
    background: #000;
    padding: 1rem 0; /* Reduced from 2rem */
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.tour-card-info {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tour-card-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.info-value {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.2;
}

.accessibility-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    font-size: 0.9rem;
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-container h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.map-embed {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
}

.meeting-point-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.carousel-section {
    padding: 2rem 0;
    background: white;
}

.carousel-container {
    padding: 0 1rem;
    text-align: center;
}

.cta-top {
    margin-bottom: 2rem;
}

.cta-bottom {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: #C62828;
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    width: 80%;
    max-width: 280px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: #2980b9;
}

.image-carousel {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem;
    text-align: center;
}

.carousel-caption h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.carousel-caption p {
    margin: 0;
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #C62828;
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
    .tour-hero {
        height: 400px;
    }
    
    .tour-hero h1 {
        font-size: 2.5rem;
    }
    
    .tour-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-rating {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-reviews-center iframe {
        width: 400px;
        min-height: 200px;
    }
    
    .top-cta-section {
        padding: 0.2rem 0;
    }
    
    .tour-page-content {
        padding: 1.5rem 0; /* Reduced */
    }
    
    .tour-highlights {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .tour-section-title {
        font-size: 2.2rem;
    }
    
    .highlights-text {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .tour-highlights-list {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .tour-description-card {
        padding: 2.5rem;
        margin: 3rem 0;
    }
    
    .reviews-section {
        padding: 1.5rem 0; /* Reduced */
    }
    
    .reviews-container {
        padding: 0 2rem;
    }
    
    .tripadvisor-widget {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .tour-info-section {
        padding: 1.5rem 0; /* Reduced */
    }
    
    .tour-info-grid {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .tour-card-info {
        padding: 2rem;
    }
    
    .tour-card-info h2 {
        font-size: 1.7rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .map-container {
        padding: 2rem;
    }
    
    .map-container h2 {
        font-size: 1.7rem;
    }
    
    .map-embed {
        height: 300px;
    }
    
    .carousel-section {
        padding: 3rem 0;
    }
    
    .carousel-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .cta-button {
        width: auto;
        min-width: 300px;
        font-size: 2rem;
        padding: 1.1rem 2.2rem;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
    .tour-hero {
        height: 500px;
    }
    
    .tour-hero h1 {
        font-size: 3.2rem;
    }
    
    .tour-subtitle {
        font-size: 1.3rem;
    }
    
    .tour-page-content {
        padding: 2rem 0; /* Reduced from 4rem */
    }
    
    .tour-highlights {
        max-width: 1000px;
    }
    
    .tour-section-title {
        font-size: 2.5rem;
    }
    
    .tour-highlights-list h3 {
        font-size: 1.5rem;
    }
    
    .tour-info-grid {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .carousel-container {
        max-width: 1000px;
    }
    
    .carousel-image {
        height: 400px;
    }
    
    .carousel-nav {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
}

/* Large Desktop Styles (1200px+) */
@media (min-width: 1200px) {
    .tour-hero {
        height: 600px;
    }
    
    .tour-hero h1 {
        font-size: 3.5rem;
    }
    
    .highlights-text {
        font-size: 1.15rem;
    }
    
    .carousel-container {
        max-width: 1200px;
    }
    
    .carousel-image {
        height: 450px;
    }
}

.faq { margin: 2rem auto; max-width: 900px; padding: 0 1rem; }
@media (max-width: 640px) {
  .faq { max-width: 100%; padding: 0 0.75rem; }
}

/* --- Filter overlay & tabs (merged from inline) --- */
/* Tabs container */
.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}
.tour-tab {
  padding: .5rem .8rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.tour-tab[aria-selected="true"],
.tour-tab.is-active {
  border-color: #111;
  font-weight: 600;
}

/* Overflow "More" dropdown */
.tab-more { position: relative; }
.tab-more > summary {
  list-style: none;
  padding: .5rem .8rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.tab-more[open] > summary { border-color: #111; font-weight: 600; }
.tab-more-menu {
  position: absolute; right: 0; z-index: 20; margin-top: .25rem;
  min-width: 14rem; background: #fff; border: 1px solid #ddd; border-radius: .75rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.08); padding: .25rem;
}
.tab-more-menu button { width: 100%; text-align: left; padding: .5rem .75rem; border: 0; background: transparent; cursor: pointer; border-radius: .5rem; }
.tab-more-menu button:hover { background: #f7f7f7; }
.tab-more-menu button.is-active { font-weight: 600; }

/* Mobile: keep bubble tabs; scroll horizontally; hide select */
.tour-tab-select-wrap { display: none !important; margin: .75rem 0; }
@media (max-width: 600px) {
  .tour-tabs {
    display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: .5rem;
  }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tab { white-space: nowrap; }
}

/* Filter trigger button */
.filter-trigger {
  font-family: "FuturaXB", Arial, sans-serif;
    font-size: clamp(0.85rem, 2.8vw, 1rem);
  padding: 10px 18px;
  letter-spacing: 0.06em;

  background-color: #C62828;
  color: #ffffff;

  border: none;
  border-radius: 999px;

  padding: .85rem 1.4rem;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease;
}
.filter-trigger:active { transform: translateY(1px); }

/* Overlay (mobile-first) */
.filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); display: none; z-index: 100; }
.filter-overlay[aria-hidden="false"] { display: block; }
.filter-sheet {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100%; max-width: 400px; max-height: 90vh; background: #fff; border-radius: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.2);
  display: flex; flex-direction: column; overflow: hidden;
}
.sheet-header, .sheet-footer { padding: .9rem 1rem; background: #fff; }
.sheet-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eee; }
.sheet-title { font-weight: 700; }
.sheet-close { border: 0; background: transparent; font: inherit; cursor: pointer; }
.sheet-body { padding: 1rem; overflow: auto; }

/* Chips */
.chip { padding: .45rem .75rem; border: 1px solid #ddd; border-radius: 999px; background: #fff; cursor: pointer; font: inherit; }
.chip.is-active, .chip[aria-pressed="true"] { border-color: #111; font-weight: 600; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.group { margin-bottom: 1rem; }
.group-label { display: block; font-weight: 700; margin-bottom: .5rem; }

.sheet-footer { border-top: 1px solid #eee; display: flex; gap: .5rem; justify-content: flex-end; }
.btn { padding: .6rem .9rem; border-radius: .7rem; border: 1px solid #ddd; background: #fff; cursor: pointer; font: inherit; }
.btn-primary { background: #111; color: #fff; border-color: #111; }
.btn-ghost { background: transparent; }

/* Visually hidden */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Hide filtered cards */
.tour-card[hidden] { display: none !important; }

/* Home: hide category tabs (use overlay instead) */
.tour-tabs { display: none !important; }

/* Center + enlarge the Filter & Plan button */
.filter-trigger-wrap { display: flex; justify-content: center; margin: .6rem 0 .9rem; }
.filter-trigger { font-size: 1.35rem; padding: .7rem 1.1rem; display: inline-flex; align-items: center; gap: .4rem; }


/* ================================

.other-tours-section {
  padding: 3rem 0;
}

.other-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.other-tour-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.other-tour-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.other-tour-body {
  padding: 1.25rem;
}

.other-tour-body h3 {
  margin: 0 0 0.6rem 0;
  color: #111;
}

.other-tour-body p {
  margin: 0 0 1rem 0;
  color: #333;
  line-height: 1.5;
}

.tripadvisor-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tripadvisor-widget {
  display: flex;
  justify-content: center;
  align-items: center;
}


.section-image--medium {
  width: min(92%, 720px);
  margin: 1rem auto;
  border-radius: 16px;
}

.section-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.booking-section {
  padding: 0.1rem 0;
}

.booking-container {
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.booking-intro {
  margin: 0.25rem auto 1.25rem;
  opacity: 1;
color: white;
}

/* The visual frame that makes FareHarbor behave */
.fh-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden; /* trims iframe edges */
  margin: 0 auto;
}

/* Prevent FareHarbor from sticking left */
.fh-embed {
  display: block;
  margin: 0 auto;
  width: 100%;
}

/* Tablet+ breathing room */
@media (min-width: 720px) {
  .fh-card {
    padding: 1.25rem;
  }
}


@media (max-width: 768px){
  .hero-section{padding: 1rem 1.25rem 0.1rem;
    align-items: flex-start;  /* optional: prevents “top crop” vibes */}
}

/* Toggle between desktop & mobile hero */
.hero-copy--mobile { display: none; }
.hero-copy--desktop { display: block; }

@media (max-width: 767px) {
  .hero-copy--mobile { display: block; }
  .hero-copy--desktop { display: none; }
}

/* Shared typography */
.hero-title {
  font-family: "FuturaXB", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.hero-subtitle {
  font-family: "FuturaXB", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

/* Desktop sizing */
.hero-copy--desktop .hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy--desktop .hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

/* Mobile stacked poster */
.hero-title--stack span,
.hero-subtitle--stack span {
  display: block;
}

@media (max-width: 767px) {

  .hero-content h1 {
    font-size: clamp(2rem, 11vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
    font-weight: 800;
  }

  .hero-content h2 {
    font-size: clamp(0.9rem, 3.8vw, 1.3rem);
    line-height: 1.15;
    letter-spacing: 0.08em;
  }

}
/* Hero content padding reset */

.hero-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;

  padding-left: max(10px, env(safe-area-inset-left));
  padding-right: max(10px, env(safe-area-inset-right));
}

/* HERO COPY TOGGLE (force) */
.hero-copy--mobile { display: none !important; }
.hero-copy--desktop { display: block !important; }

@media (max-width: 767px) {
  .hero-copy--mobile { display: block !important; }
  .hero-copy--desktop { display: none !important; }
}

.hero-mission {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  margin-bottom: 0.0rem;
}

.hero-content h2 {
  margin-top: 0.0rem;
  margin-bottom: 0.0rem;
}

.hero-mission {
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.tour-rating {
    text-align: center;

  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #2c3e50;
}

.rating-star {
  color: #C62828;
  margin-right: 2px;
}

.rating-sep {
  margin: 0 6px;
  color: #999;
}

.tour-card h2 {
    line-height: 1.15;
 text-align: center;
 margin-bottom: 0.2rem;
}

.tour-card .description {
    text-wrap: pretty;
}

.tour-hook { margin: 0.8rem 0 0.0rem 0; color: #2c3e50;;   font-family: "FuturaXB", Arial, sans-serif; text-align: center; }
.tour-bullets { margin: 0 0 1rem 1.1rem; padding: 0; color: #555; list-style: none;
}
.tour-bullets li { margin: 0.25rem 0; line-height: 1.6rem; font-weight: 500;3}

/* --- Blackbeard card: Runs full-width + 2 centered items below --- */
.tour-details.tour-details--triangle{
  /* override the default 3-col grid */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  min-height: auto; /* optional: avoid the 90px min-height forcing weird spacing */
}

/* Runs row = full width */
.tour-details--triangle .tour-detail--runs{
  width: 100%;
  text-align: center;
}

.tour-details--triangle .tour-detail--runs .tour-detail-value{
  width: 100%;
  text-align: center;
  line-height: 1.25;
}

/* Bottom row = 2 columns, centered */
.tour-details--triangle .tour-details-bottom{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.tour-details--triangle .tour-details-bottom .tour-detail{
  width: 100%;
  text-align: center;
}

/* Small screens: stack Duration/Price if needed */
@media (max-width: 420px){
  .tour-details--triangle .tour-details-bottom{
    grid-template-columns: 1fr;
  }
}


.tour-detail-label {
  font-family: 'YourFuturaFont', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-details--triangle 
.tour-details-bottom 
.tour-detail:first-child 
.tour-detail-value {
  margin-top: 0.2rem;   /* reduce gap */
}

.tour-features {
  list-style: none;
  padding: 0;
  text-align: center;
}

.tour-features li {
  margin-bottom: 0.5rem;
}

/* Blackbeard card bullets (tour-bullets) — centred block + tighter rhythm */
.tour-summary .tour-bullets{
  max-width: 320px;        /* controls the column width */
  margin: 0.5rem auto 0;   /* centres the block */
  padding: 0;
  list-style-position: inside;
  text-align: center;
}

.tour-summary .tour-bullets li{
  margin: 0.22rem 0;       /* tight vertical spacing */
  line-height: 1.22;       /* tight wrap spacing */
}

/* ===== TOUR PAGE BRAND ALIGNMENT PATCH ===== */

/* 1) Give tour pages the same base vibe as homepage */
body.tour-page{
  background-color: #0f172a; /* already used site-wide */
  color: #f2f2df;
}

/* 2) Stop the “striped black bands” look */
body.tour-page .tour-page-content,
body.tour-page .itinerary-section,
body.tour-page .faq-section,
body.tour-page .reviews-section,
body.tour-page .tour-info-section{
  background: transparent;
  padding: 0rem 0;
}

/* 3) Use one consistent ‘cream card’ surface */
body.tour-page .tour-highlights-list,
body.tour-page .tour-description-card,
body.tour-page .fh-card,
body.tour-page .itinerary-item,
body.tour-page .faq-item,
body.tour-page .tour-card-info,
body.tour-page .map-container,
body.tour-page .tripadvisor-widget{
  background: #f2f2df;
  color: #2c3e50;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* 4) Make section titles match the homepage tone */
body.tour-page .tour-section-title{
  color: #f2f2df;
  letter-spacing: 0.02em;
}

/* 5) CTA: make it feel like your homepage red CTA (not giant gradient) */
body.tour-page .cta-button{
  font-size: 1.25rem;          /* was 3rem */
  max-width: 520px;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  background: #C62828;         /* matches homepage CTA */
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

body.tour-page .cta-button:hover{
  transform: translateY(-2px);
  background: #b11f1f;
}

/* 6) Sticky CTA section: same background as site, subtle separator */
body.tour-page .top-cta-section{
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);

}

/* 7) Accordion headers: calmer, more “site” */
body.tour-page .itinerary-header,
body.tour-page .faq-question{
  background: transparent;
}

body.tour-page .itinerary-header[aria-expanded="true"]{
  background: #C62828;
  color: #fff;
}

body.tour-page .faq-question[aria-expanded="true"]{
  background: rgba(198, 40, 40, 0.12);
  color: #C62828;
}

./* Make the FAQ master button look like the filter trigger */
.faq-expand-button.filter-trigger{
  background-color: #C62828;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
text-align: center;
}

/* Optional: keep the +/- icon behavior if you want it */
.faq-expand-icon::before { content: "+"; }
.faq-expand-button[aria-expanded="true"] .faq-expand-icon::before { content: "−"; }

/* FAQ master button should use Filter Trigger styling */
.faq-expand-button.filter-trigger{
  background: #C62828;   /* override any gradient */
  color: #ffffff;
text-align: center;

}

/* Keep the + / − indicator on the master button */
.faq-expand-icon::before { content: "+"; }
.faq-expand-button[aria-expanded="true"] .faq-expand-icon::before { content: "−"; }

}

.results-actions {
  display: none;              /* stays hidden until JS activates it */
  text-align: center;         /* centers inline content */
  margin: 2.5rem 0;           /* space above & below */
}

.results-actions .all-tours-link {
  margin: 0 auto;             /* ensures centering if button becomes block */
}

.results-actions .all-tours-link {
  display: inline-block !important;
  width: auto !important;
}

/* Center the dark ink title badge */
.tour-highlights-list { 
  text-align: center; 
}

/* Make the H2 a centered, size-to-content badge */
.tour-section-titledrk{
  font-family: "FuturaXB", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 2rem);

  background: #0f172a;
  color: #f2f2df;

  padding: 0.75rem 1rem;
  border-radius: 10px;

  display: inline-block;   /* allows centering via parent text-align */
  margin: 0 auto 1rem;
  letter-spacing: 0.02em;
}

/* Keep the UL content left-aligned (so bullets/lines look right) */
.tour-highlights-list ul{
  text-align: left;
}

//* ===== Reviews & Accolades – Minimal Version ===== */

body.tour-page .reviews-accolades{
  padding: 2rem 0 2.5rem;
}

body.tour-page .reviews-accolades__inner{
  width: min(850px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* Custom font */
body.tour-page .reviews-accolades,
body.tour-page .reviews-accolades strong{
  font-family: "FuturaXB", Arial, sans-serif;
}

/* Cream text */
body.tour-page .reviews-accolades{
  color: #f2f2df;
}

body.tour-page .reviews-accolades .star{
  color: #C62828;
  font-size: 1.35rem;   /* increased size */
  line-height: 1;
  display: inline-block;
  transform: translateY(1px); /* slight alignment tweak */
  margin-right: .4rem;
}

/* Subtitle */
body.tour-page .reviews-accolades__sub{
  margin-top: .5rem;
  opacity: 0.95;
}

/* Platform list */
body.tour-page .reviews-accolades__platforms{
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

body.tour-page .reviews-accolades__platforms li{
  padding: .3rem 0;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

/* Total reviews */
body.tour-page .reviews-accolades__total{
  margin-top: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Press section */
body.tour-page .reviews-accolades__press{
  margin-top: 1.5rem;
  font-size: 1rem;
}

body.tour-page .reviews-accolades__press p{
  margin: .35rem 0;
}

body.tour-page .reviews-accolades{
  font-weight: 400;  /* or 500 if your font runs light */
}

body.tour-page .reviews-accolades__total{
  margin-top: 1.4rem;
  font-size: 1.25rem;
  font-weight: 600;
}

body.tour-page .reviews-accolades__total{
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;   /* subtle tracking */
}

body.tour-page .reviews-accolades .star{
  color: #C62828;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  margin-right: .4rem;

  text-shadow:
    0 0 1px #ffffff,
    0 0 2px #ffffff;
}

body.tour-page .reviews-accolades{
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Centered Tour Media Sections (prevents clipping) ===== */

.tour-media{
  padding: 1.75rem 0;
}

.tour-media__inner{
  width: min(1000px, calc(100% - 2rem)); /* keeps breathing room */
  margin: 0 auto;
}

.tour-feature-image{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;

  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Mobile: tighter side padding so it never kisses the viewport edge */
@media (max-width: 768px){
  .tour-media__inner{
    width: calc(100% - 1.5rem);
  }
  .tour-feature-image{
    border-radius: 14px;
  }
}

/* ===== Itinerary & FAQ Buttons – Match Book Now ===== */

.itinerary-expand-button,
.faq-expand-button {

  font-family: "FuturaXB", Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  background: #C62828;
  color: #ffffff;

  border: none;
  border-radius: 50px;

  padding: 0.9rem 2rem;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;

  min-width: 280px;
}

/* Hover */
.itinerary-expand-button:hover,
.faq-expand-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  background: #b71c1c; /* slightly darker red */
}

/* Expanded state */
.itinerary-expand-button[aria-expanded="true"],
.faq-expand-button[aria-expanded="true"] {
  background: #9f1919;
}

   Other Tours (JS)
================================ */

.other-tours-section {
  padding: 3rem 0;
}

.other-tours-grid {
  width: min(1100px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.other-tour-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.other-tour-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.other-tour-body {
  padding: 1.25rem;
}

.other-tour-body h3 {
  margin: 0 0 0.6rem 0;
  color: #111;
}

.other-tour-body p {
  margin: 0 0 1rem 0;
  color: #333;
  line-height: 1.5;
}

.tripadvisor-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tripadvisor-widget {
  display: flex;
  justify-content: center;
  align-items: center;
}


.section-image--medium {
  width: min(92%, 720px);
  margin: 1rem auto;
  border-radius: 16px;
}

.section-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.booking-section {
  padding: 0.1rem 0;
}

.booking-container {
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.booking-intro {
  margin: 0.25rem auto 1.25rem;
  opacity: 1;
color: white;
}

/* Fix View Tour button inside Other Tours cards */
.other-tour-card .cta-button {
  width: 100%;
  max-width: 100%;
  min-width: 0;      /* kills the 300px rule */
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
}