/* ===================================
   RESPONSIVE STYLES
   Mobile-first approach with breakpoints
   =================================== */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .container-wide {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 5rem;
    }

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

/* Tablet and Below (1024px) */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
        --navbar-height: 70px;
        --scroll-offset: 90px;
    }

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

    .hero-title {
        font-size: 4rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .about-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        max-height: 350px;
        border-radius: var(--radius-md);
    }

    .about-image img {
        max-height: 350px;
        object-fit: cover;
    }

    .about-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .btn-text {
        padding: 0.625rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .contact-info {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

/* Tablet Portrait (768px) */
@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
        --navbar-height: 70px;
        --scroll-offset: 90px;
    }

    html {
        font-size: 15px;
    }

    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    /* Ensure all sections have scroll-margin for anchor links */
    section,
    section[id],
    .trust-banner,
    .tours-section,
    .calculator-section,
    .impact-section,
    .why-us-section,
    .about-preview,
    .testimonials-section,
    .contact-section {
        scroll-margin-top: var(--scroll-offset);
    }

    /* Section spacing - prevent cramped layout */
    .tours-section,
    .calculator-section,
    .impact-section,
    .why-us-section,
    .about-preview,
    .testimonials-section,
    .contact-section {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 1.5rem;
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .calculator-intro {
        padding: 0 var(--spacing-sm);
    }

    /* Tours */
    .tours-section {
        padding: var(--spacing-lg) 0;
        overflow: visible;
        min-height: 600px;
    }

    .tours-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .tour-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .tour-image {
        height: 250px;
        flex-shrink: 0;
    }

    .tour-content {
        padding: 1.5rem;
        flex: 1;
    }

    .tour-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .tour-footer .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Calculator */
    .calculator-tool {
        padding: var(--spacing-md);
    }

    .impact-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-item {
        padding: 1rem;
    }

    /* Stories */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Transparency */
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .percentage {
        font-size: 3rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1.125rem;
    }

    .testimonials-slider {
        min-height: 400px;
    }

    /* Contact Form */
    .contact-form {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
    }

    .contact-form button[type="submit"] {
        min-height: 54px;
        font-size: 1.0625rem;
    }

    /* Transparency grid stacking */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA buttons stacking */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Partnership Page */
    .partnership-form {
        padding: var(--spacing-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .involvement-grid,
    .success-stories {
        grid-template-columns: 1fr;
    }

    .involvement-card .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Direct Contribution Section */
    .contribution-box {
        padding: var(--spacing-md);
    }

    .contribution-title {
        font-size: 1.75rem;
    }

    .contribution-icon {
        font-size: 3rem;
    }

    /* Footer */
    .footer {
        overflow: visible;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid .footer-col:first-child {
        grid-column: auto;
    }

    .footer-col a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 0;
        position: relative;
        z-index: 2;
    }

    .footer-col li {
        margin-bottom: 0.25rem;
    }

    .footer-social a {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-legal a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0;
    }

    .footer-support-cta {
        padding: var(--spacing-md);
        overflow: visible;
    }

    .footer-support-cta .btn-primary {
        min-height: 54px;
        position: relative;
        z-index: 2;
    }

    .support-cta-title {
        font-size: 1.75rem;
    }

    .support-cta-text {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Large (480px) */
@media screen and (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
        --navbar-height: 65px;
        --scroll-offset: 85px;
    }

    html {
        font-size: 14px;
    }

    body {
        font-size: 16px; /* Minimum for iOS readability */
        line-height: 1.6;
    }

    .container,
    .container-wide {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .nav-logo .logo-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    /* Hero */
    .hero {
        min-height: 550px;
        padding-top: calc(var(--navbar-height) + 40px);
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Trust Banner */
    .trust-text {
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-tag {
        font-size: 0.75rem;
    }

    .form-intro h2 {
        font-size: 2rem;
    }

    .form-intro p {
        font-size: 1rem;
    }

    .partnership-form .btn-large {
        width: 100%;
    }

    /* Tour Cards */
    .tours-section {
        padding: var(--spacing-md) 0;
        overflow: visible !important;
        min-height: 500px;
        display: block !important;
    }

    .tours-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100%;
    }

    .tour-card {
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden;
        min-height: 450px;
    }

    .tour-image {
        height: 220px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .tour-content {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .tour-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .tour-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        flex: 1;
    }

    .tour-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        margin-top: auto;
    }

    .tour-footer .btn-outline {
        width: 100%;
        padding: 0.875rem 1.5rem;
        text-align: center;
        display: block;
    }

    .tour-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    /* Calculator */
    .impact-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-select {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 0.875rem 1rem;
        min-height: 48px;
    }

    .impact-amount {
        font-size: 2rem;
    }

    .results-title {
        font-size: 1.25rem;
    }

    /* Metrics grid stacking */
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .metric-card {
        padding: 0.875rem;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    .metric-label {
        font-size: 0.875rem;
    }

    /* Stories (index page story cards only) */
    .story-card .story-image {
        height: 250px;
    }

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

    .story-name {
        font-size: 1.25rem;
    }

    /* Transparency */
    .transparency-section {
        padding: var(--spacing-md);
    }

    .transparency-title {
        font-size: 1.5rem;
    }

    .transparency-item {
        padding: 1.5rem;
    }

    .percentage {
        font-size: 2.5rem;
    }

    .percentage-label {
        font-size: 1.125rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    /* About */
    .about-content-grid {
        gap: 1.5rem;
    }

    .about-image {
        max-height: 280px;
    }

    .about-image img {
        max-height: 280px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .about-cta .btn-primary {
        text-align: center;
        justify-content: center;
    }

    .about-cta .btn-text {
        text-align: center;
        justify-content: center;
        padding: 0.75rem 0;
    }

    /* Testimonials */
    .testimonials-slider {
        min-height: 450px;
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    /* Contact */
    .contact-details {
        gap: 1rem;
    }

    .contact-icon {
        font-size: 1.25rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .contact-form button {
        padding: 1rem;
        min-height: 54px;
        font-size: 1rem;
    }

    /* Form inputs - ensure 16px to prevent iOS zoom */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        min-height: 48px;
    }

    /* Contribution Section Mobile */
    .contribution-box {
        padding: 1.5rem;
    }

    .contribution-title {
        font-size: 1.5rem;
    }

    .contribution-description {
        font-size: 1rem;
    }

    .contribution-icon {
        font-size: 2.5rem;
    }

    .contribution-options {
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .support-cta-title {
        font-size: 1.5rem;
    }

    .support-cta-text {
        font-size: 0.9375rem;
    }

    .footer-logo .logo-text {
        font-size: 1.75rem;
    }

    .footer-tagline {
        font-size: 0.9375rem;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-col h4 {
        font-size: 0.9375rem;
    }
}

/* Mobile Medium (414px) */
@media screen and (max-width: 414px) {
    :root {
        --navbar-height: 60px;
        --scroll-offset: 80px;
    }

    .container,
    .container-wide {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

/* Small Mobile (375px) */
@media screen and (max-width: 375px) {
    :root {
        --navbar-height: 60px;
        --scroll-offset: 80px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

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

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }

    .impact-items {
        gap: 0.75rem;
    }

    .calculator-tool {
        padding: 1rem;
    }

    .nav-logo .logo-text {
        font-size: 1.375rem;
    }
}

/* Extra Small Mobile (320px) */
@media screen and (max-width: 320px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.25rem;
        --spacing-md: 0.875rem;
        --navbar-height: 60px;
        --scroll-offset: 75px;
    }

    html {
        font-size: 14px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .nav-logo .logo-text {
        font-size: 1.25rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .tour-content,
    .story-card .story-content {
        padding: 1.25rem;
    }

    .impact-icon-large {
        font-size: 2.5rem;
    }

    .impact-amount {
        font-size: 1.75rem;
    }
}

/* Landscape Orientation (for tablets in landscape) */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
        padding-top: 70px;
    }

    .hero-stats {
        margin-top: 1.5rem;
        padding: 1rem;
        gap: 1.5rem;
    }

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

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

/* Prevent horizontal scroll on all devices */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    *:not(a):not(button):not(input):not(select):not(textarea) {
        max-width: 100vw;
    }

    .container,
    .container-wide {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero,
    .calculator-section,
    .impact-section,
    .why-us-section,
    .about-preview,
    .testimonials-section,
    .contact-section,
    .trust-banner,
    .page-hero,
    .blog-hero {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .footer {
        overflow: visible;
        max-width: 100vw;
    }

    .tours-section {
        overflow: visible;
        width: 100%;
        max-width: 100vw;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .tour-card,
    .story-card,
    .feature-card,
    .testimonial-card,
    .transparency-item,
    .metric-card,
    .impact-item,
    .contribution-box {
        max-width: 100%;
    }

    /* Prevent images from causing overflow */
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }

    /* Prevent tables from causing overflow */
    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .scroll-indicator,
    .calculator-section,
    .contact-form,
    .footer-social,
    .testimonial-controls {
        display: none;
    }

    body {
        background-color: white;
    }

    .section-title,
    .tour-title,
    .story-name {
        color: black;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .tour-image img,
    .story-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Uncomment if you want to support dark mode
    :root {
        --background-light: #1A1A1A;
        --text-dark: #FFFFFF;
        --text-medium: #CCCCCC;
        --white: #2A2A2A;
    }
    */
}

/* Accessibility - Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===================================
   MOBILE TOUCH DEVICE FIXES
   Comprehensive touch interaction support
   =================================== */

/* Global touch improvements for all clickable elements */
@media (hover: none) and (pointer: coarse) {

    /* --- TAP TARGETS: Minimum 48px for all interactive elements --- */
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-text,
    .nav-link,
    .nav-toggle,
    .social-link,
    .footer-social a,
    .footer-col a,
    .contact-item a,
    .paypal-button,
    .faq-question {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-text {
        padding: 0.5rem 0;
    }

    .footer-col a {
        display: flex;
        align-items: center;
        padding: 0.375rem 0;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .dot.active {
        width: 36px;
    }

    /* --- DISABLE HOVER TRANSFORMS: Prevent hover-blocking-tap issue --- */
    .tour-card:hover,
    .story-card:hover,
    .feature-card:hover,
    .tip-card:hover,
    .value-card:hover,
    .benefit-card:hover,
    .team-member:hover,
    .faq-item:hover,
    .blog-card:hover {
        transform: none;
    }

    .tour-card:hover .tour-image img {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover,
    .btn-text:hover {
        transform: none;
    }

    .social-link:hover,
    .footer-social a:hover,
    .footer-col a:hover {
        transform: none;
        padding-left: 0;
    }

    .testimonial-prev:hover,
    .testimonial-next:hover {
        transform: none;
    }

    /* Active states for touch feedback instead of hover */
    .btn-primary:active {
        background-color: var(--primary-dark);
        box-shadow: 0 2px 8px rgba(212, 119, 60, 0.4);
    }

    .btn-secondary:active {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .btn-outline:active {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .tour-card:active {
        box-shadow: var(--shadow-lg);
    }

    /* --- FORM ELEMENTS: Proper sizing and native behavior --- */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 48px;
        padding: 0.875rem 1rem;
    }

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

    .calculator-select {
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 52px;
    }

    /* --- OVERLAYS: Ensure they don't block clicks --- */
    .hero-overlay,
    .hero-background,
    .calculator-section::before,
    .newsletter-section::before,
    .blog-hero::before {
        pointer-events: none;
    }

    /* --- LINKS: Ensure all links are tappable --- */
    a[href],
    button {
        -webkit-tap-highlight-color: rgba(45, 122, 79, 0.2);
        touch-action: manipulation;
    }

    /* Ensure select elements work natively on mobile */
    select {
        -webkit-appearance: menulist;
        appearance: menulist;
        cursor: pointer;
    }

    /* Ensure text inputs are selectable */
    input, textarea {
        -webkit-user-select: text;
        user-select: text;
    }

    /* --- PAYPAL BUTTON: Ensure clickable --- */
    .paypal-button,
    .paypal-tour-button {
        position: relative;
        z-index: 10;
        min-height: 54px;
    }

    /* --- CALCULATOR CTA: Ensure clickable --- */
    .calculator-cta .btn-primary {
        min-height: 54px;
        position: relative;
        z-index: 10;
    }

    /* --- TOUR CARD BUTTONS: Ensure clickable --- */
    .tour-footer .btn-outline {
        position: relative;
        z-index: 10;
        min-height: 48px;
    }

    /* --- TRANSPARENCY CTA BUTTONS --- */
    .cta-buttons a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
}

/* Container Query Support (for future) */
@supports (container-type: inline-size) {
    .tour-card {
        container-type: inline-size;
    }
}
