/* ================================
   BLOOMING TOURS - COMPLETE CSS
   All pages fully styled
   ================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-logo-height: 70px;
    --nav-padding-y: 1rem;
    --nav-height: calc(var(--nav-logo-height) + 2 * var(--nav-padding-y));
    /* Organic Flow Color Palette */
    --primary-orange: #F5A962;
    --dark-brown: #2C1810;
    --light-cream: #FFF8F0;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --warm-beige: #E8DFD4;
    --soft-green: #8B9E7D;

    /* Organic Flow Typography - Warm & Authentic */
    --heading-font: 'Libre Baskerville', Baskerville, Georgia, serif;
    --body-font: 'Nunito', Verdana, -apple-system, system-ui, sans-serif;

    /* Spacing System - Organic Rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;

    /* Border Radius - Soft & Natural */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows - Soft & Organic */
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.12);
    --shadow-strong: 0 12px 40px rgba(44, 24, 16, 0.16);

    /* Variable Aliases */
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --cream-bg: #FFF8F0;
    --primary-orange-dark: #D4894E;
    --font-heading: 'Libre Baskerville', Baskerville, Georgia, serif;
    --font-body: 'Nunito', Verdana, -apple-system, system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: var(--nav-height);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== WCAG 2.2 AA ACCESSIBILITY ========== */

/* Skip Link - Enhanced */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--dark-brown);
    color: var(--light-cream);
    padding: 1rem 2rem;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Focus Indicators - WCAG 2.4.13 */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== BREADCRUMBS ========== */
.breadcrumb-nav {
    padding: 1rem 0;
    background: rgba(255, 248, 240, 0.6);
    position: relative;
    z-index: 1;
}

.breadcrumb-nav .container {
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-item.active {
    color: var(--dark-brown);
    font-weight: 600;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-gray);
    opacity: 0.5;
}

/* ========== 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 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: box-shadow 0.3s, transform 0.35s ease;
}

/* Auto-hide navbar on mobile scroll down, reveal on scroll up */
@media (max-width: 968px) {
    .navbar.nav-hidden {
        transform: translateY(-100%);
    }
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--nav-padding-y) 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: var(--nav-logo-height);
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-gray);
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-orange);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 169, 98, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    transition: transform 0.3s ease, opacity 0.2s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
/* ========== ORGANIC FLOW BUTTONS ========== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-brown);
    color: var(--light-cream);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    min-height: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #3d2418;
    box-shadow: var(--shadow-medium);
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.85;
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--dark-brown);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    min-height: 50px;
    border: 2.5px solid var(--dark-brown);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--dark-brown);
    color: var(--light-cream);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    min-height: 56px;
}

/* ========== HOME PAGE ========== */
.hero-home {
    /* Background with warm overlay for text readability */
    background:
        linear-gradient(135deg,
            rgba(74, 52, 40, 0.65) 0%,
            rgba(245, 169, 98, 0.45) 50%,
            rgba(74, 52, 40, 0.55) 100%
        ),
        url('../images/bg-hero-temple.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 200px);
}

.hero-left {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: rgba(255, 248, 240, 0.96);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 4px 0 30px rgba(44, 24, 16, 0.15);
}

/* Language Badge */
.hero-lang-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(44, 24, 16, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    width: fit-content;
}

.lang-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-options {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-brown);
}

/* Hero Title - Enhanced */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--dark-brown);
    line-height: 1.1;
    margin: 0;
}

.title-accent {
    color: var(--primary-orange);
}

/* Hero Tagline Text */
.hero-tagline-text {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gray);
    margin: 0;
}

/* Hero Description */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* Trust Bar - Horizontal Chips */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-brown);
    box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
    border: 1px solid rgba(245, 169, 98, 0.2);
}

.trust-chip .trust-icon {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
}

/* Hero CTA */
.hero-cta {
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1400&q=85') center/cover no-repeat;
    background-position: center center;
}

/* ========== AGODA BADGE ========== */
.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.badge-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #FFD700 0%, #F5A962 50%, #FFA500 100%);
    border-radius: 50%;
    border: 5px solid var(--dark-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: var(--shadow-medium);
    transition: box-shadow 0.3s ease;
}

.badge-circle:hover {
    box-shadow: var(--shadow-strong);
}

.badge-text {
    font-size: 0.55rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 800;
    color: var(--dark-brown);
}

.hero-tagline {
    background: rgba(44, 24, 16, 0.9);
    padding: 2.5rem;
    text-align: center;
}

.hero-tagline h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
}

.why-choose-us {
    padding: var(--space-xl) 2rem;
    background: var(--light-cream);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== ORGANIC FLOW FEATURE CARDS ========== */

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(245, 169, 98, 0.1);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    color: var(--primary-orange);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

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

.tour-overview {
    padding: var(--space-xl) 2rem;
    background: white;
    width: 100%;
}

.tour-overview .container {
    max-width: 1400px;
    margin: 0 auto;
}

.tour-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== ORGANIC FLOW TOUR CARDS ========== */

.tour-type-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-type-card:hover {
    box-shadow: var(--shadow-strong);
}

.tour-type-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.tour-day {
    background-image: url('https://images.unsplash.com/photo-1508009603885-50cf7c579365?w=1200&q=85');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.tour-multi {
    background-image: url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1200&q=85');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.tour-culinary {
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1200&q=85');
    /* Thai street food market scene */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.tour-type-content {
    padding: 2rem;
}

.tour-type-content h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.tour-type-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-orange);
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.tour-type-card:hover .link-arrow {
    transform: translateX(5px);
}

/* ========== PAGE HERO (FOR ALL INTERIOR PAGES) ========== */
.page-hero {
    background: linear-gradient(135deg, rgba(245,169,98,0.9) 0%, rgba(245,169,98,0.8) 100%),
                url('https://images.unsplash.com/photo-1563492065599-3520f775eeed?w=1600&q=80') center/cover;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--dark-brown);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== DAY TOURS PAGE ========== */
.tours-section {
    padding: var(--space-xl) 2rem;
    background: var(--light-cream);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: var(--shadow-strong);
}

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

.tour-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.tour-bangkok-img {
    background: url('https://images.unsplash.com/photo-1563492065599-3520f775eeed?w=1200&q=85') center/cover;
}

.tour-ayutthaya-img {
    background-image: url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1200&q=85');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-custom-img {
    background: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1200&q=85') center/cover;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-badge.popular {
    background: var(--dark-brown);
}

.tour-badge.custom {
    background: #4facfe;
}

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

.tour-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-card h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin: 0;
}

.tour-description {
    color: var(--text-gray);
    line-height: 1.7;
}

.tour-includes,
.tour-highlights {
    margin-top: 1rem;
}

.tour-includes h3,
.tour-highlights h3 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.tour-includes ul,
.tour-highlights ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-includes li,
.tour-highlights li {
    color: var(--text-gray);
    padding-left: 0.5rem;
}

.tour-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tour-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.custom-pricing .price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: none;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}


/* Tour Highlights and Includes Lists */
.tour-highlights ul,
.tour-includes ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.tour-highlights li,
.tour-includes li {
    padding: 0.4rem 0;
    color: var(--text-primary);
}

.tour-includes li {
    color: var(--text-secondary);
}

/* Difference Section */
.difference-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
}

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

.difference-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.difference-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.faq-item {
    padding: 1.5rem;
    background: var(--cream-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

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

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

/* ========== RELATED TOURS SECTION ========== */
.related-tours-section {
    padding: var(--space-xl) 2rem;
    background: var(--light-cream);
}

.related-tours-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-brown);
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.related-tour-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.related-tour-card:hover {
    box-shadow: var(--shadow-strong);
}

.related-tour-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.related-tour-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.related-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.related-tour-card:hover .related-link {
    color: var(--dark-brown);
}

/* ======================
   MULTI-DAY TOURS PAGE
====================== */

.multiday-hero {
    background: linear-gradient(135deg, rgba(245,169,98,0.85) 0%, rgba(245,169,98,0.7) 100%),
                url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1600&q=80') center/cover;
}

.itineraries-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
}

.itinerary-list {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.itinerary-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: box-shadow 0.3s ease;
}

.itinerary-card:hover {
    box-shadow: var(--shadow-strong);
}

.itinerary-card.featured {
    border: 3px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(245,169,98,0.05) 0%, white 100%);
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.itinerary-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.duration-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.duration-badge.custom {
    background: var(--text-primary);
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.itinerary-tagline {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.itinerary-inquiry {
    margin-bottom: 2rem;
}

.itinerary-content {
    display: grid;
    gap: 2rem;
}

.itinerary-overview,
.itinerary-highlights,
.custom-benefits {
    margin-bottom: 0;
}

.itinerary-overview h3,
.itinerary-highlights h3,
.custom-benefits h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.itinerary-overview p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.itinerary-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.itinerary-highlights li {
    color: var(--text-secondary);
    padding-left: 0.5rem;
    line-height: 1.6;
}

.itinerary-details {
    background: var(--cream-bg);
    padding: 1.5rem;
    border-radius: 8px;
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.detail-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.award-callout {
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,165,0,0.1) 100%);
    border-left: 4px solid #FFD700;
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 1rem;
}

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

.award-callout p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.award-callout strong {
    color: var(--text-primary);
    font-weight: 600;
}

.custom-benefits {
    margin-top: 0;
}

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

.benefit {
    text-align: center;
    padding: 1rem;
    background: var(--cream-bg);
    border-radius: 8px;
}

.benefit span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.itinerary-card .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

/* Visual Dividers for Multi-Day Page */
.visual-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    margin: 3rem 0;
}

.visual-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 248, 240, 0.3),
        rgba(245, 169, 98, 0.2)
    );
}

.divider-ayutthaya {
    background-image: url('https://images.unsplash.com/photo-1563492065213-d2c82e560c2d?w=1600&q=85&auto=format&fit=crop');
}

.divider-coastal {
    background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1600&q=85&auto=format&fit=crop');
}

.divider-cultural {
    background-image: url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1600&q=85&auto=format&fit=crop');
}

@media (max-width: 968px) {
    .visual-divider {
        height: 200px;
        margin: 2rem 0;
    }
}

/* What's Included Section */
.whats-included-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.whats-included-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.included-item {
    text-align: center;
    padding: 2rem;
    background: var(--cream-bg);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.included-item:hover {
    box-shadow: var(--shadow-strong);
}

.included-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.included-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ======================
   CULINARY PAGE
====================== */

.culinary-hero {
    background: linear-gradient(135deg, rgba(245,169,98,0.85) 0%, rgba(245,169,98,0.7) 100%),
                url('https://images.unsplash.com/photo-1562565652-a0d8f0c59eb4?w=1600&q=80') center/cover;
    /* Thai street food vendor cooking pad thai */
}

.culinary-intro-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.culinary-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    max-width: 600px;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.intro-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.intro-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1200&q=85') center/cover;
    /* Colorful Thai dishes and ingredients */
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.culinary-experiences-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
}

.culinary-experiences-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.experience-card:hover {
    box-shadow: var(--shadow-strong);
}

.experience-icon {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.experience-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Street Food Tastings - Thai street food vendor with skewers */
.experience-card:nth-child(1) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1569562211093-4ed0d0758f12?w=800&q=85');
}

/* Local Markets - Thai market with fresh produce and spices */
.experience-card:nth-child(2) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1498579809087-ef1e558fd1da?w=800&q=85');
}

/* Thai Dining Guidance - Pad Thai dish */
.experience-card:nth-child(3) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1559314809-0d155014e29e?w=800&q=85');
}

/* Seafood Tours in Rayong - Fresh Thai seafood */
.experience-card:nth-child(4) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1559737558-2f5a35f4523b?w=800&q=85');
}

/* Off The Radar Regional Specialties - Thai curry */
.experience-card:nth-child(5) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1455619452474-d2be8b1e70cd?w=800&q=85');
}

/* Chinatown Night Food Walks - Bangkok street food at night with neon lights */
.experience-card:nth-child(6) .experience-icon {
    background-image: url('https://images.unsplash.com/photo-1754214005340-1701ab15e752?w=800&q=85');
}

.experience-card h3 {
    font-size: 1.35rem;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--text-primary);
}

.experience-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.culinary-tours-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.culinary-tours-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.culinary-options {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.culinary-option {
    background: var(--cream-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.culinary-option:hover {
    box-shadow: var(--shadow-strong);
}

.culinary-option.featured {
    background: linear-gradient(135deg, rgba(245,169,98,0.15) 0%, rgba(245,169,98,0.08) 100%);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(245,169,98,0.2);
}

.culinary-option h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.culinary-option p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.culinary-option strong {
    color: var(--text-primary);
}

.culinary-option .btn-secondary,
.culinary-option .btn-primary {
    margin-top: 1.5rem;
}

.dietary-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
}

.dietary-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.dietary-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.dietary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dietary-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.dietary-card:hover {
    box-shadow: var(--shadow-strong);
}

.dietary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
}

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

/* ======================
   MEET YOUR GUIDE PAGE
====================== */

.guide-hero-section {
    background: linear-gradient(135deg, rgba(245,169,98,0.85) 0%, rgba(245,169,98,0.7) 100%),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.guide-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guide-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.guide-intro-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.guide-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.guide-image-container {
    position: sticky;
    top: 2rem;
}

.guide-main-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: url('../images/guide-dew.jpg') center/cover;
    border-radius: 12px;
}

.guide-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guide-credentials-line {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.guide-credentials {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.credential {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--cream-bg);
    border-radius: 8px;
}

.credential-icon {
    font-size: 2rem;
}

.credential strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.credential p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.guide-bio p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.guide-philosophy {
    background: linear-gradient(135deg, rgba(245,169,98,0.1) 0%, rgba(245,169,98,0.05) 100%);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.philosophy-statement {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-orange);
    font-weight: 600;
}

.why-me-section,
.travel-style-section,
.languages-section {
    padding: var(--space-xl) 2rem;
}

.why-me-section {
    background: var(--cream-bg);
}

.why-me-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.why-me-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-me-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-me-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.travel-style-content {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.style-principle {
    padding: 1.5rem;
    background: var(--cream-bg);
    border-radius: 8px;
}

.style-principle h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
}

.style-principle p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.languages-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    align-items: stretch;
}

.language-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
}

.language-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.language-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.language-card strong {
    color: var(--primary-orange);
}

.social-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
    text-align: center;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-button.facebook {
    background: #1877f2;
    color: white;
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-links-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links-inline a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.social-links-inline a:hover {
    text-decoration: underline;
}


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

.contact-page-section {
    min-height: 100vh;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-form-container {
    padding: 3rem;
    background: white;
    overflow-y: auto;
}

.contact-form-header {
    margin-bottom: 2rem;
}

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

.contact-logo-image {
    width: 100px;
    height: auto;
}

.contact-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.contact-form-header h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-intro {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.response-promise {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.date-range-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.date-field {
    flex: 1;
    min-width: 140px;
}

.date-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.date-field input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    cursor: pointer;
}

.date-field input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-error {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #d32f2f;
}

.form-privacy {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-privacy a {
    color: var(--primary-orange);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-success {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-hero-side {
    position: relative;
    background: url('https://images.unsplash.com/photo-1534008897995-27a23e859048?w=1200&q=85') center/cover;
    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44,24,16,0.6) 0%, rgba(44,24,16,0.4) 100%);
    padding: 3rem;
}

.hero-content-box {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
}

.hero-content-box h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hero-content-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.alt-contact-section {
    padding: var(--space-xl) 2rem;
    background: var(--cream-bg);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.alt-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alt-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.alt-contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.alt-contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.alt-contact-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.alt-contact-card a:hover {
    text-decoration: underline;
}

.alt-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.contact-faq-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.faq-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.faq-compact {
    background: var(--cream-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* ======================
   FOOTER
====================== */

/* ========== FOOTER ========== */
.footer {
    background: #2C1810;
    color: white;
    margin-top: 0;
}

.footer-main {
    padding: var(--space-xl) 0 3rem;
    /* Bangkok night scene with dark overlay for text contrast */
    background:
        linear-gradient(
            rgba(30, 20, 15, 0.90),
            rgba(20, 12, 8, 0.94)
        ),
        url('../images/bg-footer-night.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

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

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-philosophy {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    margin-top: 1.5rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    font-family: var(--heading-font);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.85rem;
}

.footer-column a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary-orange);
    transform: translateX(3px);
}

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

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    line-height: 1.6;
}

.footer-contact span {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.85);
    word-break: break-word;
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* ======================
   CTA SECTION
====================== */

.cta-section {
    padding: var(--space-xl) 2rem;
    /* Warm Thai food background with overlay */
    background:
        linear-gradient(135deg,
            rgba(74, 52, 40, 0.82) 0%,
            rgba(74, 52, 40, 0.88) 100%
        ),
        url('../images/bg-cta-food.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-cream);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ======================
   RESPONSIVE DESIGN
====================== */

@media (max-width: 968px) {
    /* Navigation — Full-screen overlay menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        box-shadow: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.6rem 0;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger link entrance */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.14s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.20s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.26s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.32s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.38s; }

    .nav-menu .nav-link {
        font-size: 1.4rem;
        font-family: var(--heading-font);
        font-weight: 400;
        letter-spacing: 0.02em;
    }

    .nav-menu .btn-nav {
        margin-top: 0.5rem;
        font-size: 1.1rem;
        padding: 0.9rem 2.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Home Hero */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        order: -1;
        padding: 2.5rem 1.5rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: 0 4px 30px rgba(44, 24, 16, 0.15);
        gap: 1.25rem;
    }

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

    .hero-tagline-text {
        font-size: 1.1rem;
    }

    .hero-trust-bar {
        gap: 0.5rem;
    }

    .trust-chip {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }

    .hero-right {
        order: 1;
    }

    .hero-image {
        height: 280px;
    }

    /* Make badge smaller on mobile */
    .hero-badge {
        bottom: 1rem;
        right: 1rem;
    }

    .badge-circle {
        width: 100px;
        height: 100px;
        padding: 0.5rem;
    }

    .badge-text {
        font-size: 0.45rem;
    }

    /* Tours Grid */
    .tours-grid {
        grid-template-columns: 1fr;
    }

    /* Guide Page */
    .guide-intro-grid {
        grid-template-columns: 1fr;
    }

    .guide-image-container {
        position: static;
    }

    /* Contact Page */
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-side {
        min-height: 300px;
    }

    /* Footer */
    .footer-main {
        padding: 4rem 0 3rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: left;
    }

    .footer-logo-image {
        height: 90px;
    }

    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    /* Buttons */
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Keep the page offset matched to the smaller mobile logo. */
    :root {
        --nav-logo-height: 50px;
    }

    /* Footer */
    .footer-main {
        padding: 3.5rem 0 3rem;
    }

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

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

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo-image {
        height: 80px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-column a:hover {
        transform: none;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

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

    .footer-legal {
        gap: 1.5rem;
        justify-content: center;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Culinary Intro */
    .culinary-intro-content {
        grid-template-columns: 1fr;
    }

    .intro-image {
        height: 300px;
    }

    /* Difference Grid */
    .difference-grid,
    .experiences-grid,
    .why-me-grid,
    .languages-grid,
    .dietary-grid,
    .alt-contact-grid,
    .faq-grid,
    .faq-grid-compact {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    /* Tour Pricing */
    .tour-footer,
    .itinerary-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tour-footer .btn-primary,
    .itinerary-footer .btn-primary {
        width: 100%;
    }
}

/* ========== BOOKING STEPS SECTION ========== */
.booking-steps-section {
    padding: var(--space-xl) 2rem;
    background: white;
}

.booking-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: var(--heading-font);
}

.booking-step h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.booking-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* ========== MOBILE TAP-TO-EXPAND CARDS ========== */
.card-toggle-btn {
    display: none;
}

@media (max-width: 968px) {
    .card-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: 1.5px solid var(--dark-brown);
        border-radius: var(--radius-sm);
        padding: 0.6rem 1.2rem;
        font-family: var(--body-font);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--dark-brown);
        cursor: pointer;
        margin-top: 0.75rem;
        transition: background 0.3s, color 0.3s;
    }

    .card-toggle-btn:hover,
    .card-toggle-btn:focus-visible {
        background: var(--dark-brown);
        color: var(--light-cream);
    }

    .card-toggle-btn .toggle-icon {
        transition: transform 0.3s ease;
        font-size: 0.75rem;
    }

    .card-toggle-btn[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
    }

    .card-collapsible {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .card-collapsible.expanded {
        max-height: 600px;
    }
}

/* ========== ACCESSIBILITY: REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll-triggered staggered entrance */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-brown);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}


/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-cream);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Legal pages and optional analytics controls */
.legal-content { max-width: 850px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.legal-content h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 2rem 0 1rem; }
.legal-content p, .legal-content ul { margin-bottom: 1.2rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a, .consent-banner a { color: #784319; text-decoration: underline; }
.legal-content a { overflow-wrap: anywhere; }
.privacy-settings { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; text-decoration: underline; }
.consent-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 10000; max-width: 1050px; margin: auto; padding: 1.25rem 1.5rem; border: 1px solid #bfa48a; border-radius: 12px; background: #fff8f0; color: #1a1a1a; box-shadow: 0 4px 24px #0003; display: flex; gap: 1.5rem; align-items: center; max-height: calc(100dvh - 2rem); overflow-y: auto; }
.consent-banner[hidden], .privacy-settings[hidden] { display: none; }
.consent-banner h2 { font-size: 1.1rem; margin: 0 0 .5rem; }
.consent-banner p { font-size: .95rem; line-height: 1.5; margin: 0; }
.consent-actions { display: flex; gap: .65rem; flex-shrink: 0; }
.consent-actions button { background: #fff; color: #4a2f20; border: 1px solid #784319; border-radius: 5px; padding: .7rem 1rem; font: inherit; font-weight: 700; cursor: pointer; min-height: 44px; }
.consent-actions button:hover { background: #f3e3d1; }
.consent-actions button:focus-visible, .privacy-settings:focus-visible { outline: 3px solid #784319; outline-offset: 4px; }
@media (max-width: 850px) {
    .consent-banner { display: block; padding: 1rem; }
    .consent-actions { margin-top: 1rem; flex-wrap: wrap; }
    .consent-actions button { flex: 1; }
}
