/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #d4771a;
    --secondary: #1a4d2e;
    --accent: #ff6b35;
    --dark: #0f1419;
    --medium-dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #5f6368;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4771a, #ff6b35);
    --gradient-dark: linear-gradient(135deg, #1a4d2e, #0f1419);
    --font-main: "Poppins", sans-serif;
    --font-display: "Montserrat", sans-serif;
    --font-serif: "Merriweather", serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 15px 50px rgba(0, 0, 0, 0.25);

    /* Theme background and text variables for pages with dark/light options */
    --page-bg: #0f1419;
    --footer-bg: #0b0f19;
    --text-color-primary: #ffffff;
    --text-color-secondary: rgba(255, 255, 255, 0.7);
    --text-color-muted: rgba(255, 255, 255, 0.55);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-bg: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --card-hover-shadow: 0 15px 40px rgba(212, 119, 26, 0.2);
    --card-backdrop: blur(12px);
    --journey-content-bg: transparent;
    --navbar-scrolled-bg: rgba(15, 20, 25, 0.95);
    --dropdown-bg: rgba(15, 20, 25, 0.98);
}

/* ===== GLOBAL SINGLE PAGE BACKGROUND THEME ===== */
body.single-page-bg {
    background-color: var(--page-bg) !important;
    color: var(--text-color-primary);
}

body.single-page-bg section {
    background: transparent !important;
    background-color: transparent !important;
}

/* ===== THEME VARIATIONS ===== */
[data-theme="adventure-light"] {
    --primary: #d4771a;
    --secondary: #1a4d2e;
    --accent: #ff6b35;
    --dark: #0f1419;
    --medium-dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #5f6368;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4771a, #ff6b35);
    --gradient-dark: linear-gradient(135deg, #1a4d2e, #0f1419);

    /* Overrides for light background pages */
    --page-bg: #ffffff;
    --footer-bg: #0b0f19;
    --text-color-primary: #0f1419;
    --text-color-secondary: #333333;
    --text-color-muted: #666666;
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --card-hover-bg: #f9fafb;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 15px 40px rgba(212, 119, 26, 0.12);
    --card-backdrop: none;
    --journey-content-bg: #f8f9fa;
    --navbar-scrolled-bg: rgba(255, 255, 255, 0.95);
    --dropdown-bg: rgba(255, 255, 255, 0.98);
}

/* Navigation Bar Theme and Light Header Adjustments */

/* Default for light theme at the top of pages with dark heroes: keep elements white for visibility */
[data-theme="adventure-light"] .navbar:not(.scrolled) .nav-links>li>a {
    color: var(--white);
}

[data-theme="adventure-light"] .navbar:not(.scrolled) .logo-image {
    filter: none;
}

[data-theme="adventure-light"] .navbar:not(.scrolled) .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

[data-theme="adventure-light"] .navbar:not(.scrolled) .hamburger span {
    background: var(--white);
}

/* On scrolled navbar or active mobile menu in Light Theme, turn elements black */
[data-theme="adventure-light"] .navbar.scrolled .nav-links>li>a,
[data-theme="adventure-light"] .navbar .nav-links.active>li>a {
    color: var(--text-color-primary) !important;
}

[data-theme="adventure-light"] .nav-links.active~.hamburger span {
    background: var(--text-color-primary) !important;
}

[data-theme="adventure-light"] .navbar.scrolled .logo-image {
    filter: none;
}

[data-theme="adventure-light"] .navbar.scrolled .theme-toggle {
    background: rgba(15, 20, 25, 0.06);
    border-color: rgba(15, 20, 25, 0.15);
    color: var(--text-color-primary);
}

[data-theme="adventure-light"] .navbar.scrolled .hamburger span {
    background: var(--text-color-primary);
}

/* For Apply and How It Works pages (which have no dark hero background in light theme), they need black nav elements at the top in Light Theme */
[data-theme="adventure-light"] body.apply-page .navbar:not(.scrolled) .nav-links>li>a,
[data-theme="adventure-light"] body.how-it-works-page .navbar:not(.scrolled) .nav-links>li>a,
[data-theme="adventure-light"] body.journal-single-bg .navbar:not(.scrolled) .nav-links>li>a {
    color: var(--text-color-primary);
}

[data-theme="adventure-light"] body.apply-page .navbar:not(.scrolled) .logo-image,
[data-theme="adventure-light"] body.how-it-works-page .navbar:not(.scrolled) .logo-image,
[data-theme="adventure-light"] body.journal-single-bg .navbar:not(.scrolled) .logo-image {
    filter: none;
}

[data-theme="adventure-light"] body.apply-page .navbar:not(.scrolled) .theme-toggle,
[data-theme="adventure-light"] body.how-it-works-page .navbar:not(.scrolled) .theme-toggle,
[data-theme="adventure-light"] body.journal-single-bg .navbar:not(.scrolled) .theme-toggle {
    background: rgba(15, 20, 25, 0.06);
    border-color: rgba(15, 20, 25, 0.15);
    color: var(--text-color-primary);
}

[data-theme="adventure-light"] body.apply-page .navbar:not(.scrolled) .hamburger span,
[data-theme="adventure-light"] body.how-it-works-page .navbar:not(.scrolled) .hamburger span,
[data-theme="adventure-light"] body.journal-single-bg .navbar:not(.scrolled) .hamburger span {
    background: var(--text-color-primary);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    transition:
        background-color 0.5s ease,
        color 0.5s ease;
}

img {
    width: 100%;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

p.emphasis {
    color: #ffffff !important;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 119, 26, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 119, 26, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--navbar-scrolled-bg, rgba(15, 20, 25, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-image {
    height: 50px;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color-primary, var(--white));
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary) !important;
}

.nav-links a.active::after {
    width: 100% !important;
}

/* Dropdown Styles */
.nav-links li {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dropdown-bg, rgba(15, 20, 25, 0.98));
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 12px;
    padding: 0.8rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 119, 26, 0.2);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0.5rem;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.9)) !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(212, 119, 26, 0.1);
    border-left-color: var(--primary);
    padding-left: 2rem;
    color: var(--primary) !important;
}

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 119, 26, 0.4);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.theme-toggle:hover::before {
    opacity: 1;
}

.theme-toggle i {
    position: relative;
    z-index: 1;
}

.theme-toggle:hover {
    transform: rotate(180deg) scale(1.1);
    border-color: var(--primary);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color-primary, var(--white));
    border-radius: 2px;
    transition: var(--transition);
}

/* Apply Button in Nav */
.nav-apply,
.nav-apply:hover,
.nav-links>li>a.nav-apply.active,
.navbar.scrolled .nav-links>li>a.nav-apply,
[data-theme="adventure-light"] .navbar .nav-links>li>a.nav-apply,
[data-theme="adventure-light"] .navbar .nav-links>li>a.nav-apply.active {
    color: #ffffff !important;
    background: var(--gradient) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.nav-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 119, 26, 0.4);
}

.nav-apply::after {
    display: none !important;
}

/* Mega Menu for Journeys */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    min-width: 850px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
    gap: 2.2rem;
}

.mega-menu-item-overview {
    border-right: 1px solid rgba(212, 119, 26, 0.15);
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .mega-menu {
        min-width: 100% !important;
        grid-template-columns: 1fr !important;
        padding: 1.2rem !important;
        gap: 1.2rem !important;
    }

    .mega-menu-item-overview {
        border-right: none !important;
        padding-right: 0 !important;
        gap: 1rem !important;
    }
}

.mega-menu-item {
    list-style: none;
}

.mega-menu-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary) !important;
    padding: 0.5rem 0 !important;
    border-left: none !important;
    margin-bottom: 0.5rem;
    display: block;
}

.mega-menu-title:hover {
    padding-left: 0 !important;
    background: none !important;
}

.mega-submenu {
    list-style: none;
    padding-left: 0;
}

.mega-submenu li {
    list-style: none;
}

.mega-submenu a {
    padding: 0.5rem 0 !important;
    font-size: 0.85rem !important;
    border-left: none !important;
}

.mega-submenu a:hover {
    padding-left: 0.5rem !important;
    background: none !important;
    color: var(--primary) !important;
}

.mega-menu-desc {
    font-size: 0.78rem;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.7));
    line-height: 1.4;
    margin: 0;
    padding-left: 1.4rem;
}

.mega-submenu-item {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0.6rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent !important;
    border-left: none !important;
}

.mega-submenu-item:hover {
    background: rgba(212, 119, 26, 0.1) !important;
    padding-left: 0.8rem !important;
}

.mega-submenu-title {
    font-weight: 600;
    color: var(--text-color-primary, #ffffff);
    font-size: 0.88rem;
    transition: color 0.2s ease;
    display: block;
}

.mega-submenu-item:hover .mega-submenu-title {
    color: var(--primary) !important;
}

.mega-submenu-region {
    font-size: 0.72rem;
    color: var(--text-color-muted, rgba(255, 255, 255, 0.5));
    margin-top: 2px;
    display: block;
}

.mega-submenu-coming-soon {
    opacity: 0.6;
    font-size: 0.82rem;
    padding-left: 0.5rem;
    display: block;
    margin-top: 6px;
    color: var(--text-color-muted, #888);
}

/* Dropdown Divider */
.dropdown-menu .divider {
    height: 1px;
    background: rgba(212, 119, 26, 0.2);
    margin: 0.5rem 0;
}

/* Talk To Us Sticky Button */
.talk-to-us-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: -5px 5px 20px rgba(212, 119, 26, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.talk-to-us-btn:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -8px 8px 30px rgba(212, 119, 26, 0.6);
    padding-right: 2rem;
}

.talk-to-us-btn i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.45),
            rgba(26, 77, 46, 0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content .container {
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    color: var(--white);
}

.hero-subtitle-2 {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-style: italic;
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(15px);
        opacity: 0.3;
    }
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--gradient-dark);
    padding: 4rem 0;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-item span {
    font-size: 3rem;
    color: var(--primary);
    margin-left: -0.5rem;
}

.stat-item p {
    margin-top: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== BORDERLESS SECTION =====
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      var(--primary) 35px,
      var(--primary) 36px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      var(--primary) 35px,
      var(--primary) 36px
    );
  pointer-events: none;
}

/* Floating Decorative Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 60%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

/* Header */
.borderless-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.section-tag-minimal {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 119, 26, 0.15);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 119, 26, 0.2);
}

.borderless-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    font-family: var(--font-display);
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.highlight-text {
    position: relative;
    color: var(--dark);
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(220, 53, 69, 0.3);
    z-index: -1;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.borderless-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 400;
}

/* Grid Layout */
.borderless-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Cards */
.borderless-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.borderless-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card Pattern */
.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        linear-gradient(45deg, #dc3545 25%, transparent 25%),
        linear-gradient(-45deg, #dc3545 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #dc3545 75%),
        linear-gradient(-45deg, transparent 75%, #dc3545 75%);
    background-size: 20px 20px;
    background-position:
        0 0,
        0 10px,
        10px -10px,
        -10px 0px;
    pointer-events: none;
}

.green-pattern {
    background-image:
        linear-gradient(45deg, #28a745 25%, transparent 25%),
        linear-gradient(-45deg, #28a745 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #28a745 75%),
        linear-gradient(-45deg, transparent 75%, #28a745 75%);
}

/* Card Header */
.card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-badge {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.red-badge {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.green-badge {
    background: linear-gradient(135deg, #28a745, #218838);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    }
}

.card-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    opacity: 0.7;
}

/* Card Content */
.card-content {
    padding: 2rem 1.5rem 2.5rem;
}

.icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.1),
            rgba(212, 119, 26, 0.05));
    position: relative;
}

.icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
}

.pulsing {
    animation: pulse-icon 2s infinite;
    background: linear-gradient(135deg,
            rgba(40, 167, 69, 0.2),
            rgba(40, 167, 69, 0.1));
}

.pulsing i {
    color: #28a745;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-content p {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.emphasis-text {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #28a745 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Corner Accent */
.card-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            transparent 50%,
            rgba(220, 53, 69, 0.1) 50%);
    border-top-left-radius: 20px;
}

.green-corner {
    background: linear-gradient(135deg,
            transparent 50%,
            rgba(40, 167, 69, 0.15) 50%);
}

/* Solution Card Special Styling */
.card-solution {
    border-color: rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, #ffffff, #f0fff4);
}

.card-solution:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.2);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #28a745, #20c997, #28a745);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.card-solution:hover .card-glow {
    opacity: 0.3;
}

/* Sparkles */
.sparkles {
    position: absolute;
    top: 20px;
    right: 20px;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) {
    animation-delay: 0s;
    top: 0;
    right: 0;
}

.sparkle:nth-child(2) {
    animation-delay: 0.7s;
    top: -10px;
    right: 15px;
}

.sparkle:nth-child(3) {
    animation-delay: 1.4s;
    top: 10px;
    right: 20px;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer  */
.borderless-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border: 2px solid rgba(212, 119, 26, 0.1);
    transition: var(--transition);
}

.footer-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(212, 119, 26, 0.15);
}

.footer-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 119, 26, 0.3);
}

.footer-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.footer-content {
    flex: 1;
    text-align: left;
}

.footer-text {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-text strong {
    color: var(--dark);
    font-weight: 700;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--dark);
    position: relative;
    overflow: hidden;
}

.btn-journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-journey:hover::before {
    left: 0;
}

.btn-journey span,
.btn-journey i {
    position: relative;
    z-index: 1;
}

.btn-journey:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 119, 26, 0.3);
}

.btn-journey i {
    transition: transform 0.3s ease;
}

/* ===== BORDERLESS SECTION ===== */
.borderless-section {
    padding: 8rem 0;
    background: var(--white);
}

/* Header */
.borderless-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.borderless-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-display);
    color: var(--dark);
    margin-bottom: 2rem;
}

.borderless-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

/* Grid Layout */
.borderless-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cards */
.borderless-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.borderless-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Top Bar */
.card-bar {
    height: 5px;
    width: 100%;
}

.card-bar.red {
    background: var(--primary);
}

.card-bar.green {
    background: var(--primary);
}

/* Card Icon */
.card-icon {
    padding: 3rem 2rem 1.5rem;
}

.card-icon i {
    font-size: 4rem;
    color: var(--primary);
}

.borderless-card.highlight .card-icon i {
    color: var(--primary);
}

/* Card Text */
.borderless-card p {
    padding: 0 2rem 3rem;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Tagline Section */
.borderless-tagline {
    text-align: center;
    margin: 3rem auto 2rem;
    max-width: 700px;
}

.tagline-primary {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.tagline-secondary {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.borderless-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== TRAVEL WITH NO COUNTRY MAN SECTION ===== */
.travel-with-ncm {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ncm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.ncm-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ncm-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ncm-image:hover img {
    transform: scale(1.05);
}

.ncm-text {
    padding: 2rem 0;
}

.ncm-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.ncm-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.ncm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Responsive - Travel With NCM */
@media (max-width: 968px) {
    .ncm-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ncm-text {
        padding: 0;
    }

    .ncm-description {
        font-size: 1.1rem;
    }

    .ncm-tagline {
        font-size: 1.5rem;
    }
}

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(212, 119, 26, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-display);
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse>* {
    direction: ltr;
}

/* ===== ODD ONE OUT SECTION ===== */
.odd-one-out {
    padding: 8rem 0;
    background: var(--light);
}

.section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.section-image img {
    border-radius: 20px;
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}

.float-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.float-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.float-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.section-text p {
    font-size: 1.05rem;
    color: var(--text-color-secondary, var(--gray));
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* ===== EXPERIENCED HANDS SECTION ===== */
.experienced-hands {
    padding: 8rem 0;
    background: transparent;
    position: relative;
}

.experienced-hands .section-title {
    color: var(--text-color-primary, var(--white));
}

.experienced-hands .section-header p {
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.85));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(212, 119, 26, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 119, 26, 0.3);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-primary, var(--dark));
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color-secondary, var(--gray));
    line-height: 1.7;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.check-list {
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-color-primary, var(--dark));
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Common Emphasis Pattern - Use throughout site for key statements */
.emphasis {
    font-weight: 600;
    color: #ffffff;
    /* Bright white text in dark theme */
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 119, 26, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
}

[data-theme="adventure-light"] .emphasis {
    color: #000000;
    /* Black text in light theme */
}

/* ===== NO WORRIES SECTION ===== */
.no-worries {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.no-worries .container {
    position: relative;
    z-index: 1;
}

.no-worries .section-tag {
    background: rgba(212, 119, 26, 0.15);
    border: 1px solid rgba(212, 119, 26, 0.4);
    color: var(--primary);
}

.no-worries .section-title {
    color: var(--text-color-primary, var(--white));
}

.no-worries .section-header p {
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.8));
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.check-item {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    backdrop-filter: var(--card-backdrop, blur(10px));
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
    position: relative;
    overflow: hidden;
}

.check-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.check-item:hover::before {
    transform: scaleX(1);
}

.check-item:hover {
    background: var(--card-hover-bg, rgba(212, 119, 26, 0.1));
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow, 0 15px 40px rgba(212, 119, 26, 0.15));
}

.check-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.check-item:hover .check-number {
    opacity: 0.65;
    transform: scale(1.1);
}

.check-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.check-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 119, 26, 0.3);
}

.icon-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(212, 119, 26, 0.2),
            transparent 70%);
    z-index: 1;
    animation: pulse-circle 3s infinite;
}

@keyframes pulse-circle {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.check-item:hover .check-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(212, 119, 26, 0.5);
}

.check-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--white));
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.check-item p {
    font-size: 0.95rem;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.7));
    line-height: 1.6;
}

.check-item:hover p {
    color: var(--text-color-primary, rgba(255, 255, 255, 0.9));
}

/* ===== JOURNEY TYPES SECTION ===== */
.journey-types {
    padding: 8rem 0;
    background: var(--dark);
    color: var(--white);
}

.journey-types .section-tag {
    background: rgba(212, 119, 26, 0.2);
    border: 1px solid var(--primary);
}

.journey-types .section-title {
    color: var(--white);
}

.journey-types .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Home page journey types - always 2 columns */
.journey-types .journey-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-card {
    background: var(--medium-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.journey-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.journey-image img {
    height: 100%;
    transition: var(--transition);
}

.journey-card:hover .journey-image img {
    transform: scale(1.1);
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15, 20, 25, 0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.journey-overlay i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.journey-content {
    padding: 2.5rem;
    background-color: var(--journey-content-bg, transparent);
    border-top: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
    transition: var(--transition);
}

.journey-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.journey-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.journey-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.journey-link:hover {
    gap: 1rem;
}

/* ===== TRAVELLER STORIES SECTION ===== */
.traveller-stories {
    padding: 8rem 0;
    background: var(--light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.story-image {
    height: 280px;
    overflow: hidden;
}

.story-image img {
    height: 100%;
    transition: var(--transition);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.story-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.story-link:hover {
    gap: 1rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 8rem 0;
    background: var(--white);
}

.founder-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-badge i {
    font-size: 1.5rem;
}

.founder-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-info p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== CURATED EXPERIENCES SECTION ===== */
.curated-experiences {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.exp-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.exp-image {
    height: 300px;
    overflow: hidden;
}

.exp-image img {
    height: 100%;
    transition: var(--transition);
}

.exp-card:hover .exp-image img {
    transform: scale(1.1);
}

.exp-content {
    padding: 2.5rem;
    text-align: center;
}

.exp-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.exp-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.exp-content p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2027 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%,
            rgba(212, 119, 26, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 60%,
            rgba(255, 107, 53, 0.08) 0%,
            transparent 50%);
}

.choose-us-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(212, 119, 26, 0.02) 2px, transparent 2px),
        linear-gradient(90deg, rgba(212, 119, 26, 0.02) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.why-choose-us .section-tag {
    background: rgba(212, 119, 26, 0.15);
    border: 1px solid rgba(212, 119, 26, 0.4);
    color: var(--primary);
}

.why-choose-us .section-title {
    color: var(--white);
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-showcase-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-showcase-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-showcase-item:hover::before {
    transform: scaleX(1);
}

.stat-showcase-item:hover {
    background: linear-gradient(145deg,
            rgba(212, 119, 26, 0.2),
            rgba(255, 107, 53, 0.1));
    border-color: rgba(212, 119, 26, 0.5);
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 119, 26, 0.3);
}

.stat-showcase-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(212, 119, 26, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.stat-showcase-icon::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(212, 119, 26, 0.3);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.stat-showcase-item:hover .stat-showcase-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(212, 119, 26, 0.6);
}

.stat-showcase-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.counter-large {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 0.3rem;
}

.stat-showcase-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.stat-showcase-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.stat-showcase-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ===== MINI GALLERY TESTIMONIALS ===== */
.mini-gallery-testimonials {
    padding: 8rem 0;
    background: var(--dark);
    color: var(--white);
}

.mini-gallery-testimonials .section-tag {
    background: rgba(212, 119, 26, 0.2);
    border: 1px solid var(--primary);
}

.mini-gallery-testimonials .section-title {
    color: var(--white);
}

.mini-gallery-testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.testi-item img {
    height: 100%;
    transition: var(--transition);
}

.testi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.testi-item:hover .testi-overlay {
    transform: translateY(0);
}

.testi-item:hover img {
    transform: scale(1.1);
}

.testi-overlay p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

/* ===== INSIGHT SECTION ===== */
.insight-section {
    padding: 8rem 0;
    background: var(--white);
}

.insight-details ul {
    margin: 2rem 0;
}

.insight-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--gray);
}

.insight-details i {
    color: var(--primary);
    font-size: 1.3rem;
}

.insight-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.insight-actions .btn-outline {
    color: var(--dark);
    border-color: var(--dark);
}

.insight-actions .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 8rem 0;
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg, var(--white));
    border: 1px solid var(--card-border, transparent);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow, 0 2px 10px rgba(0, 0, 0, 0.05));
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--card-hover-shadow, var(--shadow));
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--card-hover-bg, var(--light));
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 2rem 2rem 2rem;
    color: var(--text-color-secondary, var(--gray));
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.cta-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-step p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Responsive - CTA Steps */
@media (max-width: 768px) {
    .cta-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cta-step p {
        font-size: 1.1rem;
    }
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 8rem 0;
    background: var(--white);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.final-cta-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.final-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.final-cta-image:hover img {
    transform: scale(1.05);
}

.final-cta-content {
    padding: 2rem 0;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.final-cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.final-cta-actions .btn-primary i {
    margin-right: 0.5rem;
}

/* Responsive - Final CTA */
@media (max-width: 968px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-content p {
        font-size: 1.1rem;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
}

/* ===== JOURNEY OVERVIEW PAGE ===== */

/* Journey Hero Section */
.journeys-hero .hero-title {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.journeys-hero .hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.journeys-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.journeys-hero .btn-primary i {
    margin-right: 0.5rem;
}

/* Content Sections */
.content-section {
    padding: 8rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--light);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-display);
    color: var(--text-color-primary, var(--dark));
    line-height: 1.2;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse>* {
    direction: ltr;
}

.column.image-column img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.column.content-column {
    padding: 2rem 0;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
}

.content-text .large-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.content-text p {
    margin-bottom: 1.2rem;
}

/* Use the global .emphasis class for highlighted quotes and key statements */

/* Icon Grid Sections */
.icon-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.icon-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.icon-grid.five-columns {
    grid-template-columns: repeat(5, 1fr);
}

.icon-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg, var(--white));
    border: 1px solid var(--card-border, transparent);
    border-radius: 16px;
    box-shadow: var(--card-shadow, 0 5px 20px rgba(0, 0, 0, 0.08));
    transition: var(--transition);
}

.icon-card:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg, var(--card-bg, var(--white)));
    box-shadow: var(--card-hover-shadow, 0 15px 40px rgba(212, 119, 26, 0.15));
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.icon-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-primary, var(--dark));
}

.icon-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color-secondary, var(--gray));
}

/* Minimal Cards */
.icon-grid.minimal .minimal-card {
    text-align: center;
    padding: 2rem 1rem;
}

.minimal-card .minimal-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.minimal-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.minimal-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Vertical Persona Cards */
.vertical-cards-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vertical-persona-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--card-bg, var(--white));
    border-radius: 12px;
    box-shadow: var(--card-shadow, 0 5px 20px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    border: 1px solid var(--card-border, transparent);
    border-left-width: 4px;
}

.vertical-persona-card:hover {
    transform: translateX(8px);
    background: var(--card-hover-bg, var(--card-bg, var(--white)));
    box-shadow: var(--card-hover-shadow, 0 8px 30px rgba(0, 0, 0, 0.12));
}

.vertical-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
}

.vertical-card-content {
    flex: 1;
}

.vertical-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-primary, var(--dark));
    font-family: "Montserrat", sans-serif;
}

.vertical-card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Journey Formats */
.format-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.format-card {
    background: var(--card-bg, var(--white));
    border: 1px solid var(--card-border, transparent);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow, var(--shadow));
    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover-bg, var(--card-bg, var(--white)));
    box-shadow: var(--card-hover-shadow, var(--shadow-dark));
}

.format-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.format-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.format-card:hover .format-image img {
    transform: scale(1.1);
}

.format-content {
    padding: 2.5rem;
    text-align: center;
}

.format-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-primary, var(--dark));
}

.format-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Featured Journeys */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.journey-card.premium {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.journey-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.journey-card-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.journey-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.journey-card.premium:hover .journey-card-image img {
    transform: scale(1.05);
}

.journey-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.journey-card-content {
    position: relative;
}

.journey-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.journey-card-location {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.journey-card-types {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.btn-light {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-light:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Participant Experience */
.experience-list {
    list-style: none;
    margin-bottom: 2rem;
}

.experience-list li {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-color-secondary, var(--gray));
    line-height: 1.6;
}

.experience-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Use the global .emphasis class instead of small-insight */

/* Journey Match Section */
.decision-factors {
    list-style: none;
    margin: 1.5rem 0;
}

.decision-factors li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color-secondary, var(--gray));
}

.decision-factors i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Journey Overview uses the global emphasis class above */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Insight CTA Section */
.insight-cta {
    background: var(--gradient-dark);
    padding: 8rem 0;
}

.insight-box {
    text-align: center;
    color: var(--white);
}

.insight-box h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.insight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.insight-image {
    border-radius: 12px;
    box-shadow: var(--shadow-dark);
}

.insight-text {
    text-align: left;
}

.insight-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive Design for Journey Overview */
@media (max-width: 1024px) {
    .journeys-hero .hero-title {
        font-size: 2.8rem;
    }

    .icon-grid.four-columns,
    .icon-grid.five-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .format-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Journey overview page cards */
    .featured-journeys .journey-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .insight-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .journeys-hero .hero-title {
        font-size: 2.2rem;
    }

    .journeys-hero .hero-subtitle {
        font-size: 1rem;
    }

    .icon-grid.four-columns,
    .icon-grid.five-columns {
        grid-template-columns: 1fr;
    }

    .format-cards {
        grid-template-columns: 1fr;
    }

    .vertical-persona-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }

    .vertical-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .vertical-card-content h3 {
        font-size: 1.3rem;
    }

    .vertical-card-content p {
        font-size: 1rem;
    }

    /* All journey cards to 1 column on mobile */
    .journey-cards,
    .featured-journeys .journey-cards,
    .journey-types .journey-cards {
        grid-template-columns: 1fr;
    }

    .journey-card-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .journeys-hero .hero-buttons {
        flex-direction: column;
    }

    .journeys-hero .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f25 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-column h4 i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Start Your Journey Column (Highlighted) */
.footer-cta-column {
    background: rgba(212, 119, 26, 0.05);
    border: 1px solid rgba(212, 119, 26, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
}

.footer-cta-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 12px 12px 0 0;
}

.footer-cta-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.9rem 1.2rem !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-cta-link:hover {
    background: rgba(212, 119, 26, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
    padding-left: 1.2rem !important;
}

.footer-cta-link i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Contact & Social Section */
.footer-contact {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name h3 {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social h4 i {
    color: var(--primary);
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--gradient);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Micro-Tagline */
.footer-micro-tagline {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-micro-tagline p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer Legal Links Section */
.footer-legal-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-legal a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -1.2rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== THEME MODAL ===== */
.theme-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-modal.active {
    display: flex;
    opacity: 1;
}

.theme-modal-content {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-modal.active .theme-modal-content {
    transform: scale(1);
}

.theme-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
}

.theme-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
}

.theme-modal-header i {
    color: var(--primary);
    font-size: 1.6rem;
}

.theme-close {
    width: 40px;
    height: 40px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.theme-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.theme-option {
    background: var(--light);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.theme-option:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 119, 26, 0.3);
}

.theme-option.active {
    border-color: var(--primary);
    background: rgba(212, 119, 26, 0.05);
    box-shadow: 0 8px 25px rgba(212, 119, 26, 0.15);
}

.theme-option.clicked {
    animation: themeClick 0.3s ease;
}

@keyframes themeClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.theme-preview {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.theme-color {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.theme-option:hover .theme-color {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.theme-option p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.theme-check {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.theme-option.active .theme-check {
    opacity: 1;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .borderless-title {
        font-size: 3rem;
    }

    .borderless-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .checklist-grid,
    .experience-cards,
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dropdown-bg, rgba(15, 20, 25, 0.98));
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0.5rem 0 0 0;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
        padding: 0;
    }

    [data-theme="adventure-light"] .dropdown-menu {
        background: rgba(0, 0, 0, 0.05) !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding-left: 2rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2.5rem;
    }

    /* Mobile Mega Menu */
    .mega-menu {
        grid-template-columns: 1fr;
        min-width: 100%;
        gap: 1rem;
    }

    .mega-submenu a {
        padding-left: 2rem !important;
    }

    /* Talk To Us Button - Mobile */
    .talk-to-us-btn {
        right: 10px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Journey cards already handled above in mobile breakpoint */

    .borderless-title {
        font-size: 2.5rem;
    }

    .borderless-subtitle {
        font-size: 1rem;
    }

    .footer-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-content {
        text-align: center;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid,
    .testimonial-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-details {
        gap: 2rem;
    }

    /* Theme Modal Responsive */
    .theme-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .borderless-title {
        font-size: 2rem;
    }

    .borderless-subtitle {
        font-size: 0.95rem;
    }

    .borderless-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Talk To Us Button - Small Mobile */
    .talk-to-us-btn {
        right: 5px;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }

    .footer-card {
        padding: 1.5rem;
    }

    .footer-icon {
        width: 60px;
        height: 60px;
    }

    .footer-icon i {
        font-size: 2rem;
    }

    .footer-text {
        font-size: 1rem;
    }

    .btn-journey {
        width: 100%;
        justify-content: center;
    }

    .floating-shapes {
        display: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .stats-container,
    .features-grid,
    .checklist-grid,
    .stories-grid,
    .experience-cards,
    .testimonial-gallery,
    .stats-showcase {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-cta-column {
        padding: 1.5rem 1rem;
    }

    .footer-contact {
        padding: 2rem 2rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a:not(:last-child)::after {
        display: none;
    }

    .footer-micro-tagline p {
        font-size: 0.95rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    /* Theme Modal Mobile */
    .theme-modal-content {
        padding: 1.5rem;
    }

    .theme-modal-header h3 {
        font-size: 1.3rem;
    }

    .theme-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .theme-option {
        padding: 1rem;
    }

    .theme-color {
        width: 40px;
        height: 40px;
    }

    /* Stats Showcase Mobile */
    .counter-large {
        font-size: 2.5rem;
    }

    .stat-suffix {
        font-size: 1.8rem;
    }

    .stat-showcase-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .stat-showcase-item h4 {
        font-size: 1.1rem;
    }

    .stat-showcase-item {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   TOUR PAGE STYLES
   ======================================== */

/* Tour Hero Section */
.tour-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.tour-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.tour-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.tour-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-breadcrumb a:hover {
    color: var(--primary);
}

.tour-breadcrumb i {
    font-size: 0.7rem;
}

.tour-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    line-height: 1.2;
}

.tour-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.tour-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-stat i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.tour-hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Tour Navigation Tabs */
.tour-nav-tabs {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    z-index: 90;
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-link {
    padding: 1.5rem 2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-link:hover,
.tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

/* Tour Overview Section */
.tour-overview {
    padding: 8rem 0;
    background: #fff;
}

.tour-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: 3rem;
}

.overview-content .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.overview-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.2rem;
}

.tour-highlights {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    color: #fff;
}

.tour-highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.highlights-list li i {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Tour Itinerary Section */
.tour-itinerary {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itinerary-timeline {
    margin-top: 4rem;
    position: relative;
}

.itinerary-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.itinerary-stage {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 120px;
}

.stage-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    z-index: 2;
}

.stage-number span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
}

.stage-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stage-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stage-image {
    height: 100%;
    overflow: hidden;
}

.stage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stage-content:hover .stage-image img {
    transform: scale(1.1);
}

.stage-details {
    padding: 2.5rem;
}

.stage-details h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
}

.stage-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.stage-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stage-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.stage-meta i {
    font-size: 1.1rem;
}

.download-brochure {
    margin-top: 4rem;
    text-align: center;
}

.brochure-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.brochure-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.brochure-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.brochure-card p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.brochure-card .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.brochure-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* About Trip Section */
.about-trip {
    padding: 8rem 0;
    background: #fff;
}

.trip-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.trip-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trip-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.trip-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.info-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Inclusions & Exclusions */
.inclusions-exclusions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.inclusion-box,
.exclusion-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inclusion-box h3 {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.exclusion-box h3 {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.inclusion-list li,
.exclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.inclusion-list i {
    color: #28a745;
    margin-top: 0.2rem;
}

.exclusion-list i {
    color: #dc3545;
    margin-top: 0.2rem;
}

/* Tour Dates */
.tour-dates {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
}

.tour-dates h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.date-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
}

.date-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.date-details .month {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.date-details .status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.available {
    background: #d4edda;
    color: #155724;
}

.status.filling {
    background: #fff3cd;
    color: #856404;
}

/* Route Map Section */
.route-map {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.route-map-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-container img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-legend h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
}

.marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.marker.start {
    background: #28a745;
}

.marker.waypoint {
    background: var(--primary);
}

.marker.end {
    background: #dc3545;
}

.route-line {
    width: 30px;
    height: 3px;
    background: var(--primary);
    display: inline-block;
}

.route-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.route-stat {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.route-stat:hover {
    transform: translateX(10px);
}

.route-stat i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.route-stat h4 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ===== HOW IT WORKS PAGE STYLES ===== */

/* Hero Section */
.hiw-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hiw-hero-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.hiw-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
    margin-top: 1.5rem;
}

.hiw-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.hiw-option {
    background: var(--card-bg, var(--white));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow, 0 15px 50px rgba(0, 0, 0, 0.1));
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    border: 1px solid var(--card-border, transparent);
}

.hiw-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow, 0 25px 70px rgba(0, 0, 0, 0.15));
    border-color: var(--primary);
}

.hiw-option-header {
    background: var(--gradient);
    padding: 1.8rem 2rem;
    text-align: center;
}

.hiw-option-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-display);
}

.hiw-option-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.hiw-option-content {
    padding: 2.5rem;
}

.hiw-option-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-family: var(--font-display);
}

.hiw-option-content h4:first-child {
    margin-top: 0;
}

.hiw-option-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
    margin-bottom: 1rem;
}

.hiw-option-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.hiw-option-content ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color-secondary, var(--gray));
    line-height: 1.6;
}

.hiw-option-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.hiw-option-content ul.hiw-dont-need li {
    color: var(--text-color-muted, var(--gray));
    opacity: 0.8;
}

.hiw-option-content ul.hiw-dont-need li:before {
    content: "×";
    color: #999;
}

.hiw-summary {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg, var(--white));
    border-radius: 20px;
    box-shadow: var(--card-shadow, 0 10px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--card-border, transparent);
}

.hiw-summary-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
    margin: 0;
}

.hiw-summary-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Intro Section */
.hiw-intro {
    padding: 8rem 0;
    background: transparent;
    text-align: center;
}

.hiw-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.hiw-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color-secondary, var(--gray));
    margin: 2rem 0 2.5rem;
}

/* How It Works Sections */
.hiw-section {
    padding: 8rem 0;
    background: transparent;
}

.hiw-section-alt {
    background: transparent;
}

/* Caucasus Region Story Section */
.caucasus-region-story {
    padding: 8rem 0;
}

.caucasus-region-story .section-tag {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.caucasus-region-story .section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.caucasus-region-story .section-image {
    grid-column: 1;
    width: 100%;
}

.caucasus-region-story .section-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.caucasus-region-story .section-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.caucasus-region-story .section-text {
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.caucasus-region-story .section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.caucasus-region-story .section-text p {
    color: var(--text-color-secondary, var(--gray));
    line-height: 1.8;
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.caucasus-region-story .section-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .caucasus-region-story .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .caucasus-region-story .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .caucasus-region-story {
        padding: 2.8rem 0;
    }

    .caucasus-region-story .section-grid {
        gap: 1.5rem;
    }

    .caucasus-region-story .section-title {
        font-size: 1.5rem;
    }

    .caucasus-region-story .section-text p {
        font-size: 0.95rem;
    }
}

.hiw-day-timeline {
    margin-top: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg, var(--light));
    border-radius: 15px;
    border: 1px solid var(--card-border, transparent);
    border-left: 4px solid var(--primary);
}

.timeline-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
}

.timeline-item h4 i {
    color: var(--primary);
}

.timeline-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-color-secondary, var(--gray));
    font-size: 0.95rem;
}

.timeline-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Dual-Image layout for Daily Rhythm */
.hiw-daily-rhythm-images {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    /* Increased gap between images */
    position: sticky;
    top: 100px;
}

.hiw-daily-rhythm-images img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-dark, 0 15px 50px rgba(0, 0, 0, 0.25));
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
}

.hiw-daily-rhythm-images img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 119, 26, 0.25);
    border-color: var(--primary);
}

/* Custom Copy Styles for How It Works Page */
.welcome-dinner-copy,
.evening-relaxed-copy,
.group-structure-copy {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(212, 119, 26, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-serif, serif);
}

.welcome-dinner-copy,
.evening-relaxed-copy {
    max-width: 900px;
    margin: 3rem auto;
    color: #ffffff;
    /* Bright white text in dark theme */
}

[data-theme="adventure-light"] .welcome-dinner-copy,
[data-theme="adventure-light"] .evening-relaxed-copy {
    color: #000000;
    /* Black text in light theme */
}

.group-structure-copy {
    color: var(--text-color-secondary);
    background: rgba(255, 255, 255, 0.02);
    border-left-color: rgba(255, 255, 255, 0.2);
}

.hiw-daily-rhythm-footer {
    margin-top: 4rem;
    text-align: center;
}

.hiw-daily-rhythm-footer .emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    /* Bright white text in dark theme */
    margin: 2.5rem auto 1.5rem;
}

[data-theme="adventure-light"] .hiw-daily-rhythm-footer .emphasis {
    color: #000000;
    /* Black text in light theme */
}

.hiw-journey-experience {
    font-size: 1.15rem;
    color: var(--text-color-primary);
}

/* Support Grid */
.hiw-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.support-card {
    background: var(--card-bg, var(--white));
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow, 0 10px 30px rgba(0, 0, 0, 0.08));
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid var(--card-border, transparent);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow, 0 15px 40px rgba(0, 0, 0, 0.12));
    border-color: var(--primary);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: var(--white);
}

.support-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin: 0;
    line-height: 1.4;
}

.hiw-support-footer {
    text-align: center;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-support-footer p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
    margin-bottom: 1rem;
}

/* Unexpected Situations */
.hiw-unexpected {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hiw-unexpected-intro {
    font-size: 1.2rem;
    color: var(--text-color-secondary, var(--gray));
    margin: 1.5rem 0;
}

/* Unexpected Situations Box */
.hiw-unexpected-box {
    background: var(--card-bg, rgba(255, 255, 255, 0.02));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin: 3.5rem auto;
    max-width: 1000px;
    box-shadow: var(--shadow-dark, 0 15px 50px rgba(0, 0, 0, 0.3));
    backdrop-filter: var(--card-backdrop, blur(12px));
    text-align: center;
}

.unexpected-box-header {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.unexpected-box-header .job-statement {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unexpected-box-header .job-statement.highlight-accent {
    color: var(--accent);
    border-color: rgba(255, 107, 53, 0.2);
    background: rgba(255, 107, 53, 0.03);
}

.unexpected-box-header .job-statement.highlight-primary {
    color: var(--primary);
    border-color: rgba(212, 119, 26, 0.2);
    background: rgba(212, 119, 26, 0.03);
}

.unexpected-box-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border, rgba(255, 255, 255, 0.1)), transparent);
    margin-bottom: 2.5rem;
}

.we-handle-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-display);
}

.hiw-unexpected-box .hiw-handle-grid {
    margin: 0;
}

.hiw-handle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.handle-item {
    text-align: center;
}

.handle-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.handle-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin: 0;
    line-height: 1.4;
}

.hiw-unexpected-footer {
    margin-top: 3rem;
}

.hiw-unexpected-footer p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
    margin-bottom: 1rem;
}

/* Final CTA */
.hiw-final-cta {
    padding: 8rem 0;
    background: transparent;
    text-align: center;
}

.hiw-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.hiw-final-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color-secondary, var(--gray));
    margin: 1.5rem 0;
}

.hiw-final-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hiw-final-link {
    margin-top: 2rem;
}

.hiw-final-link a {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hiw-final-link a:hover {
    color: var(--text-color-primary, var(--dark));
}

/* ===== ABOUT US PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.45) 0%,
            rgba(0, 0, 0, 0.3) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Sections */
.about-section {
    padding: 7rem 0;
    background: var(--white);
}

.about-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Full Width Image Sections */
.about-image-full {
    padding: 4rem 0;
    background: var(--white);
}

.about-image-full img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-banner {
    padding: 0;
    width: 100%;
}

.about-image-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Shared Journey Section */
.about-shared-journey {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shared-journey-content {
    margin-top: 2rem;
}

.shared-journey-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Design Journeys Section */
.about-design-journeys {
    max-width: 1100px;
    margin: 0 auto;
}

.design-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.design-image img {
    width: 100%;
    height: auto;
    display: block;
}

.design-content {
    text-align: center;
}

.design-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    display: grid;
    gap: 1.5rem;
}

.design-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 15px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.design-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--card-hover-shadow, 0 10px 30px rgba(212, 119, 26, 0.15));
}

.design-list i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.design-list span {
    font-size: 1.1rem;
    color: var(--text-color-primary);
    font-weight: 500;
    text-align: left;
}

.design-closing {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color-secondary);
    margin-top: 3rem;
}

.design-closing strong {
    color: var(--primary);
    font-weight: 700;
}

/* Borderless Spirit Section */
.about-spirit {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--page-bg, #0f1419) 0%, var(--footer-bg, #1a1f25) 100%);
    color: var(--text-color-primary);
    text-align: center;
}

.spirit-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-feature-heading {
    font-size: 1.05rem;
    padding: 0.7rem 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.spirit-highlight {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

.spirit-highlight span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spirit-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.spirit-text .emphasis {
    font-size: 1.3rem;
    margin: 2rem 0;
}

.spirit-text strong {
    font-weight: 700;
    color: var(--text-color-primary);
}

.spirit-closing {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2.5rem !important;
    color: var(--primary);
}

/* Invitation Section */
.about-invitation {
    padding: 8rem 0;
    background: var(--white);
}

.invitation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.invitation-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.invitation-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.invitation-image:hover img {
    transform: scale(1.05);
}

.invitation-content {
    padding: 2rem 0;
}

.invitation-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.invitation-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Responsive Styles for About Page */
@media (max-width: 968px) {
    .about-hero {
        height: 70vh;
        min-height: 500px;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 5rem 0;
    }

    .about-image-banner img {
        height: 350px;
    }

    .spirit-highlight {
        font-size: 2.5rem;
    }

    .about-feature-heading {
        font-size: 1rem;
    }

    .invitation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-invitation {
        padding: 4rem 0 !important;
    }

    .invitation-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .invitation-actions {
        justify-content: center !important;
        margin-top: 1.8rem !important;
        width: 100% !important;
    }

    .invitation-actions a {
        margin: 0 auto !important;
    }

    .design-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero {
        height: 60vh;
        min-height: 450px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-image-banner img {
        height: 250px;
    }

    .spirit-highlight {
        font-size: 2rem;
    }

    .spirit-text p {
        font-size: 1rem;
    }

    .about-feature-heading {
        font-size: 0.92rem;
        padding: 0.6rem 1.4rem;
        letter-spacing: 1.6px;
    }

    .design-list li {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .design-list span {
        text-align: center;
    }

    .shared-journey-content p,
    .invitation-content p {
        font-size: 1rem;
    }

    .invitation-actions {
        flex-direction: column;
    }

    .invitation-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .about-invitation {
        padding: 3rem 0 !important;
    }

    .about-spirit {
        padding: 5rem 0;
    }
}

/* Responsive Styles for How It Works Page */
@media (max-width: 968px) {
    .hiw-hero {
        padding: 8rem 0 4rem;
    }

    .hiw-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hiw-option-image img {
        height: 300px;
    }

    .hiw-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-handle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .hiw-final-actions a {
        width: 100%;
        max-width: 350px;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    /* Centering the 7th Support Card on 2 columns layout */
    .hiw-support-grid .support-card:last-child {
        grid-column: 1 / span 2;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Responsive Daily Rhythm Images */
    .hiw-daily-rhythm-images {
        position: static;
        flex-direction: row;
        gap: 2.5rem;
        /* Increased gap on tablet */
        margin-bottom: 2rem;
    }

    .hiw-daily-rhythm-images img {
        height: auto;
        aspect-ratio: 3 / 4;
        flex: 1;
    }

    /* Responsive Unexpected Box */
    .hiw-unexpected-box {
        padding: 2rem 1.5rem;
    }

    .unexpected-box-header {
        gap: 1rem;
    }

    .unexpected-box-header .job-statement {
        font-size: 1.1rem;
    }

    .hiw-handle-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Centering the 7th Support Card on 3 columns layout */
@media (min-width: 969px) {
    .hiw-support-grid .support-card:last-child {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .hiw-hero-subtitle {
        font-size: 1rem;
    }

    .hiw-option-header h3 {
        font-size: 1.2rem;
    }

    .hiw-option-content {
        padding: 1.5rem;
    }

    .hiw-summary {
        padding: 2rem 1.5rem;
    }

    .hiw-summary-text {
        font-size: 1.1rem;
    }

    .hiw-support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hiw-handle-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding: 1.2rem;
    }

    /* Centering the 7th Support Card on 1 column layout */
    .hiw-support-grid .support-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    /* Responsive Daily Rhythm Images */
    .hiw-daily-rhythm-images {
        flex-direction: column;
    }

    .hiw-daily-rhythm-images img {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    /* Handle grid in unexpected box on mobile */
    .hiw-unexpected-box .hiw-handle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.route-stat p {
    font-size: 1rem;
    color: #666;
}

/* Tour FAQ Section */
.tour-faq {
    padding: 8rem 0;
    background: #fff;
}

.faq-container {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card-bg, #fff);
    border: 1px solid var(--card-border, transparent);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow, 0 5px 20px rgba(0, 0, 0, 0.08));
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--card-hover-shadow, 0 8px 30px rgba(0, 0, 0, 0.12));
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--card-hover-bg, rgba(var(--primary-rgb), 0.05));
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color-primary, var(--dark));
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #666);
    margin: 0;
}

/* Tour Testimonials Section */
.tour-testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: rgba(var(--primary-rgb), 0.2);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.testimonial-tour {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-testimonial {
    text-align: center;
    margin-top: 4rem;
}

.video-testimonial h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== CAUCASUS ROAD PAGE ===== */
.caucasus-hero .tour-hero-content {
    padding: 5.5rem 0 4.5rem;
}

.caucasus-hero .tour-hero-content .container {
    max-width: 1100px;
}

.caucasus-hero .tour-title {
    max-width: 760px;
    margin-bottom: 0.8rem;
}

.caucasus-hero .tour-subtitle {
    max-width: 760px;
    margin-bottom: 0.6rem;
}

.caucasus-hero-format {
    color: #fff;
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 1.8rem;
    max-width: 760px;
}

.caucasus-hero-copy {
    max-width: 760px;
    margin: 2rem 0 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.caucasus-snapshot {
    padding: 2.5rem 0 3rem;
    background: #fff;
}

.caucasus-snapshot .section-header {
    max-width: 1100px;
    margin: 0 auto 1.6rem;
    text-align: left;
}

.caucasus-snapshot .tour-quick-stats {
    max-width: none;
    margin-bottom: 0;
    grid-template-columns: repeat(4, 1fr);
}

.caucasus-snapshot .quick-stat {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.caucasus-snapshot .stat-label {
    color: #666;
}

.caucasus-snapshot .stat-value {
    color: var(--dark);
}

.caucasus-micro-hook {
    padding: 2.8rem 0;
    background: #fff;
    text-align: center;
}

.caucasus-micro-hook p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-display);
}

.caucasus-core-promise {
    padding: 4.2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.caucasus-core-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.caucasus-core-copy p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.caucasus-core-copy strong {
    color: var(--primary);
}

.caucasus-overview {
    padding: 4.2rem 0;
    background:
        radial-gradient(circle at top right,
            rgba(212, 119, 26, 0.1) 0%,
            transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.caucasus-core-promise+.caucasus-overview {
    padding-top: 0;
}

.caucasus-overview .container {
    border: 1px solid rgba(212, 119, 26, 0.28);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
    background: rgba(255, 255, 255, 0.92);
    padding: 2.5rem;
}

.caucasus-overview-intro {
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto;
}

.caucasus-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.caucasus-overview-card {
    background: linear-gradient(160deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(212, 119, 26, 0.16);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.caucasus-overview-card:before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle,
            rgba(212, 119, 26, 0.18) 0%,
            rgba(212, 119, 26, 0) 70%);
    pointer-events: none;
}

.caucasus-overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 119, 26, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.caucasus-overview-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.14),
            rgba(212, 119, 26, 0.28));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.caucasus-overview-icon i {
    font-size: 1.25rem;
}

.caucasus-overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-family: var(--font-display);
    color: var(--dark);
}

.caucasus-overview-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1.02rem;
}

.caucasus-gallery {
    padding: 4.2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.caucasus-gallery-hero {
    margin-bottom: 1.8rem;
}

.caucasus-gallery-hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.caucasus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.caucasus-gallery-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    cursor: zoom-in;
}

.caucasus-gallery-hero img {
    cursor: zoom-in;
}

.caucasus-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 4.5rem;
}

.caucasus-lightbox.active {
    display: flex;
}

.caucasus-lightbox-stage {
    width: min(92vw, 1200px);
    text-align: center;
}

.caucasus-lightbox-stage img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
}

.caucasus-lightbox-caption {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.caucasus-lightbox-close,
.caucasus-lightbox-nav {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.caucasus-lightbox-close:hover,
.caucasus-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.05);
}

.caucasus-lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
}

.caucasus-lightbox-nav.prev {
    position: absolute;
    left: 1.2rem;
}

.caucasus-lightbox-nav.next {
    position: absolute;
    right: 1.2rem;
}

.caucasus-day {
    padding: 4.2rem 0;
    background: #fff;
}

.caucasus-day-hero {
    margin-bottom: 1.8rem;
}

.caucasus-day-hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.caucasus-day-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.caucasus-day-intro p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.caucasus-day-block {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.caucasus-day-block.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.caucasus-day-block.reverse .caucasus-day-image {
    order: 2;
}

.caucasus-day-block.reverse .caucasus-day-content {
    order: 1;
}

.caucasus-day-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}

.caucasus-day-content {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.8rem;
}

.caucasus-day-content h3,
.caucasus-day-wide-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
    color: var(--dark);
}

.caucasus-day-content p,
.caucasus-day-wide-text p {
    margin-bottom: 0.8rem;
    color: var(--gray);
    line-height: 1.75;
}

.caucasus-day-wide {
    margin: 2.4rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.caucasus-day-wide img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.caucasus-day-wide-text {
    background: #fff;
    padding: 1.8rem 2rem 2rem;
}

.caucasus-day-closing {
    margin-top: 3rem;
    text-align: center;
}

.caucasus-day-closing p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
}

.caucasus-flow {
    padding: 4.2rem 0 4.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.caucasus-accordion {
    max-width: 980px;
    margin: 2.5rem auto 0;
}

.caucasus-accordion details {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    overflow: hidden;
}

.caucasus-accordion summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    padding: 1.2rem 1.4rem;
    background: rgba(212, 119, 26, 0.06);
}

.caucasus-accordion summary::-webkit-details-marker {
    display: none;
}

.accordion-body {
    padding: 1.4rem;
}

.accordion-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    padding: 1.4rem;
}

/* Landscape orientation: image full-width on top, content below */
.accordion-body-landscape {
    display: block;
    padding: 1.4rem;
}

.accordion-image-landscape {
    width: 100%;
    margin-bottom: 1.2rem;
}

.accordion-image-landscape img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.accordion-content-landscape {
    width: 100%;
}

.accordion-image {
    width: 100%;
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 14px;
    image-rendering: auto;
}

.accordion-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accordion-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.accordion-body img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.accordion-body p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.caucasus-flow-closing {
    text-align: center;
    max-width: 880px;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

@media (max-width: 968px) {
    .accordion-body-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .caucasus-hero .tour-hero-content {
        padding: 4.5rem 0 4rem;
    }

    .caucasus-snapshot .tour-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .caucasus-overview-grid {
        grid-template-columns: 1fr;
    }

    .caucasus-gallery-hero img,
    .caucasus-day-hero img {
        height: 360px;
    }

    .caucasus-lightbox {
        padding: 2rem;
    }

    .caucasus-lightbox-nav.prev {
        left: 0.8rem;
    }

    .caucasus-lightbox-nav.next {
        right: 0.8rem;
    }

    .caucasus-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caucasus-day-block,
    .caucasus-day-block.reverse {
        grid-template-columns: 1fr;
    }

    .caucasus-day-block.reverse .caucasus-day-image,
    .caucasus-day-block.reverse .caucasus-day-content {
        order: initial;
    }

    .caucasus-day-wide img {
        height: 320px;
    }
}

@media (max-width: 640px) {

    .caucasus-hero .tour-title,
    .caucasus-hero .tour-subtitle,
    .caucasus-hero-format,
    .caucasus-hero-copy {
        max-width: 100%;
    }

    .caucasus-snapshot {
        padding: 2rem 0 2.4rem;
    }

    .caucasus-snapshot .tour-quick-stats {
        grid-template-columns: 1fr;
    }

    .caucasus-micro-hook p {
        font-size: 1.25rem;
    }

    .caucasus-core-copy p,
    .caucasus-day-intro p,
    .caucasus-flow-closing {
        font-size: 1rem;
    }

    .caucasus-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .caucasus-gallery-hero img,
    .caucasus-day-hero img {
        height: 280px;
    }

    .caucasus-lightbox {
        padding: 1rem 0.7rem;
    }

    .caucasus-lightbox-close,
    .caucasus-lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .caucasus-lightbox-nav.prev {
        left: 0.3rem;
    }

    .caucasus-lightbox-nav.next {
        right: 0.3rem;
    }

    .caucasus-day-content,
    .caucasus-day-wide-text,
    .accordion-body {
        padding: 1.1rem;
    }

    .caucasus-accordion summary {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

.video-title {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Tour Enquiry Section */
.tour-enquiry {
    padding: 8rem 0;
    background: #fff;
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.enquiry-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.enquiry-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.enquiry-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-methods h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #1ebe57;
}

.enquiry-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

/* Related Tours Section */
.related-tours {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.tour-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.tour-meta i {
    color: var(--primary);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price .price-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.tour-price .price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.btn-view {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Responsive Styles for Tour Page */
@media (max-width: 968px) {
    .tour-title {
        font-size: 3rem;
    }

    .tour-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stage-content {
        grid-template-columns: 1fr;
    }

    .stage-image {
        height: 300px;
    }

    .inclusions-exclusions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .itinerary-timeline::before {
        left: 30px;
    }

    .itinerary-stage {
        padding-left: 90px;
    }

    .stage-number {
        width: 70px;
        height: 70px;
    }

    .stage-number span {
        font-size: 1.5rem;
    }

    .route-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tour-hero {
        min-height: 70vh;
        margin-top: 60px;
    }

    .tour-title {
        font-size: 2.2rem;
    }

    .tour-subtitle {
        font-size: 1.2rem;
    }

    .tour-quick-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tabs-wrapper {
        justify-content: flex-start;
    }

    .tab-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .tour-highlights {
        padding: 2rem 1.5rem;
    }

    .itinerary-timeline::before {
        display: none;
    }

    .itinerary-stage {
        padding-left: 0;
    }

    .stage-number {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-stats {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   IS THIS FOR ME PAGE STYLES
   ======================================== */

/* Hero Section */
.itfm-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.itfm-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.itfm-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2);
}

.itfm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.45),
            rgba(26, 77, 46, 0.35));
    z-index: 2;
}

.itfm-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.itfm-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
}

.itfm-hero-text {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.itfm-hero-text p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-shadow:
        1px 1px 6px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
}

.itfm-hero-questions {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
    text-shadow:
        1px 1px 6px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.4);
}

.itfm-hero-questions li {
    margin: 0.25rem 0;
}

.itfm-hero-purpose {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: var(--primary);
    text-shadow:
        1px 1px 6px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

.itfm-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Section Styles */
.itfm-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.itfm-section:nth-child(even) {
    background: transparent;
}

.itfm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.itfm-grid.itfm-reverse {
    direction: rtl;
}

.itfm-grid.itfm-reverse>* {
    direction: ltr;
}

.itfm-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.itfm-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.itfm-image:hover img {
    transform: scale(1.05);
}

/* Highlighted Image Block for Section 8 */
.itfm-image-highlighted {
    position: relative;
    padding: 16px;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.15) 0%,
            rgba(212, 119, 26, 0.05) 100%);
    border-radius: 16px;
    box-shadow:
        0 0 0 3px var(--primary),
        0 20px 60px rgba(212, 119, 26, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.2);
    animation: subtle-pulse 3s ease-in-out infinite;
    width: 100%;
    max-width: 1320px;
}

.itfm-image-highlighted .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.itfm-image-highlighted .image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.itfm-image-highlighted .image-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.1) 0%,
            transparent 50%,
            rgba(212, 119, 26, 0.1) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.itfm-image-highlighted:hover .image-frame img {
    transform: scale(1.08);
}

.itfm-image-highlighted:hover .image-highlight-overlay {
    opacity: 0.3;
}

.itfm-image-highlighted:hover {
    box-shadow:
        0 0 0 3px var(--primary),
        0 0 40px rgba(212, 119, 26, 0.5),
        0 25px 70px rgba(212, 119, 26, 0.35),
        0 15px 50px rgba(0, 0, 0, 0.25);
}

@keyframes subtle-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 3px var(--primary),
            0 20px 60px rgba(212, 119, 26, 0.3),
            0 10px 40px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 0 3px var(--primary),
            0 0 30px rgba(212, 119, 26, 0.4),
            0 22px 65px rgba(212, 119, 26, 0.35),
            0 12px 45px rgba(0, 0, 0, 0.25);
    }
}

/* Vertical Layout for Section 8 */
.itfm-vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1320px;
    margin: 0 auto;
}

.itfm-section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    text-align: center;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    width: 100%;
    max-width: 600px;
}

.itfm-content-centered {
    text-align: center;
    max-width: 750px;
}

.itfm-content-centered p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color-secondary, var(--text));
    margin-bottom: 1.5rem;
}

.itfm-content-centered p:last-child {
    margin-bottom: 0;
}

.itfm-content-centered .emphasis {
    font-size: 1.35rem;
    margin-top: 2rem;
}

.itfm-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.itfm-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 1.2rem;
}

.itfm-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Check List */
.itfm-check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.itfm-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.itfm-check-list i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Cross List */
.itfm-cross-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.itfm-cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.7;
}

.itfm-cross-list i {
    color: #999;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Special Text Styles */
.itfm-big-no,
.itfm-big-yes {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
    font-family: "Montserrat", sans-serif;
}

.itfm-emphasis {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2rem;
    font-style: italic;
}

.itfm-cta-btn {
    margin-top: 2rem;
    display: inline-block;
}

/* Highlight Box */
.itfm-highlight-box {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--secondary) 100%);
    color: rgb(29, 28, 28);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(233, 205, 177, 0.3);
}

/* Quote Box */
.itfm-quote-box {
    position: relative;
    background: var(--card-bg, #f8f9fa);
    border-left: 5px solid var(--primary);
    padding: 2.5rem 3rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color-primary);
    border-radius: 0 12px 12px 0;
    border-top: 1px solid var(--card-border, transparent);
    border-right: 1px solid var(--card-border, transparent);
    border-bottom: 1px solid var(--card-border, transparent);
}

.itfm-quote-box i.fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.itfm-quote-box i.fa-quote-right {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

/* Section 9: Tourist or Traveller */
.itfm-single-column {
    max-width: 1000px;
    margin: 0 auto;
}

.itfm-image-full {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.itfm-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.itfm-single-column h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    text-align: center;
    margin-bottom: 3rem;
}

.itfm-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.itfm-enjoy-list ul,
.itfm-not-enjoy-list ul {
    margin-top: 1.5rem;
}

.itfm-not-enjoy-list h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
}

.itfm-check-list-large li,
.itfm-cross-list-large li {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.itfm-check-list-large {
    list-style: none;
    padding: 0;
}

.itfm-check-list-large li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.itfm-check-list-large i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.itfm-cross-list-large {
    list-style: none;
    padding: 0;
}

.itfm-cross-list-large li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0.7;
}

.itfm-cross-list-large i {
    color: #999;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Section 10: Final CTA */
.itfm-final-cta {
    text-align: center;
}

.itfm-no-pressure {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 1.5rem 0 2.5rem;
}

.itfm-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.itfm-tertiary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.itfm-tertiary-link:hover {
    color: var(--text-color-primary, var(--secondary));
    gap: 0.8rem;
}

.itfm-tertiary-link i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .itfm-hero {
        height: 70vh;
        min-height: 500px;
        padding-top: 80px;
    }

    .itfm-hero-title {
        font-size: 2.8rem;
    }

    .itfm-hero-text p {
        font-size: 1.1rem;
    }

    .itfm-hero-questions {
        font-size: 1.05rem;
    }

    .itfm-section {
        padding: 6rem 0;
    }

    .itfm-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .itfm-grid.itfm-reverse {
        direction: ltr;
    }

    .itfm-content h2 {
        font-size: 2.3rem;
    }

    .itfm-comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .itfm-section-heading {
        font-size: 2.5rem;
    }

    .itfm-vertical-layout {
        gap: 2.5rem;
    }

    .itfm-content-centered p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .itfm-hero {
        height: auto;
        min-height: 600px;
        padding: 6rem 0;
    }

    .itfm-hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .itfm-hero-text p {
        font-size: 1rem;
    }

    .itfm-hero-questions {
        font-size: 0.95rem;
    }

    .itfm-hero-purpose {
        font-size: 1.1rem;
    }

    .itfm-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .itfm-hero-actions .btn-primary,
    .itfm-hero-actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .itfm-section {
        padding: 4rem 0;
    }

    .itfm-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .itfm-content h2 {
        font-size: 1.9rem;
    }

    .itfm-content p {
        font-size: 1rem;
    }

    .itfm-check-list li,
    .itfm-cross-list li {
        font-size: 1rem;
    }

    .itfm-big-no,
    .itfm-big-yes {
        font-size: 2.2rem;
    }

    .itfm-emphasis {
        font-size: 1.1rem;
    }

    .itfm-highlight-box {
        padding: 1.5rem;
        font-size: 1.05rem;
    }

    .itfm-section-heading {
        font-size: 2rem;
        max-width: 100%;
    }

    .itfm-vertical-layout {
        gap: 2rem;
    }

    .itfm-content-centered p {
        font-size: 1rem;
    }

    .itfm-content-centered .emphasis {
        font-size: 1.15rem;
    }

    .itfm-image-highlighted {
        padding: 12px;
        max-width: 100%;
    }

    .itfm-quote-box {
        padding: 2rem 1.5rem;
        font-size: 1.05rem;
    }

    .itfm-single-column h2 {
        font-size: 2rem;
    }

    .itfm-check-list-large li,
    .itfm-cross-list-large li {
        font-size: 1rem;
    }

    .itfm-final-actions {
        width: 100%;
    }

    .itfm-final-actions .btn-primary,
    .itfm-final-actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
}

/* ========================================
     JOURNEY TEMPLATE PAGE ENHANCEMENTS
     ======================================== */

.journey-template-page {
    background: var(--page-bg);
    color: var(--text-color-primary);
}

.journey-template-page .journey-template-hero {
    margin-top: 0;
}

.journey-template-page .journey-template-hero .tour-hero-overlay {
    background: linear-gradient(125deg,
            rgba(10, 14, 22, 0.8) 0%,
            rgba(10, 14, 22, 0.52) 45%,
            rgba(212, 119, 26, 0.34) 100%);
}

.journey-template-page .journey-template-hero .tour-title,
.journey-template-page .journey-template-hero .tour-subtitle,
.journey-template-page .journey-template-hero .caucasus-hero-format,
.journey-template-page .journey-template-hero .caucasus-hero-copy {
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.journey-template-page .journey-template-hero .caucasus-hero-copy {
    max-width: 760px;
    background: rgba(12, 16, 24, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    backdrop-filter: blur(4px);
}

.journey-template-page .section-header,
.journey-template-page .section-text,
.journey-template-page .caucasus-core-copy,
.journey-template-page .caucasus-day-intro,
.journey-template-page .caucasus-day-closing {
    background: var(--journey-content-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.journey-template-page .section-header,
.journey-template-page .section-text,
.journey-template-page .caucasus-core-copy,
.journey-template-page .caucasus-day-intro,
.journey-template-page .caucasus-day-closing {
    padding: 1.3rem 1.35rem;
}

.journey-template-page .section-text p,
.journey-template-page .section-header p,
.journey-template-page .accordion-content p,
.journey-template-page .accordion-body p,
.journey-template-page .caucasus-overview-card p,
.journey-template-page .caucasus-day-content p,
.journey-template-page .caucasus-day-wide-text p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-day-wide img {
    height: clamp(360px, 50vw, 540px);
}

.journey-template-page .section-title,
.journey-template-page .caucasus-overview-card h3,
.journey-template-page .caucasus-day-content h3,
.journey-template-page .caucasus-day-wide-text h3,
.journey-template-page .caucasus-accordion summary {
    color: var(--text-color-primary);
}

.journey-template-page .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    background: rgba(212, 119, 26, 0.15);
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journey-template-page .section-tag::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f5a0";
    color: #c66910;
    font-size: 1rem;
}

.journey-template-page .caucasus-overview .section-tag::before {
    content: "\f201";
}

.journey-template-page .caucasus-flow .section-tag::before {
    content: "\f074";
}

.journey-template-page .journey-template-practical .section-title::before,
.journey-template-page .journey-template-faq .section-title::before,
.journey-template-page .journey-template-investment .section-title::before,
.journey-template-page .journey-template-related .section-title::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5rem;
    color: #c96f15;
}

.journey-template-page .journey-template-practical .section-title::before {
    content: "\f017";
}

.journey-template-page .journey-template-practical {
    padding-top: 3rem;
}

.journey-template-page .journey-template-practical .stat-label {
    color: var(--text-color-muted);
}

.journey-template-page .journey-template-practical .stat-value {
    color: var(--text-color-primary);
}

.journey-template-page .journey-template-practical .tour-quick-stats {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 1rem;
}

.journey-template-page .journey-template-practical .quick-stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding: 1.25rem 1rem;
}

.journey-template-page .journey-template-practical .quick-stat i {
    font-size: 1.25rem;
    color: #d4771a;
}

.journey-template-page .journey-template-faq .section-title::before {
    content: "\f059";
}

.journey-template-page .journey-template-investment .section-title::before {
    content: "\f3d1";
}

.journey-template-page .journey-template-related .section-title::before {
    content: "\f0b1";
}

.journey-template-page .caucasus-overview-card,
.journey-template-page .quick-stat,
.journey-template-page .caucasus-day-block,
.journey-template-page .caucasus-day-wide,
.journey-template-page .caucasus-accordion details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.journey-template-page .caucasus-overview-card {
    transition:
        transform 0.26s ease,
        box-shadow 0.26s ease;
}

.journey-template-page .caucasus-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
    background: var(--card-hover-bg);
}

.journey-template-page .journey-template-departures .stat-label {
    color: var(--text-color-muted);
}

.journey-template-page .journey-template-departures .stat-value {
    color: var(--text-color-primary);
}

.journey-template-page .journey-template-departures .tour-quick-stats {
    max-width: 560px;
    margin: 0 auto 2rem;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
}

.journey-template-page .journey-template-departures .quick-stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding: 1.25rem 1rem;
}

.journey-template-page .journey-template-departures .quick-stat i {
    font-size: 1.3rem;
    color: #d4771a;
}

.journey-template-page .journey-template-departures .stat-label {
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.journey-template-page .journey-template-departures .stat-value {
    font-size: 1.05rem;
    font-weight: 700;
}

.journey-template-page .caucasus-overview-card h3::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c8";
    margin-right: 0.5rem;
    color: #d4771a;
    font-size: 0.9rem;
}

.journey-template-page .journey-template-compare .caucasus-overview-card:nth-child(1) h3::before {
    content: "\f21c";
}

.journey-template-page .journey-template-compare .caucasus-overview-card:nth-child(2) h3::before {
    content: "\f1b9";
}

.journey-template-page .journey-template-testimonials .caucasus-overview-card h3::before {
    content: "\f10d";
}

.journey-template-page .journey-template-related .caucasus-overview-card h3::before {
    content: "\f14e";
}

.journey-template-page .caucasus-accordion summary {
    background: linear-gradient(90deg,
            rgba(212, 119, 26, 0.15),
            rgba(212, 119, 26, 0.04));
}

.journey-template-page .journey-template-brand-line {
    background: linear-gradient(135deg, #10151d 0%, #1b2838 100%);
    color: #ffffff;
}

.journey-template-page .journey-template-brand-line .section-title,
.journey-template-page .journey-template-brand-line .section-title span {
    color: #ffffff;
}

.journey-template-page .tour-hero-actions .btn-outline,
.journey-template-page .hiw-final-actions .btn-primary,
.journey-template-page .journey-template-related .btn-outline {
    border-width: 2px;
}

.journey-template-page .journey-template-investment .tour-hero-actions {
    justify-content: center;
}

.journey-template-page .journey-template-departures .tour-hero-actions {
    justify-content: center;
}

.journey-template-page .journey-template-departures .section-header p {
    max-width: 760px;
    margin: 0.85rem auto 0;
    text-align: center;
}

.journey-template-page .journey-template-departures .quick-stat {
    align-items: flex-start;
    text-align: left;
    gap: 0.9rem;
}

.journey-template-page .journey-template-departures .quick-stat i {
    font-size: 1.65rem;
    margin-top: 0.15rem;
}

.journey-template-page .journey-template-departures .departure-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.journey-template-page .journey-template-departures .slot-status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.journey-template-page .journey-template-departures .status-open {
    background: rgba(26, 125, 62, 0.14);
    color: #176f3a;
}

.journey-template-page .journey-template-departures .status-limited {
    background: rgba(212, 119, 26, 0.18);
    color: #9f4f06;
}

.journey-template-page .journey-template-departures .departures-note {
    max-width: 720px;
    margin: 0.25rem auto 1.4rem;
    text-align: center;
    color: var(--text-color-secondary);
    line-height: 1.7;
}

.journey-template-page .journey-template-related {
    margin-bottom: 2.5rem;
}

.journey-template-page .journey-template-inclusions .journey-inclusions-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.journey-template-page .journey-template-inclusions .journey-inclusions-accordion summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.4rem;
    color: #c96f15;
    line-height: 1;
    transition: transform 0.25s ease;
}

.journey-template-page .journey-template-inclusions .journey-inclusions-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.journey-template-page .journey-template-inclusions .inclusion-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
}

.journey-template-page .journey-template-inclusions .inclusion-list li {
    color: var(--text-color-secondary);
    line-height: 1.75;
    margin-bottom: 0.6rem;
}

.journey-template-page .journey-template-inclusions .inclusion-list li:last-child {
    margin-bottom: 0;
}

.journey-template-page .journey-template-stays .accommodation-flip {
    position: relative;
    perspective: 1200px;
    cursor: pointer;
}

.journey-template-page .journey-template-stays .accommodation-flip-inner {
    position: relative;
    transform-style: preserve-3d;
}

.journey-template-page .journey-template-stays .accommodation-flip-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    object-fit: cover;
    object-position: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.journey-template-page .journey-template-stays .accommodation-flip-front {
    position: relative;
    inset: auto;
    transform: rotateY(0deg);
}

.journey-template-page .journey-template-stays .accommodation-flip-back {
    transform: rotateY(-180deg);
}

.journey-template-page .journey-template-stays .accommodation-flip.flipped .accommodation-flip-front {
    transform: rotateY(180deg);
}

.journey-template-page .journey-template-stays .accommodation-flip.flipped .accommodation-flip-back {
    transform: rotateY(0deg);
}

.journey-template-page .journey-template-stays .accommodation-flip.flipped img {
    transform: none;
}

.journey-template-page .journey-template-related .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.journey-template-page .journey-template-related .btn-outline::after {
    content: "\2192";
    font-weight: 700;
}

.journey-template-page .journey-template-fit .section-grid {
    align-items: stretch;
}

.journey-template-page .journey-template-fit .section-text {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.journey-template-page .journey-template-fit .section-title {
    min-height: 3.2rem;
}

@media (max-width: 968px) {
    .journey-template-page .journey-template-hero .caucasus-hero-copy {
        padding: 0.9rem 1rem;
    }

    .journey-template-page .section-header,
    .journey-template-page .section-text,
    .journey-template-page .caucasus-core-copy,
    .journey-template-page .caucasus-day-intro,
    .journey-template-page .caucasus-day-closing {
        padding: 1.1rem 1rem;
    }
}

@media (max-width: 640px) {
    .journey-template-page .section-tag {
        font-size: 0.86rem;
    }

    .journey-template-page .section-tag::before {
        font-size: 0.92rem;
    }

    .journey-template-page .section-text,
    .journey-template-page .section-header {
        border-radius: 12px;
    }
}

/* Unification and theme overrides for Caucasus layout sections on journey pages */
.journey-template-page .caucasus-snapshot {
    background: transparent;
}

.journey-template-page .caucasus-snapshot .quick-stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .caucasus-snapshot .stat-label {
    color: var(--text-color-muted);
}

.journey-template-page .caucasus-snapshot .stat-value {
    color: var(--text-color-primary);
}

.journey-template-page .caucasus-micro-hook {
    background: transparent;
}

.journey-template-page .caucasus-micro-hook p {
    color: var(--text-color-primary);
}

.journey-template-page .caucasus-core-promise {
    background: transparent;
}

.journey-template-page .caucasus-core-copy p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-overview {
    background: transparent;
}

.journey-template-page .caucasus-overview .container {
    background: var(--journey-content-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .caucasus-overview-intro {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-overview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .caucasus-overview-card h3 {
    color: var(--text-color-primary);
}

.journey-template-page .caucasus-overview-card p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-day-content {
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
}

.journey-template-page .caucasus-day-content h3 {
    color: var(--text-color-primary);
}

.journey-template-page .caucasus-day-content p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-day-wide-text {
    background: var(--card-bg);
}

.journey-template-page .caucasus-day-wide-text h3 {
    color: var(--text-color-primary);
}

.journey-template-page .caucasus-day-wide-text p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-day-closing p {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-flow {
    background: transparent;
}

.journey-template-page .caucasus-flow-closing {
    color: var(--text-color-secondary);
}

.journey-template-page .caucasus-accordion details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .caucasus-accordion summary {
    color: var(--text-color-primary);
}

.journey-template-page .story-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .story-card:hover {
    box-shadow: var(--card-hover-shadow);
    background: var(--card-hover-bg);
}

.journey-template-page .story-content h3 {
    color: var(--text-color-primary);
}

.journey-template-page .story-content p {
    color: var(--text-color-secondary);
}

.journey-template-page .story-meta h4 {
    color: var(--text-color-primary);
}

.journey-template-page .story-meta span {
    color: var(--text-color-muted);
}



/* ========================================
   INSIGHT ON WHEELS PAGE STYLES
   ======================================== */

/* Hero Section */
.iow-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iow-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.iow-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.0);
}

.iow-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.45),
            rgba(26, 77, 46, 0.35));
    z-index: 2;
}

.iow-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.iow-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.iow-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.iow-hero-secondary {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f0811a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.iow-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Section 2: Not a Webinar */
.iow-not-webinar {
    padding: 8rem 0;
    background: var(--journey-content-bg, #f8f9fa);
}

.iow-not-webinar .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.iow-not-webinar .section-title span {
    color: var(--primary);
    font-weight: 800;
}

.iow-webinar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.iow-webinar-card {
    background: var(--card-bg, white);
    border: 1px solid var(--card-border, transparent);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow, 0 5px 20px rgba(0, 0, 0, 0.08));
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.iow-webinar-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover-bg, var(--card-bg, white));
    box-shadow: var(--card-hover-shadow, 0 15px 40px rgba(0, 0, 0, 0.15));
}

.iow-webinar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
}

.iow-webinar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
}

.iow-webinar-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, #555);
    margin-bottom: 0.8rem;
}

/* Section 3: What Actually Happens */
.iow-what-happens {
    padding: 8rem 0;
}

.iow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iow-grid.iow-reverse {
    direction: rtl;
}

.iow-grid.iow-reverse>* {
    direction: ltr;
}

.iow-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.iow-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.iow-image:hover img {
    transform: scale(1.05);
}

.iow-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* ===== COMPARE FLIP CARDS ===== */

.journey-template-page .journey-template-compare .compare-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.journey-template-page .journey-template-compare .compare-flip-card {
    perspective: 1200px;
    height: 700px;
    cursor: pointer;
}

.journey-template-page .journey-template-compare .compare-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.journey-template-page .journey-template-compare .compare-flip-card.flipped .compare-flip-card-inner {
    transform: rotateY(180deg);
}

.journey-template-page .journey-template-compare .compare-flip-front,
.journey-template-page .journey-template-compare .compare-flip-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.journey-template-page .journey-template-compare .compare-flip-front {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.journey-template-page .journey-template-compare .compare-flip-back {
    transform: rotateY(180deg);
    background: #1c1f24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--card-shadow);
}

.journey-template-page .journey-template-compare .compare-flip-front img,
.journey-template-page .journey-template-compare .compare-flip-back img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.journey-template-page .journey-template-compare .compare-flip-content {
    padding: 1.4rem 1.6rem;
    flex: 1;
    overflow-y: auto;
}

.journey-template-page .journey-template-compare .compare-flip-front h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color-primary);
    margin-bottom: 0.75rem;
}

.journey-template-page .journey-template-compare .compare-flip-back h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.journey-template-page .journey-template-compare .compare-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #d4771a;
    margin: 0.9rem 0 0.4rem;
    display: block;
}

.journey-template-page .journey-template-compare .compare-flip-content p:not(.compare-label) {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-color-secondary);
    margin-bottom: 0.5rem;
}

.journey-template-page .journey-template-compare .compare-flip-back .compare-flip-content p:not(.compare-label) {
    color: #bbb;
}

.journey-template-page .journey-template-compare .compare-flip-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.journey-template-page .journey-template-compare .compare-flip-content ul li {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-color-secondary);
    margin-bottom: 0.25rem;
}

.journey-template-page .journey-template-compare .compare-flip-back .compare-flip-content ul li {
    color: #ccc;
}

.journey-template-page .journey-template-compare .compare-flip-hint {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.76rem;
    color: #d4771a;
    font-style: italic;
    opacity: 0.85;
}

.journey-template-page .journey-template-compare .compare-closing {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--dark);
}

@media (max-width: 768px) {
    .journey-template-page .journey-template-compare .compare-cards-row {
        grid-template-columns: 1fr;
    }

    .journey-template-page .journey-template-compare .compare-flip-card {
        height: 680px;
    }
}

.iow-sub-title {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.iow-flow h4,
.iow-after-session h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.iow-flow-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.iow-flow-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
}

.iow-flow-list i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.iow-after-session p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 0.8rem;
}

.iow-after-session strong {
    color: var(--primary);
    font-weight: 700;
}

/* Section 4: Who Is It For */
.iow-who-for {
    padding: 8rem 0;
    background: var(--journey-content-bg, #f8f9fa);
}

.iow-for-lists {
    margin-top: 2rem;
}

.iow-intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
}

.iow-for-yes,
.iow-for-no {
    margin-bottom: 3rem;
}

.iow-check-list,
.iow-cross-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.iow-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
}

.iow-check-list i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.iow-cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-secondary, var(--gray));
    opacity: 0.7;
}

.iow-cross-list i {
    color: var(--text-color-muted, #999);
    font-size: 1.4rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Section 5: About the Hosts */
.iow-hosts {
    padding: 8rem 0;
}

.iow-hosts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.iow-hosts-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.iow-hosts-image img {
    width: 100%;
    height: auto;
    display: block;
}

.iow-host-bio {
    margin-bottom: 3rem;
}

.iow-host-bio:last-child {
    margin-bottom: 0;
}

.iow-host-bio h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.iow-host-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 1rem;
}

.iow-highlight {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Section 6: Upcoming Session Details */
.iow-upcoming {
    padding: 8rem 0;
    background: linear-gradient(135deg,
            var(--secondary) 0%,
            var(--primary) 100%);
}

.iow-upcoming-card {
    background: var(--card-bg, white);
    border: 1px solid var(--card-border, transparent);
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow, 0 20px 60px rgba(0, 0, 0, 0.2));
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.iow-upcoming-card h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 3rem;
}

.iow-session-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.iow-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.iow-detail-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.iow-detail-item>div {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-muted, #999);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.detail-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    line-height: 1.5;
}

.iow-signup-btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Section 7: Sign-Up Form */
.iow-signup {
    padding: 8rem 0;
    background: var(--journey-content-bg, #f8f9fa);
}

.iow-signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.iow-signup-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1rem;
}

.iow-form-note {
    font-size: 1.1rem;
    color: var(--text-color-muted, #666);
    font-style: italic;
}

.iow-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg, white);
    border: 1px solid var(--card-border, transparent);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow, 0 10px 40px rgba(0, 0, 0, 0.1));
}

.iow-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.iow-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.iow-form-group {
    display: flex;
    flex-direction: column;
}

.iow-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 0.35rem;
}

.required {
    color: var(--primary);
}

.iow-form-group input,
.iow-form-group select,
.iow-form-group textarea {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    border: 2px solid var(--card-border, #e0e0e0);
    background: var(--journey-content-bg, #ffffff);
    color: var(--text-color-primary, var(--dark));
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Specific styling for select options to ensure they are visible in dark theme */
.iow-form-group select option {
    background-color: #1a202c;
    /* match card dark bg */
    color: #ffffff;
}

[data-theme="adventure-light"] .iow-form-group select option {
    background-color: #ffffff;
    color: #0f1419;
}

.iow-form-group input:focus,
.iow-form-group select:focus,
.iow-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.iow-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.iow-radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.iow-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.iow-radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.iow-radio-label span {
    font-weight: 500;
}

.iow-submit-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    width: 100%;
}

/* Section 8: What Happens After Join */
.iow-after-join {
    padding: 8rem 0;
}

.iow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.iow-step {
    text-align: center;
    position: relative;
}

.iow-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 119, 26, 0.3);
}

.iow-step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.iow-step p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color-secondary, #555);
    font-weight: 500;
}

/* Section 9: Final CTA */
.iow-final-cta {
    padding: 8rem 0;
    background: var(--journey-content-bg, #f8f9fa);
}

.iow-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iow-final-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.iow-final-content h2 span {
    color: var(--primary);
    display: block;
    font-size: 3.2rem;
    margin-top: 0.5rem;
}

.iow-final-subtitle {
    font-size: 1.4rem;
    color: var(--text-color-muted, #666);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.iow-final-outcomes {
    margin: 2.5rem 0;
}

.iow-final-outcomes p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-color-secondary, #555);
    margin-bottom: 1rem;
}

.iow-final-outcomes i {
    font-size: 1.5rem;
    color: var(--primary);
}

.iow-final-btn {
    margin-top: 2rem;
    display: inline-block;
}

.iow-final-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.iow-final-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .iow-hero {
        height: 70vh;
        min-height: 500px;
    }

    .iow-hero-title {
        font-size: 3rem;
    }

    .iow-hero-subtitle {
        font-size: 1.2rem;
    }

    .iow-hero-secondary {
        font-size: 1.3rem;
    }

    .iow-webinar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .iow-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .iow-grid.iow-reverse {
        direction: ltr;
    }

    .iow-hosts-content {
        grid-template-columns: 1fr;
    }

    .iow-session-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .iow-form-row {
        grid-template-columns: 1fr;
    }

    .iow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .iow-final-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .iow-hero {
        height: auto;
        min-height: 600px;
        padding: 6rem 0;
    }

    .iow-hero-title {
        font-size: 2.2rem;
    }

    .iow-hero-subtitle {
        font-size: 1.05rem;
    }

    .iow-hero-secondary {
        font-size: 1.15rem;
    }

    .iow-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .iow-hero-actions .btn-primary,
    .iow-hero-actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .iow-not-webinar,
    .iow-what-happens,
    .iow-who-for,
    .iow-hosts,
    .iow-upcoming,
    .iow-signup,
    .iow-after-join,
    .iow-final-cta {
        padding: 4rem 0;
    }

    .iow-not-webinar .section-title,
    .iow-upcoming-card h2 {
        font-size: 2rem;
    }

    .iow-content h2 {
        font-size: 2rem;
    }

    .iow-upcoming-card {
        padding: 2.5rem 1.5rem;
    }

    .iow-form-container {
        padding: 2rem 1.5rem;
    }

    .iow-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .iow-final-content h2 {
        font-size: 2rem;
    }

    .iow-final-content h2 span {
        font-size: 2.5rem;
    }

    .iow-submit-btn {
        font-size: 1.05rem;
        padding: 1rem 2rem;
    }

    .iow-signup-btn,
    .iow-final-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* ========================================
   APPLICATION FORM PAGE STYLES
   ======================================== */

/* Apply Section */
.apply-section {
    padding: 8rem 0;
    background: transparent;
    min-height: 100vh;
}

.apply-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.apply-header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 2rem;
    line-height: 1.2;
}

.apply-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 1.5rem;
}

.apply-reassurance {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color-secondary, #666);
    margin-bottom: 1.5rem;
}

.apply-reassurance strong {
    color: var(--primary);
}

.apply-time {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

.apply-time i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Form Container */
.apply-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg, white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--card-shadow, 0 10px 50px rgba(0, 0, 0, 0.1));
    border: 1px solid var(--card-border, transparent);
}

/* Progress Bar */
.form-progress {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 16.67%;
}

.progress-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
}

/* Form Steps */
.apply-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-secondary, #666);
    margin-bottom: 2.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 0.8rem;
}

.question-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 1.2rem;
    display: block;
    line-height: 1.6;
}

.required {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid var(--card-border, #c0c0c0);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    background: var(--card-bg, white);
    color: var(--text-color-primary);
}

.form-group select option {
    background-color: var(--page-bg, #0f1419);
    color: var(--text-color-primary, #ffffff);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 119, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.helper-text {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Radio Groups */
.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-secondary, #555);
    padding: 0.8rem 1rem;
    border: 2px solid var(--card-border, #e0e0e0);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(212, 119, 26, 0.05);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--card-border, #ddd);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked~.radio-custom {
    border-color: var(--primary);
    background: var(--primary);
}

.radio-label input[type="radio"]:checked~.radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked~span:last-child {
    color: var(--text-color-primary, var(--dark));
    font-weight: 600;
}

/* Selected radio label styling */
.radio-label:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.1),
            rgba(26, 77, 46, 0.08));
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(212, 119, 26, 0.15);
}

/* Alternative selector for radio selection (JS adds this class) */
.radio-label.radio-selected {
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.12),
            rgba(26, 77, 46, 0.1));
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(212, 119, 26, 0.15);
}

/* Filled input styling (JS adds this class) */
.form-group input.input-filled,
.form-group select.input-filled,
.form-group textarea.input-filled {
    border-color: var(--primary);
    border-width: 2px;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.06),
            rgba(26, 77, 46, 0.04));
    box-shadow: 0 2px 6px rgba(212, 119, 26, 0.1);
}

.form-group input.input-filled:focus,
.form-group select.input-filled:focus,
.form-group textarea.input-filled:focus {
    background: var(--card-bg, white);
    box-shadow:
        0 0 0 3px rgba(212, 119, 26, 0.1),
        0 2px 6px rgba(212, 119, 26, 0.1);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--card-border, #f0f0f0);
    gap: 1rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

#nextBtn,
#submitBtn {
    margin-left: auto;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .apply-section {
        padding: 6rem 0;
    }

    .apply-header h1 {
        font-size: 2.5rem;
    }

    .apply-intro {
        font-size: 1.15rem;
    }

    .apply-form-container {
        padding: 2.5rem 2rem;
    }

    .step-title {
        font-size: 1.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .apply-section {
        padding: 4rem 0;
    }

    .apply-header {
        margin-bottom: 3rem;
    }

    .apply-header h1 {
        font-size: 2rem;
    }

    .apply-intro {
        font-size: 1.05rem;
    }

    .apply-reassurance {
        font-size: 1rem;
    }

    .apply-form-container {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .form-progress {
        margin-bottom: 2rem;
    }

    .step-title {
        font-size: 1.6rem;
    }

    .step-subtitle {
        font-size: 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary,
    #nextBtn,
    #submitBtn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    #prevBtn {
        order: 2;
    }

    #nextBtn,
    #submitBtn {
        order: 1;
    }
}

/* ===========================
   FAQ PAGE STYLES
   =========================== */

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 0 8rem;
    overflow: hidden;
}

.faq-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--secondary) 100%);
    z-index: 1;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(212, 119, 26, 0.95) 0%,
            rgba(26, 77, 46, 0.95) 100%);
    z-index: 2;
}

.faq-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: var(--font-display);
}

.faq-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.faq-hero .btn-primary {
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

/* FAQ Category Section */
.faq-category {
    padding: 8rem 0;
    position: relative;
}

.faq-category.faq-alt {
    background: transparent;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
}

.category-number {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.6;
}

.category-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color-primary, var(--dark));
    font-family: var(--font-display);
    margin: 0;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg, white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow, 0 2px 10px rgba(0, 0, 0, 0.05));
    transition:
        all 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid var(--card-border, transparent);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.faq-item.active {
    box-shadow: 0 8px 30px rgba(212, 119, 26, 0.15);
    border-left-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--card-hover-bg, #f9f9f9);
}

.faq-item.active .faq-question {
    background: var(--card-hover-bg, rgba(212, 119, 26, 0.05));
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color-primary, var(--dark));
    margin: 0;
    flex: 1;
    padding-right: 2rem;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.2rem 2.5rem 2.5rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 1.2rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
}

.faq-answer ul li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Final CTA Section */
.faq-final-cta {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.faq-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color-primary, var(--dark));
    margin-bottom: 2rem;
    font-family: var(--font-display);
    line-height: 1.2;
}

.faq-cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color-secondary, #555);
    margin-bottom: 3rem;
}

.faq-cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-actions .btn-primary,
.faq-cta-actions .btn-outline {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .faq-hero {
        min-height: 50vh;
        padding: 10rem 0 6rem;
    }

    .faq-hero-title {
        font-size: 3rem;
    }

    .faq-hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-number {
        font-size: 3.5rem;
    }

    .category-title {
        font-size: 2.2rem;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 1rem;
    }

    .faq-cta-content h2 {
        font-size: 2.5rem;
    }

    .faq-cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .faq-hero {
        padding: 8rem 0 5rem;
    }

    .faq-hero-title {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-hero-content .btn-primary {
        width: 100% !important;
        justify-content: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .faq-category {
        padding: 4rem 0;
    }

    .faq-category-header {
        margin-bottom: 2.5rem;
    }

    .category-number {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.95rem;
    }

    .faq-final-cta {
        padding: 5rem 0;
    }

    .faq-cta-content h2 {
        font-size: 2rem;
    }

    .faq-cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-cta-actions .btn-primary,
    .faq-cta-actions .btn-outline {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   JOURNEY DETAILS PAGE STYLING & CARD SPACING OVERRIDES
   ========================================================================== */

/* Maintain standard 8rem 0 padding (command gap) between all main sections */
.journey-template-page main>section {
    padding: 8rem 0;
}

/* Exclude hero sections from the standard section padding */
.journey-template-page main>section.tour-hero,
.journey-template-page main>section.journey-template-hero {
    padding: 0;
}

/* Use smaller compact padding (3.5rem 0) for the snapshot stats row */
.journey-template-page main>section.caucasus-snapshot {
    padding: 3.5rem 0;
}

/* Adjust card layout gaps to clean 2.5rem spacing to prevent clustering */
.journey-template-page .compare-cards-row,
.journey-template-page .caucasus-overview-grid,
.journey-template-page .stories-grid,
.journey-template-page .journey-cards {
    gap: 2.5rem;
}

/* Responsive adjustments for section padding on smaller devices */
@media (max-width: 768px) {
    .journey-template-page main>section {
        padding: 4rem 0;
    }

    .journey-template-page main>section.tour-hero,
    .journey-template-page main>section.journey-template-hero {
        padding: 0;
    }

    .journey-template-page main>section.caucasus-snapshot {
        padding: 2.5rem 0;
    }

    .journey-template-page .tour-hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .journey-template-page .tour-hero-actions a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* Mobile section dividers for all pages */
@media (max-width: 968px) {
    section:not([class*="hero"]):not(.hero):not(.final-cta-section):not(.cta-section):not(.apply-section):not(.contact-section):not(.footer):not(.about-invitation):not(.faq-section):not(.hiw-final-cta):not(.insight-cta):not(.twncm-explore-section):not(.twncm-final-invitation):not(.twncm-full-banner):not(.journal-cta-block):not(.itfm-section-10):not(.iow-final-cta) {
        position: relative;
        padding-top: 3rem !important;
        padding-bottom: 3.5rem !important;
    }

    section:not([class*="hero"]):not(.hero):not(.final-cta-section):not(.cta-section):not(.apply-section):not(.contact-section):not(.footer):not(.about-invitation):not(.faq-section):not(.hiw-final-cta):not(.insight-cta):not(.twncm-explore-section):not(.twncm-final-invitation):not(.twncm-full-banner):not(.journal-cta-block):not(.itfm-section-10):not(.iow-final-cta)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: #e07b39;
        /* Orange */
        border-radius: 2px;
        display: block;
    }

    .about-section {
        border-bottom: none !important;
    }

    section.no-mobile-divider::after {
        display: none !important;
    }

    .no-padding-mobile {
        padding: 0 !important;
    }
}

/* ===== INSIGHT ON WHEELS SIGN-UP MODAL STYLE ===== */
.iow-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.iow-modal.active {
    display: flex;
}

.iow-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(8px);
}

.iow-modal-content {
    position: relative;
    background: var(--card-bg, #1a202c);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 24px;
    max-width: 680px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    padding: 24px;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="adventure-light"] .iow-modal-content {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.iow-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.6));
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="adventure-light"] .iow-modal-close {
    background: rgba(0, 0, 0, 0.03);
    color: #333;
}

.iow-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.iow-modal-content::-webkit-scrollbar {
    width: 6px;
}

.iow-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.iow-modal-content::-webkit-scrollbar-thumb {
    background: var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 3px;
}

/* ============================================================
   SHARED LEGAL PAGES STYLING
   ============================================================ */
.legal-page {
    background-color: var(--page-bg, #0f1419);
    color: var(--text-color-primary, #ffffff);
    padding-top: 100px;
    /* Offset for fixed navbar */
    min-height: 100vh;
}

.legal-header {
    background: radial-gradient(circle at top right, rgba(212, 119, 26, 0.05) 0%, transparent 60%);
    border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.05));
    padding: 6rem 0 3rem;
    text-align: center;
}

.legal-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.legal-title span {
    color: var(--primary, #d4771a);
    background: var(--gradient, linear-gradient(135deg, #d4771a, #ff6b35));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.6));
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-meta span i {
    color: var(--primary, #d4771a);
}

.legal-body {
    padding: 4rem 0 8rem;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar ToC Styling */
.legal-sidebar {
    position: sticky;
    top: 120px;
    /* Below fixed navbar */
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 15px;
}

.legal-sidebar::-webkit-scrollbar {
    width: 4px;
}

.legal-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.legal-sidebar::-webkit-scrollbar-thumb {
    background: var(--card-border, rgba(255, 255, 255, 0.1));
    border-radius: 4px;
}

.legal-toc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary, #d4771a);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.08));
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-toc-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
    line-height: 1.4;
}

.legal-toc-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.legal-toc-link.active {
    color: var(--primary, #d4771a);
    font-weight: 600;
    padding-left: 8px;
    border-left: 2px solid var(--primary, #d4771a);
}

/* Legal Content Area Styling */
.legal-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color-secondary, rgba(255, 255, 255, 0.8));
}

.legal-section {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--card-border, rgba(255, 255, 255, 0.04));
    scroll-margin-top: 120px;
    /* Offset for sticky scrolling */
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 span {
    color: var(--primary, #d4771a);
}

.legal-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    margin-bottom: 1.5rem;
}

.legal-section p strong {
    color: #ffffff;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 0.8rem;
}

.legal-section li::marker {
    color: var(--primary, #d4771a);
}

/* Policy highlights and callout cards */
.legal-callout {
    background: var(--card-bg, rgba(255, 255, 255, 0.015));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.05));
    border-left: 4px solid var(--primary, #d4771a);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.legal-callout p:last-child {
    margin-bottom: 0;
}

.legal-contact-box {
    background: var(--card-bg, rgba(255, 255, 255, 0.015));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.legal-contact-box h3 {
    margin-top: 0 !important;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.legal-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 1.5rem;
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.legal-contact-item i {
    color: var(--primary, #d4771a);
    font-size: 1.2rem;
    margin-top: 4px;
}

.legal-contact-item div {
    display: flex;
    flex-direction: column;
}

.legal-contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
}

.legal-contact-value {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-contact-value:hover {
    color: var(--primary, #d4771a);
}

/* Light Theme overrides for Legal Page */
html[data-theme="adventure-light"] .legal-page {
    background-color: #f8f9fa;
    color: #333333;
}

html[data-theme="adventure-light"] .legal-header {
    background: radial-gradient(circle at top right, rgba(212, 119, 26, 0.05) 0%, transparent 60%);
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="adventure-light"] .legal-title {
    color: #111111;
}

html[data-theme="adventure-light"] .legal-meta {
    color: #666666;
}

html[data-theme="adventure-light"] .legal-toc-title {
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="adventure-light"] .legal-toc-link {
    color: #555555;
}

html[data-theme="adventure-light"] .legal-toc-link:hover {
    color: #000000;
}

html[data-theme="adventure-light"] .legal-toc-link.active {
    color: var(--primary, #d4771a);
    border-color: var(--primary, #d4771a);
}

html[data-theme="adventure-light"] .legal-content {
    color: #444444;
}

html[data-theme="adventure-light"] .legal-section {
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="adventure-light"] .legal-section h2,
html[data-theme="adventure-light"] .legal-section h3,
html[data-theme="adventure-light"] .legal-section p strong {
    color: #111111;
}

html[data-theme="adventure-light"] .legal-callout,
html[data-theme="adventure-light"] .legal-contact-box {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

html[data-theme="adventure-light"] .legal-contact-box h3 {
    color: #111111;
}

html[data-theme="adventure-light"] .legal-contact-label {
    color: #888888;
}

html[data-theme="adventure-light"] .legal-contact-value {
    color: #111111;
}

html[data-theme="adventure-light"] .legal-contact-value:hover {
    color: var(--primary, #d4771a);
}

/* Responsive legal styles */
@media (max-width: 968px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        padding-right: 0;
        border-right: none;
        margin-bottom: 20px;
    }

    .legal-toc-title {
        margin-bottom: 1rem;
    }

    .legal-toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .legal-toc-link {
        font-size: 0.85rem;
        background: var(--card-bg, rgba(255, 255, 255, 0.02));
        border: 1px solid var(--card-border, rgba(255, 255, 255, 0.05));
        padding: 6px 12px;
        border-radius: 20px;
    }

    .legal-toc-link:hover {
        padding-left: 12px;
        background: var(--card-bg, rgba(255, 255, 255, 0.04));
    }

    .legal-toc-link.active {
        padding-left: 12px;
        border-left: 1px solid var(--primary, #d4771a);
        background: rgba(212, 119, 26, 0.08);
    }

    html[data-theme="adventure-light"] .legal-toc-link {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.08);
    }

    html[data-theme="adventure-light"] .legal-toc-link.active {
        background: rgba(212, 119, 26, 0.05);
    }
}

/* Custom Journey page section-header centering and emphasis overrides */
.journey-template-page .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.journey-template-page .section-header h2,
.journey-template-page .section-header p {
    margin-top: 0 !important;
}

.journey-template-page .section-header>*:last-child {
    margin-bottom: 0 !important;
}

.journey-template-page .emphasis {
    color: #ffffff !important;
}

[data-theme="adventure-light"] .journey-template-page .emphasis {
    color: #000000 !important;
}

/* Centering and spacing rules for Final CTA sections across all pages on mobile viewports */
@media (max-width: 968px) {

    /* How It Works Final CTA */
    .hiw-final-cta {
        padding: 4rem 0 !important;
    }

    /* Journeys Overview Final CTA */
    .insight-cta {
        padding: 4rem 0 !important;
    }

    .insight-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .insight-text .btn-primary {
        margin: 1rem auto 0 !important;
    }

    /* Travel with No Country Man Final CTA */
    .twncm-explore-section {
        padding: 4rem 0 !important;
    }

    .explore-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .explore-card a {
        width: 100% !important;
        max-width: 280px !important;
        margin: 1.5rem auto 0 !important;
    }

    /* Insight On Wheels Final CTA */
    .iow-final-cta {
        padding: 4rem 0 !important;
    }

    .iow-final-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .iow-final-outcomes {
        text-align: left !important;
        max-width: 450px !important;
        margin: 1.5rem auto !important;
    }

    .iow-final-btn {
        margin: 0 auto !important;
    }

    /* Borderless Journal Index Final CTA */
    .journal-cta-block {
        padding: 4rem 20px !important;
    }
}

@media (max-width: 640px) {

    .hiw-final-cta,
    .insight-cta,
    .twncm-explore-section,
    .iow-final-cta,
    .journal-cta-block {
        padding: 3rem 0 !important;
    }

    .journal-cta-block {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}