:root {
    --navy-blue: #003366;
    --forest-green: #228B22;
    --sand-beige: #F5DEB3;
    --dark-tan: #CAA56E;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --shadow: rgba(0, 51, 102, 0.1);
    --shadow-md: rgba(0, 51, 102, 0.15);
    --shadow-lg: rgba(0, 51, 102, 0.25);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative; /* needed for absolutely-positioned children if any */
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

.nav-menu a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-menu a.cta-button {
    background: var(--forest-green);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-menu a.cta-button:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(34, 139, 34, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 130px 20px 0; /* top padding offsets the fixed navbar */
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.slideshow-controls button {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--forest-green);
    color: white;
    border-color: var(--forest-green);
}

.btn-primary:hover {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-blue);
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: white;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--dark-tan));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin-top: 20px;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-md);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.about-card p {
    color: #666;
    line-height: 1.7;
}

.about-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.description-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.description-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.description-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-md);
}

/* Upcoming Tours Section */
.upcoming-section {
    background: white;
}

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

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px var(--shadow-md);
}

.tour-card.featured {
    border: 3px solid var(--dark-tan);
}

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--forest-green);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-content {
    padding: 30px;
}

.tour-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.tour-date {
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tour-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.tour-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.tour-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
}

/* Destinations Section */
.destinations-section {
    background: var(--light-gray);
}

.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-large,
.destination-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.destination-large {
    grid-column: span 2;
    height: 400px;
}

.destination-small {
    height: 190px;
}

.destination-large:hover,
.destination-small:hover {
    transform: scale(1.02);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9), transparent);
    color: white;
    transition: all 0.3s ease;
}

.destination-overlay h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #004d99 100%);
    color: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--dark-tan);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--sand-beige);
    margin-bottom: 8px;
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--forest-green);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy-blue);
}

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

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

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.parent-company {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ddd;
}

.parent-company p {
    color: #888;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.parent-company a {
    color: var(--navy-blue);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.form-notice {
    background: var(--sand-beige);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.form-notice p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 75px;
    margin-bottom: 40px;
    display: block;
    max-width: 100%;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--sand-beige);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--dark-tan);
    padding-left: 5px;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    /* --- Navbar: slimmer on mobile --- */
    .nav-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        gap: 0;
    }

    .logo img {
        height: 56px; /* reduced from 100px */
    }

    .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        position: static;
        transform: none;
        order: 2;
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px; /* matches the slimmer navbar height */
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 30px var(--shadow);
        transition: left 0.3s ease;
        align-items: flex-start;
        order: 3;
    }

    .nav-menu.active {
        left: 0;
    }

    /* --- Hero: reduce the top padding on mobile (navbar is now ~76px tall, not 130px) --- */
    .hero-content {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .trip-hero .hero-content {
        padding-top: 200px;
        padding-bottom: 160px;
    }

    .about-description,
    .why-choose-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .destinations-showcase {
        grid-template-columns: 1fr;
    }

    .destination-large {
        grid-column: span 1;
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- Footer logo: constrain so it never causes horizontal scroll --- */
    .footer-logo img {
        height: auto;
        max-width: 220px;
        width: 100%;
        margin-bottom: 20px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .slideshow-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Prevent any element from stretching past the viewport */
    .container {
        padding: 0 16px;
    }

    /* Morocco gallery single-column */
    .morocco-gallery {
        grid-template-columns: 1fr;
    }

    /* Trip stats 2-column on small phones */
    .trip-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section padding tighten on small screens */
    section {
        padding: 64px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    /* Contact form padding */
    .contact-form-wrapper {
        padding: 24px 16px;
    }

    /* About card padding */
    .about-card {
        padding: 28px 20px;
    }

    /* Hero content top padding for very small screens */
    .hero-content {
        padding-top: 130px;
        padding-bottom: 110px;
    }
    .trip-hero .hero-content {
        padding-top: 170px;
        padding-bottom: 160px;
    }

    /* Pricing card single column */
    .pricing-grid {
        max-width: 100%;
    }
}
/* Featured Morocco Section */
.featured-morocco-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.featured-morocco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--dark-tan), var(--navy-blue));
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.featured-lead {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.featured-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px var(--shadow-md);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.featured-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* Responsive for Featured Section */
@media (max-width: 968px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-text h2 {
        font-size: 2rem;
    }

    .highlight-item:hover {
        transform: translateX(5px);
    }
}


/* === Trip Recap additions for Featured Morocco Section === */

/* Italic dates (subtitle) */
.featured-morocco-section .section-subtitle {
    font-style: italic;
    color: var(--forest-green);
    font-size: 1.25rem;
    margin-top: 25px;
}

/* Lead paragraph below the section header */
.featured-morocco-section .featured-lead {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Photo Gallery — clean 3-column strip */
.morocco-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Trip Stats banner */
.trip-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 38px 30px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #002244 100%);
    border-radius: 12px;
    margin-bottom: 70px;
    box-shadow: 0 8px 30px var(--shadow-md);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-tan);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Sub-headings inside the section (matches site h2 underline style) */
.recap-subhead {
    text-align: center;
    font-size: 1.85rem;
    color: var(--navy-blue);
    margin: 0 auto 35px;
    display: block;
    position: relative;
    padding-bottom: 14px;
    width: fit-content;
}

.recap-subhead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--dark-tan));
    border-radius: 2px;
}

/* Highlights — condensed 3-column grid */
.featured-highlights.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 80px;
}

.featured-highlights.highlights-grid .highlight-item {
    padding: 18px;
    gap: 15px;
}

.featured-highlights.highlights-grid .highlight-item:hover {
    transform: translateY(-4px);
}

.featured-highlights.highlights-grid .highlight-icon {
    font-size: 1.7rem;
}

.featured-highlights.highlights-grid .highlight-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.featured-highlights.highlights-grid .highlight-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonial Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 820px;
    margin: 0 auto 80px;
}

.testimonial-track {
    position: relative;
    min-height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 45px 55px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 30px var(--shadow);
    border-left: 4px solid var(--forest-green);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-slide::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1;
    color: var(--sand-beige);
    opacity: 0.7;
    pointer-events: none;
}

.testimonial-slide p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--navy-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .dot:hover {
    background: rgba(0, 51, 102, 0.4);
}

.testimonial-indicators .dot.active {
    background: var(--forest-green);
    width: 30px;
    border-radius: 5px;
}

/* CTA — clean and centered, no decorative card */
.recap-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.recap-cta h3 {
    font-size: 1.85rem;
    margin-bottom: 12px;
    color: var(--navy-blue);
}

.recap-cta p {
    color: #555;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

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

/* === Responsive === */
@media (max-width: 968px) {
    .morocco-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }

    .trip-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 35px 20px;
    }

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

    .featured-highlights.highlights-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-track {
        min-height: 400px;
    }

    .testimonial-slide {
        padding: 35px 30px 28px;
    }

    .recap-subhead {
        font-size: 1.55rem;
    }

    .recap-cta h3 {
        font-size: 1.5rem;
    }

    /* Prevent any wide element from causing horizontal scroll */
    .featured-morocco-section,
    .upcoming-section,
    .about-section,
    .why-choose-section,
    .contact-section,
    .footer,
    .booking-section {
        overflow-x: hidden;
    }
}

@media (max-width: 540px) {
    .testimonial-track {
        min-height: 460px;
    }

    .testimonial-slide::before {
        font-size: 3.5rem;
    }
}


/* ============================================================
   ITALY & TUNISIA TRIP PAGE STYLES
   ============================================================ */

/* --- Nav: back-to-home button --- */
.nav-home-btn {
    background: transparent !important;
    color: var(--navy-blue) !important;
    border: 2px solid var(--navy-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-home-btn:hover {
    background: var(--navy-blue) !important;
    color: white !important;
    transform: translateY(-2px);
}

.nav-home-btn::after { display: none !important; }

/* --- Nav: standout trip button (homepage) --- */
.nav-trip-btn {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #004d99 100%) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-trip-btn:hover {
    background: linear-gradient(135deg, var(--forest-green) 0%, #1a6b1a 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-md);
}

.nav-trip-btn::after { display: none !important; }

/* ================= HERO ================= */
.trip-hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
}

.trip-hero-slideshow {
    position: absolute;
    inset: 0;
}

.trip-hero .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.trip-hero .slide.active { opacity: 1; }

.trip-hero .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.78) 0%, rgba(0, 51, 102, 0.62) 55%, rgba(34, 139, 34, 0.48) 100%);
}

.trip-hero .hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 130px 20px 80px; /* top clears navbar, bottom clears indicators */
}

.trip-hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand-beige);
    margin-bottom: 18px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out;
}

.trip-hero .hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: white;
    margin-bottom: 22px;
    animation: fadeInUp 1s ease-out 0.15s backwards;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.45);
    line-height: 1.15;
}

.trip-hero .hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    margin-bottom: 38px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.03em;
}

.trip-hero .slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.trip-hero .slideshow-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

/* ================= SHARED TRIP SECTION RHYTHM ================= */
.trip-section {
    padding: 80px 0;
}

.trip-section.tight { padding: 64px 0; }
.trip-section.alt   { background: var(--light-gray); }

.trip-lead {
    max-width: 840px;
    margin: 0 auto 44px;
    text-align: center;
    font-size: 1.12rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* ================= TRIP HIGHLIGHTS ================= */
.trip-stats {
    margin-bottom: 50px;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.trip-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trip-pillars-grid .about-card {
    padding: 32px 24px;
}

.trip-pillars-grid .about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.trip-pillars-grid .about-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #5a5a5a;
}

.trip-pillars-grid .card-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

/* ================= GOLF COURSES ================= */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px var(--shadow-md);
}

.course-photo {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-flag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 51, 102, 0.92);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.course-body {
    padding: 26px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--navy-blue);
}

.course-spec {
    font-size: 0.88rem;
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.course-body p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
}

.golf-note {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 26px 30px;
    background: white;
    border-left: 4px solid var(--forest-green);
    border-radius: 10px;
    box-shadow: 0 3px 18px var(--shadow);
}

.golf-note p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
}

.golf-note strong { color: var(--navy-blue); }

/* ================= HOST ================= */
.host-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #004a94 100%);
    color: white;
    padding: 76px 0;
}

.host-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.host-photo img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    display: block;
}

.host-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand-beige);
    font-weight: 600;
    margin-bottom: 12px;
}

.host-text h2 {
    color: white;
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin-bottom: 18px;
}

.host-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.host-text p:last-child { margin-bottom: 0; }

.host-text strong { color: var(--sand-beige); }

/* ================= ITINERARY ================= */
.leg-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto 40px;
    padding: 22px 32px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #003d7a 100%);
    border-radius: 12px;
    max-width: 860px;
    box-shadow: 0 6px 26px var(--shadow-md);
}

.leg-banner h3 {
    color: white;
    font-size: 1.6rem;
    margin: 0;
}

.leg-banner .leg-meta {
    color: var(--sand-beige);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 18px;
}

.itinerary-timeline {
    max-width: 860px;
    margin: 0 auto 60px;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 26px;
    width: 2px;
    background: linear-gradient(to bottom, var(--forest-green), var(--dark-tan));
    z-index: 0;
}

.itinerary-day {
    display: flex;
    gap: 26px;
    margin-bottom: 22px;
    position: relative;
}

.day-marker {
    flex-shrink: 0;
    width: 54px;
    position: relative;
    z-index: 3;
    padding-top: 22px;
}

.day-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: var(--navy-blue);
    color: white;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    border: 4px solid var(--white);
    box-shadow: 0 3px 14px var(--shadow-md);
}

.trip-section.alt .day-number {
    border-color: var(--light-gray);
}

.day-content {
    flex: 1;
    background: white;
    padding: 24px 30px 26px;
    border-radius: 12px;
    box-shadow: 0 3px 18px var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-width: 0;
}

.day-content:hover {
    box-shadow: 0 8px 30px var(--shadow-md);
    transform: translateY(-2px);
}

.day-date {
    display: block;
    font-size: 0.82rem;
    color: var(--forest-green);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.day-content h4 {
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.day-content > p {
    color: #4f4f4f;
    line-height: 1.72;
    font-size: 1rem;
    margin-bottom: 10px;
}

.day-content > p:last-child { margin-bottom: 0; }

.day-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    vertical-align: middle;
    margin-left: 4px;
}

.day-tag.all-group {
    background: rgba(34, 139, 34, 0.14);
    color: #1a6b1a;
}

.day-tag.golfers {
    background: rgba(0, 51, 102, 0.12);
    color: var(--navy-blue);
}

.day-tag.non-golfers {
    background: rgba(180, 130, 50, 0.16);
    color: #7d5a11;
}

.day-includes {
    font-size: 0.92rem !important;
    color: #6b6b6b !important;
    border-top: 1px solid #ececec;
    padding-top: 12px;
    margin-top: 14px !important;
}

.day-includes strong { color: var(--forest-green); }

/* Split (golf) days */
.split-activities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 14px;
}

.split-golfers,
.split-nongolfers {
    padding: 16px 18px;
    border-radius: 9px;
}

.split-golfers {
    background: rgba(0, 51, 102, 0.05);
    border-left: 3px solid var(--navy-blue);
}

.split-nongolfers {
    background: rgba(202, 165, 110, 0.13);
    border-left: 3px solid var(--dark-tan);
}

.split-activities .day-tag {
    margin: 0 0 9px 0;
    display: inline-block;
}

.split-activities p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #4f4f4f;
    margin: 0;
}

/* ================= WHAT'S INCLUDED ================= */
.included-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 14px var(--shadow);
    transition: all 0.3s ease;
}

.included-item:hover {
    box-shadow: 0 6px 24px var(--shadow-md);
    transform: translateY(-3px);
}

.included-icon {
    font-size: 1.45rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.included-item p {
    color: #4f4f4f;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.included-item strong { color: var(--navy-blue); }

/* ================= HOTELS ================= */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hotel-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px var(--shadow-md);
}

.hotel-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-location-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 51, 102, 0.92);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hotel-info {
    padding: 26px;
    flex: 1;
}

.hotel-info h3 {
    font-size: 1.35rem;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.hotel-meta {
    color: var(--forest-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.hotel-info > p:last-child {
    color: #555;
    line-height: 1.7;
    font-size: 0.99rem;
}

/* ================= PRICING (2 columns) ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto 36px;
}

.pricing-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 42px 32px 36px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 38px var(--shadow-md);
}

.pricing-card.featured-price {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
    color: white;
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest-green);
    color: white;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.pricing-card.featured-price .pricing-header h3 { color: white; }

.pricing-header p {
    color: #777;
    font-size: 0.95rem;
}

.pricing-card.featured-price .pricing-header p { color: rgba(255, 255, 255, 0.75); }

.pricing-amount {
    padding: 26px 0;
    border-bottom: 1px solid #ededed;
    margin-bottom: 24px;
}

.pricing-card.featured-price .pricing-amount { border-color: rgba(255, 255, 255, 0.18); }

.price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card.featured-price .price { color: var(--sand-beige); }

.price-note {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.03em;
}

.pricing-card.featured-price .price-note { color: rgba(255, 255, 255, 0.7); }

.pricing-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    padding: 9px 0 9px 26px;
    position: relative;
    color: #4f4f4f;
    font-size: 0.99rem;
    line-height: 1.55;
}

.pricing-card.featured-price .pricing-features li { color: rgba(255, 255, 255, 0.9); }

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--forest-green);
    font-weight: bold;
}

.pricing-card.featured-price .pricing-features li::before { color: var(--sand-beige); }

.pricing-supplement {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 26px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 18px var(--shadow);
}

.pricing-supplement p {
    color: #4f4f4f;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 10px;
}

.pricing-supplement p:last-child { margin-bottom: 0; }

.pricing-supplement strong { color: var(--navy-blue); }

.pricing-note {
    font-size: 0.95rem;
    color: var(--forest-green) !important;
    font-weight: 600;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-tile {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
    aspect-ratio: 4 / 3;
    position: relative;
}

.gallery-tile.wide {
    grid-column: span 2;
    aspect-ratio: 8 / 3;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-tile:hover img { transform: scale(1.06); }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 18px 14px;
    background: linear-gradient(to top, rgba(0, 40, 80, 0.88), transparent);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ================= TRANSITION STRIP ================= */
.trip-transition {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #004d99 100%);
    padding: 48px 0;
    text-align: center;
}

.transition-content {
    max-width: 640px;
    margin: 0 auto;
}

.transition-icon {
    font-size: 2.1rem;
    display: block;
    margin-bottom: 12px;
}

.trip-transition h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.trip-transition p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ================= BOOKING ================= */
.booking-section { background: var(--light-gray); padding: 84px 0; }

.booking-highlight {
    max-width: 860px;
    margin: 0 auto 44px;
    padding: 28px 34px;
    background: white;
    border-left: 4px solid var(--forest-green);
    border-radius: 10px;
    box-shadow: 0 3px 18px var(--shadow);
    text-align: center;
}

.booking-highlight p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0;
}

.booking-highlight strong { color: var(--navy-blue); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .trip-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid,
    .hotels-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 968px) {
    .trip-section { padding: 64px 0; }
    .trip-section.tight { padding: 52px 0; }

    .host-wrap { grid-template-columns: 1fr; gap: 32px; }

    .included-columns { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-card.featured-price { order: -1; }

    .split-activities { grid-template-columns: 1fr; gap: 14px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-tile.wide { grid-column: span 2; aspect-ratio: 16 / 9; }

    .leg-banner { flex-direction: column; gap: 8px; padding: 20px 24px; }
    .leg-banner .leg-meta { border-left: none; padding-left: 0; }

    .nav-trip-btn,
    .nav-home-btn { font-size: 0.85rem !important; padding: 8px 18px; }

    /* Itinerary timeline — ensure it never bleeds past viewport */
    .itinerary-timeline { max-width: 100%; overflow-x: hidden; }

    /* Courses / hotels single-column */
    .courses-grid,
    .hotels-grid { max-width: 100%; }

    /* Booking section contact wrapper */
    .booking-section .contact-wrapper { gap: 36px; }
}

@media (max-width: 620px) {
    .trip-hero { height: 82vh; min-height: 520px; }

    /* Mobile nav menu offset matches slimmer navbar (~76px) */
    .nav-menu { top: 76px; }

    .itinerary-timeline::before { left: 21px; }

    .itinerary-day { gap: 16px; }

    .day-marker { width: 44px; padding-top: 20px; }

    .day-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-width: 3px;
    }

    .day-content { padding: 20px 16px 22px; }
    .day-content h4 { font-size: 1.12rem; }

    .trip-pillars-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-tile.wide { grid-column: span 1; aspect-ratio: 4 / 3; }

    .price { font-size: 2.3rem; }

    .trip-lead { font-size: 1.05rem; }

    /* Pricing card full-width on small phones */
    .pricing-grid { max-width: 100%; }
    .pricing-card { padding: 36px 22px 28px; }

    /* Golf note and booking highlight padding */
    .golf-note,
    .booking-highlight { padding: 20px 18px; }

    /* Host section padding */
    .host-section { padding: 52px 0; }
    .host-text h2 { font-size: 1.7rem; }

    /* Transition strip */
    .trip-transition { padding: 36px 0; }
    .trip-transition h2 { font-size: 1.5rem; }

    /* Leg banner compact */
    .leg-banner { padding: 16px 18px; }
    .leg-banner h3 { font-size: 1.35rem; }

    /* Section headers on small phones */
    .section-subtitle { font-size: 1rem; }

    /* Included items */
    .included-item { padding: 16px; }

}

/* Destination tiles used as links */
a.destination-small,
a.destination-large {
    display: block;
    text-decoration: none;
}

/* Nav breathing room between mobile breakpoint and desktop */
@media (min-width: 969px) and (max-width: 1240px) {
    .nav-menu { gap: 20px; }
    .nav-menu a { font-size: 0.86rem; }
    .nav-menu a.cta-button { padding: 9px 18px; }
    .nav-trip-btn { font-size: 0.82rem !important; padding: 9px 16px; }
    .nav-home-btn { font-size: 0.8rem !important; padding: 8px 14px; }
    .logo img { height: 76px; }
}

/* Readability pass: raise smallest label/badge type */
.day-tag { font-size: 0.78rem; }
.course-flag,
.hotel-location-tag { font-size: 0.82rem; }
.testimonial-slide cite { font-size: 0.85rem; }
.stat-label { font-size: 0.85rem; letter-spacing: 0.1em; }
.tour-badge { font-size: 0.92rem; }
.day-date { font-size: 0.84rem; }