/* ============================================
   FORGE ACADEMY ICELAND LANDING PAGE
   Brand Colors: Forge Flame #FF7B09, Forge Coal #181615
   Fonts: Tektur (headings), Anonymous Pro (body)
   Cross-Browser Compatible & Fully Responsive
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

:root {
    /* Forge Brand Colors */
    --forge-flame: #FF7B09;
    --forge-coal: #181615;
    --forge-flame-light: #ff9033;
    --forge-flame-dark: #cc6207;
    
    /* Supporting Colors */
    --white: #FFFFFF;
    --grey-light: #F5F5F5;
    --grey-medium: #9E9E9E;
    --grey-dark: #424242;
    
    /* Typography */
    --font-heading: 'Tektur', sans-serif;
    --font-body: 'Anonymous Pro', monospace;
    
    /* Spacing - TravelMind Style (generos) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 7rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
}

/* Disable smooth scroll on iOS to prevent scroll jumping */
@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #0a0909 0%, var(--forge-coal) 50%, #0a0909 100%);
    color: var(--white);
    line-height: 1.7;
    overflow-x: clip;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Performance optimizations */
img, video {
    content-visibility: auto;
}

section {
    contain: layout style;
}

/* Exclude map section from contain to fix scroll issues */
.map-section {
    contain: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--forge-coal);
    border-left: 1px solid rgba(255, 123, 9, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--forge-flame) 0%, #ff9033 100%);
    border-radius: 6px;
    border: 2px solid var(--forge-coal);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9033 0%, var(--forge-flame) 100%);
    box-shadow: 0 0 10px rgba(255, 123, 9, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--forge-flame) var(--forge-coal);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    -ms-interpolation-mode: bicubic;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.section-title {
    color: var(--forge-flame);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 123, 9, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--forge-flame), transparent);
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Price Badge */
.main-price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.15) 0%, rgba(255, 123, 9, 0.05) 100%);
    border: 3px solid var(--forge-flame);
    border-radius: 30px;
    box-shadow: 
        0 0 40px rgba(255, 123, 9, 0.3),
        inset 0 0 30px rgba(255, 123, 9, 0.1);
    backdrop-filter: blur(10px);
}

.main-price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.main-price-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--forge-flame);
    text-shadow: 0 0 30px rgba(255, 123, 9, 0.6);
    line-height: 1;
}

/* Tour Dates Badge */
.tour-dates-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.9) 0%, rgba(24, 22, 21, 0.7) 100%);
    border: 2px solid rgba(255, 123, 9, 0.4);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.tour-dates-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.4);
}

.tour-dates-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tour-dates-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-dates-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.tour-dates-days {
    padding: 0.4rem 1rem;
    background: rgba(255, 123, 9, 0.15);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 20px;
}

.tour-dates-days span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forge-flame);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--forge-flame);
    background: transparent;
    color: var(--forge-flame);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--forge-flame);
    transition: left var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--forge-coal);
    box-shadow: 0 0 30px rgba(255, 123, 9, 0.6), 0 4px 20px rgba(255, 123, 9, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--forge-flame);
    color: var(--forge-coal);
}

.btn-primary::before {
    background: var(--forge-coal);
}

.btn-primary:hover {
    color: var(--forge-flame);
}

.btn-hero {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: transparent;
    backdrop-filter: blur(15px);
    z-index: 9999;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header.scrolled .header-phone {
    color: var(--forge-coal);
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.1) 0%, rgba(255, 123, 9, 0.05) 100%);
    border: 1px solid rgba(255, 123, 9, 0.3);
}

.header.scrolled .header-phone:hover {
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-color: var(--forge-flame);
    color: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-phone:hover {
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-color: var(--forge-flame);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.4);
}

.header-phone svg {
    stroke: var(--forge-flame);
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.header-phone:hover svg {
    stroke: var(--white);
}

@media (max-width: 768px) {
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 0.6rem;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }
    
    .header-right {
        gap: 0.5rem;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-separator {
    color: var(--forge-flame);
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
}

.logo-partner {
    display: flex;
    align-items: center;
}

.logo-curmei {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
}

.header.scrolled .logo-curmei {
    height: 38px;
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.4rem;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .logo-curmei {
        height: 30px !important;
    }
    
    .logo-separator {
        font-size: 0.9rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logo-container {
        gap: 0.6rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-curmei {
        height: 38px;
    }
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 4px 16px rgba(255, 255, 255, 0.5));
}

.header.scrolled .logo-img {
    height: 45px;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--forge-flame);
    letter-spacing: 2px;
}

.logo-academy {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    margin-left: 0.3rem;
}

/* Hamburger Menu */
.hamburger {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-normal);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--forge-flame);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--forge-flame-light);
}

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

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

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

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--forge-coal);
    z-index: 10000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

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

.sidebar-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: all var(--transition-fast);
    z-index: 10001;
}

.sidebar-close:hover {
    color: var(--forge-flame);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 5rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link:hover {
    color: var(--forge-flame);
    padding-left: 1rem;
}

.btn-sidebar {
    margin-top: 2rem;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(24, 22, 21, 0.35) 0%, 
        rgba(24, 22, 21, 0.25) 50%,
        rgba(24, 22, 21, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* Hero Logo */
.hero-logo {
    margin-bottom: var(--spacing-sm);
}

.hero-logo-img {
    height: clamp(90px, 16vw, 160px);
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
    background: rgba(255, 255, 255, 0.95);
    padding: 1.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--forge-flame);
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(255, 123, 9, 0.4);
}

.hero-logo-academy {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--white);
    opacity: 0.9;
    margin-left: 0.5rem;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-accent {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--forge-flame);
    letter-spacing: 6px;
    margin-bottom: 0.2rem;
}

.hero-location {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 5px;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--forge-flame);
    margin-top: 0.3rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6), 0 4px 25px rgba(255, 123, 9, 0.5);
}

/* Hero Info */
.hero-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: rgba(24, 22, 21, 0.75);
    border: 1px solid rgba(255, 123, 9, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-info-item svg {
    color: var(--forge-flame);
    width: 18px;
    height: 18px;
}

.hero-info-item span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Hero CTA */
.btn-hero {
    margin-top: 0;
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(255, 123, 9, 0.4);
}

.btn-hero:hover {
    box-shadow: 0 12px 40px rgba(255, 123, 9, 0.6);
}

.hero-tagline {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--forge-flame);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    z-index: 2;
    animation: scrollIndicatorFade 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--forge-flame) 0%, rgba(255, 123, 9, 0.5) 50%, transparent 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--forge-flame);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
    box-shadow: 0 0 10px var(--forge-flame), 0 0 20px rgba(255, 123, 9, 0.5);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes scrollDot {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(50px); opacity: 0; }
}

@keyframes scrollIndicatorFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

/* ============================================
   BENEFITS SECTION - STICKY SCROLL OVERLAY
   ============================================ */

.benefits {
    padding: var(--spacing-lg) 0;
    background: var(--forge-coal);
    position: relative;
}

.benefits .section-intro {
    max-width: 1200px;
    margin: 0 auto var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.benefits-stack {
    position: relative;
    width: 100%;
    padding: 0 var(--spacing-md);
}

.benefit-card-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: 80vh;
    max-height: 700px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(255, 123, 9, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-sticky:nth-of-type(1) { z-index: 1; }
.benefit-card-sticky:nth-of-type(2) { z-index: 2; }
.benefit-card-sticky:nth-of-type(3) { z-index: 3; }
.benefit-card-sticky:nth-of-type(4) { 
    z-index: 4;
    margin-bottom: var(--spacing-md);
}

.benefit-card-sticky:hover {
    transform: scale(1.01);
}

.benefit-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(1.1) contrast(1.1);
}

.benefit-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(24, 22, 21, 0.8) 0%, 
        rgba(24, 22, 21, 0.65) 50%,
        rgba(255, 123, 9, 0.3) 100%);
    z-index: 1;
}

.benefit-card-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--spacing-lg);
    text-align: center;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: rgba(255, 123, 9, 0.25);
    line-height: 0.8;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(255, 123, 9, 0.3);
}

.benefit-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.benefit-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 550px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.benefit-icon {
    display: none;
}

.benefit-content {
    padding: 0;
}

/* ============================================
   ABOUT FORGE SECTION
   ============================================ */

.about-forge {
    padding: var(--spacing-xl) 0;
    background: var(--forge-coal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 123, 9, 0.15);
    border: 1px solid var(--forge-flame);
    border-radius: 30px;
    color: var(--forge-flame);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 123, 9, 0.3);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.about-philosophy {
    padding: var(--spacing-md);
    background: rgba(255, 123, 9, 0.05);
    border-left: 3px solid var(--forge-flame);
    margin-bottom: var(--spacing-lg);
}

.about-philosophy h3 {
    color: var(--forge-flame);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.about-philosophy p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.about-stats {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--forge-flame);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 123, 9, 0.1);
    border: 2px solid rgba(255, 123, 9, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.forge-logo-large {
    max-width: 80%;
    opacity: 0.2;
    filter: brightness(0) invert(1);
}

/* ============================================
   PROGRAM TIMELINE
   ============================================ */

.program {
    padding: var(--spacing-lg) 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 123, 9, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 123, 9, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--forge-coal) 0%, #0a0909 50%, var(--forge-coal) 100%);
    position: relative;
    overflow: hidden;
}

.program::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--forge-flame), transparent);
}

/* Days Navigation */
.program-days-nav {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    overflow-x: hidden;
    padding-bottom: var(--spacing-sm);
    scroll-behavior: smooth;
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.5) 0%, rgba(24, 22, 21, 0.3) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.program-days-nav::-webkit-scrollbar {
    height: 6px;
}

.program-days-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.program-days-nav::-webkit-scrollbar-thumb {
    background: var(--forge-flame);
    border-radius: 10px;
}

.day-nav-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-width: 110px;
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.9) 0%, rgba(24, 22, 21, 0.7) 100%);
    border: 2px solid rgba(255, 123, 9, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.day-nav-btn:hover {
    border-color: rgba(255, 123, 9, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 123, 9, 0.2);
}

.day-nav-btn.active {
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-color: var(--forge-flame);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 123, 9, 0.4);
}

.day-nav-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forge-flame);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.day-nav-btn.active .day-nav-number {
    color: white;
}

.day-nav-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
    text-align: center;
}

.day-nav-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-nav-btn.active .day-nav-date {
    color: rgba(255, 255, 255, 0.9);
}

/* Program Details */
.program-details-container {
    margin-top: var(--spacing-md);
    position: relative;
    min-height: 500px;
}

.day-detail {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.day-detail.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

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

.day-detail-content {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.9) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 30px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: borderPulse 0.8s ease forwards;
}

@keyframes borderPulse {
    0% {
        border-color: rgba(255, 123, 9, 0.15);
        transform: scale(0.99);
    }
    50% {
        border-color: rgba(255, 123, 9, 0.35);
    }
    100% {
        border-color: rgba(255, 123, 9, 0.3);
        transform: scale(1);
    }
}

/* Animated corner accent */
.day-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--forge-flame) 0%, transparent 100%);
    border-radius: 30px 0 80px 0;
    opacity: 0.15;
    animation: pulseCorner 3.5s ease-in-out infinite;
}

@keyframes pulseCorner {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.03);
    }
}

/* Animated border glow */
.day-detail-content::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--forge-flame), 
        #ff9933, 
        var(--forge-flame),
        #ff9933);
    background-size: 300% 300%;
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 5s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.25;
        background-position: 100% 50%;
    }
}

.day-detail-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(255, 123, 9, 0.2);
    animation: fadeInContent 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    position: relative;
}

.day-detail-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--forge-flame) 20%,
        var(--forge-flame) 80%,
        transparent 100%);
    animation: loadingLine 1.5s ease-in-out forwards;
    animation-delay: 0.3s;
    box-shadow: 0 0 10px var(--forge-flame);
}

@keyframes loadingLine {
    0% {
        width: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.7;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-detail.active .day-detail-header {
    animation: fadeInContent 0.6s ease forwards;
    animation-delay: 0.1s;
}

.day-detail.active .day-detail-text {
    animation: fadeInContent 0.6s ease forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

.day-detail.active .day-detail-image {
    animation: fadeInContent 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.day-detail-number {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 25px rgba(255, 123, 9, 0.5);
}

.day-detail-info h3 {
    color: var(--forge-flame);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.day-detail-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-detail-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.day-detail-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.day-activities {
    margin-bottom: var(--spacing-md);
}

.day-activities h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.day-activities ul {
    list-style: none;
    margin-bottom: var(--spacing-sm);
}

.day-activities li {
    padding-left: var(--spacing-md);
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-size: 0.95rem;
}

.day-activities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--forge-flame);
    font-weight: 700;
}

.day-result {
    padding: var(--spacing-sm);
    background: rgba(255, 123, 9, 0.1);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.day-result strong {
    color: var(--forge-flame);
    font-weight: 600;
}

.day-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 123, 9, 0.3);
    height: 100%;
    min-height: 320px;
}

.day-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.4s ease;
}

.day-detail-content:hover .day-detail-image img {
    filter: brightness(1) contrast(1.15);
    transform: scale(1.05);
}

.timeline {
    position: relative;
    margin-top: var(--spacing-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--forge-flame) 0%, 
        rgba(255, 123, 9, 0.3) 50%,
        var(--forge-flame) 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-content {
    padding-left: 100px;
    position: relative;
}

.day-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--forge-coal);
    border: 3px solid var(--forge-flame);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--forge-flame);
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 123, 9, 0.5), 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
}

.timeline-item:hover .day-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 123, 9, 0.8), 0 6px 20px rgba(0, 0, 0, 0.6);
}

.day-info {
    padding: var(--spacing-lg);
    background: rgba(24, 22, 21, 0.6);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.timeline-item:hover .day-info {
    border-color: var(--forge-flame);
    box-shadow: 0 8px 30px rgba(255, 123, 9, 0.2);
}

.day-title {
    color: var(--forge-flame);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.day-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.timeline-image .image-placeholder {
    height: 100%;
    min-height: 350px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border: 1px solid rgba(255, 123, 9, 0.2);
    border-radius: 8px;
    filter: brightness(0.85) contrast(1.1);
    transition: all var(--transition-slow);
}

.timeline-item:hover .timeline-image img {
    filter: brightness(1) contrast(1.15);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 123, 9, 0.3);
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: var(--spacing-lg) 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(255, 123, 9, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0909 0%, var(--forge-coal) 50%, #0a0909 100%);
    position: relative;
    overflow: visible;
    overflow-x: clip;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 123, 9, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.iceland-map-container {
    margin: var(--spacing-md) auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iceland-map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
    max-height: 450px;
    width: 100%;
    max-width: 900px;
}

.iceland-map-wrapper:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 100px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.iceland-map-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.1) saturate(0) invert(1);
    transition: filter 0.4s ease, opacity 0.4s ease;
    opacity: 0.9;
    pointer-events: none;
}

.iceland-map-wrapper:hover .iceland-map-image {
    filter: brightness(1.4) contrast(1.15) saturate(0) invert(1);
    opacity: 1;
}

.map-pin {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 123, 9, 0.6);
    z-index: 10;
    will-change: transform;
    /* Animation removed for scroll performance */
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 10px 40px rgba(255, 123, 9, 0.8), 0 0 30px rgba(255, 123, 9, 0.6);
    border-color: rgba(255, 255, 255, 1);
}

.map-pin.active {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 15px 50px rgba(255, 123, 9, 1), 0 0 50px rgba(255, 123, 9, 0.8);
    z-index: 11;
}

.pin-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--forge-flame);
    opacity: 0;
    pointer-events: none;
}

.map-pin:hover .pin-pulse {
    animation: pinPulse 1s ease-out;
}

/* Removed pinBounce - causing scroll lag */

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.map-detail-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: rgba(24, 22, 21, 0.98);
    border: 2px solid var(--forge-flame);
    border-radius: 24px;
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 123, 9, 0.3);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 50;
    will-change: transform, opacity;
    pointer-events: none;
}

.map-detail-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.detail-card-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 123, 9, 0.2);
    border: 2px solid var(--forge-flame);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.detail-card-close:hover {
    background: var(--forge-flame);
    transform: rotate(90deg);
}

.detail-card-close svg {
    color: var(--forge-flame);
    transition: color 0.3s ease;
}

.detail-card-close:hover svg {
    color: white;
}

.detail-card-content {
    text-align: center;
    position: relative;
}

.detail-number {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(255, 123, 9, 0.6);
}

.detail-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 123, 9, 0.15);
    border: 2px solid var(--forge-flame);
    border-radius: 50%;
}

.detail-icon svg {
    color: var(--forge-flame);
    width: 48px;
    height: 48px;
}

.detail-title {
    color: var(--forge-flame);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.detail-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.detail-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 123, 9, 0.2);
    border: 2px solid var(--forge-flame);
    border-radius: 25px;
    color: var(--forge-flame);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   TARGET AUDIENCE SECTION
   ============================================ */

.target-audience {
    padding: var(--spacing-lg) 0;
    position: relative;
    background: linear-gradient(180deg, var(--forge-coal) 0%, #12110f 100%);
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/audience-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    filter: grayscale(0.3);
}

.target-audience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 123, 9, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 123, 9, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.target-audience .container {
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.audience-card {
    position: relative;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.85) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card:hover {
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.98) 0%, rgba(24, 22, 21, 0.9) 100%);
    border-color: var(--forge-flame);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 123, 9, 0.4), 0 0 60px rgba(255, 123, 9, 0.2);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-icon {
    font-size: 3rem;
    margin: 0 auto var(--spacing-md);
    color: var(--forge-flame);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.15) 0%, rgba(255, 123, 9, 0.05) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.audience-card:hover .audience-icon {
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.25) 0%, rgba(255, 123, 9, 0.15) 100%);
    border-color: var(--forge-flame);
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 10px 30px rgba(255, 123, 9, 0.4);
}

.audience-icon svg {
    color: var(--forge-flame);
    filter: drop-shadow(0 4px 12px rgba(255, 123, 9, 0.5));
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon svg {
    filter: drop-shadow(0 6px 20px rgba(255, 123, 9, 0.8));
}

.audience-card h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.audience-card:hover h3 {
    color: var(--forge-flame);
    transform: scale(1.05);
}

.audience-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.audience-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.audience-note {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.15) 0%, rgba(255, 123, 9, 0.08) 100%);
    border: 2px solid rgba(255, 123, 9, 0.4);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 123, 9, 0.3);
}

.audience-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.audience-note strong {
    color: var(--forge-flame);
    font-weight: 600;
}

/* ============================================
   PRICE SECTION
   ============================================ */

/* ============================================
   PRICE SECTION - MODERN REDESIGN
   ============================================ */

.price-section {
    padding: var(--spacing-lg) 0;
    background: 
        linear-gradient(135deg, #0a0909 0%, var(--forge-coal) 50%, #0a0909 100%);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(255, 123, 9, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(255, 123, 9, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
}

.hotel-card {
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.85) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 20px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 123, 9, 0.6);
    box-shadow: 0 25px 60px rgba(255, 123, 9, 0.2);
}

.hotel-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 123, 9, 0.2);
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.4);
}

.hotel-badge svg {
    flex-shrink: 0;
}

.hotel-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.hotel-prices {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.hotel-price-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--forge-flame);
}

.hotel-price-item .price-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.hotel-price-item .price-type svg {
    color: var(--forge-flame);
    flex-shrink: 0;
}

.hotel-price-item .price-value {
    color: var(--forge-flame);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.hotel-price-item .price-per-person {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hotel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 123, 9, 0.1);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 10px;
    color: var(--forge-flame);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hotel-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hotel-link:hover {
    background: rgba(255, 123, 9, 0.2);
    border-color: var(--forge-flame);
    transform: translateY(-2px);
}

.hotel-link:hover svg {
    transform: translate(3px, -3px);
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
}

/* Price Card with Image */
.price-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(24, 22, 21, 0.6);
    border: 2px solid rgba(255, 123, 9, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 9, 0.6);
    box-shadow: 0 25px 70px rgba(255, 123, 9, 0.2);
}

.price-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.price-card:hover .price-card-image img {
    transform: scale(1.1);
}

.price-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(24, 22, 21, 0.7) 60%,
        rgba(24, 22, 21, 0.95) 100%);
}

.price-card-content {
    padding: var(--spacing-lg);
    position: relative;
}

.price-badge {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.1) 0%, rgba(255, 123, 9, 0.05) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount .currency {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--forge-flame);
    font-weight: 700;
}

.price-amount .amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--forge-flame);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 123, 9, 0.5);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 123, 9, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 123, 9, 0.05);
    border-color: rgba(255, 123, 9, 0.4);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.4);
}

.feature-highlight > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-highlight strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.feature-highlight span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Includes Card */
.price-includes-card {
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.85) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 30px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.includes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 123, 9, 0.2);
}

.includes-header h3 {
    color: var(--forge-flame);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.includes-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.4);
}

.includes-badge svg {
    flex-shrink: 0;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--forge-flame);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.include-item:nth-child(1) { animation-delay: 0.1s; }
.include-item:nth-child(2) { animation-delay: 0.2s; }
.include-item:nth-child(3) { animation-delay: 0.3s; }
.include-item:nth-child(4) { animation-delay: 0.4s; }
.include-item:nth-child(5) { animation-delay: 0.5s; }
.include-item:nth-child(6) { animation-delay: 0.6s; }
.include-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.include-item:hover {
    background: rgba(255, 123, 9, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 123, 9, 0.15);
}

.include-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9933 100%);
    border-radius: 50%;
    color: white;
}

.include-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.include-text strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.include-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.excludes-section {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 123, 9, 0.2);
    border-radius: 16px;
    margin-bottom: var(--spacing-lg);
}

.excludes-section h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.excludes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.excludes-list li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.excludes-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: rgba(255, 123, 9, 0.5);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-excludes li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: rgba(255, 123, 9, 0.5);
}

.price-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.price-cta .btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.price-note {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* What's Included Section */
.whats-included-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.included-card {
    background: linear-gradient(135deg, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.85) 100%);
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 20px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
}

.included-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(255, 123, 9, 0.2);
}

.included-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--forge-flame);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.included-header h3 svg {
    color: var(--forge-flame);
    flex-shrink: 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.included-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 123, 9, 0.08);
    transform: translateX(5px);
}

.included-item .included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 123, 9, 0.2) 0%, rgba(255, 123, 9, 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--forge-flame);
}

.included-item .included-icon svg {
    color: var(--forge-flame);
}

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

.excluded-card {
    background: rgba(24, 22, 21, 0.6);
    border: 1px solid rgba(255, 123, 9, 0.2);
    border-radius: 20px;
    padding: var(--spacing-md);
    height: fit-content;
}

.excluded-header {
    margin-bottom: var(--spacing-sm);
}

.excluded-header h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.excluded-header h4 svg {
    color: rgba(255, 123, 9, 0.7);
    flex-shrink: 0;
}

.excluded-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.excluded-list li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.excluded-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: rgba(255, 123, 9, 0.6);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive Price Section */
@media (max-width: 1024px) {
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .whats-included-section {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .tour-dates-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .price-card-content {
        padding: var(--spacing-md);
    }
    
    .price-includes-card {
        padding: var(--spacing-md);
    }
    
    .price-amount .amount {
        font-size: 3rem;
    }
    
    .excludes-list {
        grid-template-columns: 1fr;
    }
    
    .main-price-value {
        font-size: 3rem;
    }
    
    .tour-dates-badge {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .tour-dates-icon {
        width: 40px;
        height: 40px;
    }
    
    .tour-dates-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: clip !important;
        width: 100% !important;
    }
    
    /* Header fix pe mobil */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        transform: none !important;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Blocăm scroll orizontal pe toate secțiunile EXCEPT benefits */
    section:not(.benefits) {
        overflow-x: clip !important;
    }
    
    section:not(.benefits) .container {
        overflow-x: clip !important;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-content {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .hero-info-item {
        font-size: 0.875rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.875rem;
    }
    
    .price-card-image {
        height: 200px;
    }
    
    .price-badge {
        padding: var(--spacing-sm);
    }
    
    .price-amount .currency {
        font-size: 1.5rem;
    }
    
    .price-amount .amount {
        font-size: 2.5rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .includes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .benefit-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .program-nav {
        overflow-x: hidden;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .program-nav::-webkit-scrollbar {
        display: none;
    }
    
    .day-button {
        min-width: 80px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .day-detail-content {
        padding: 1.5rem;
    }
    
    .day-detail-number {
        font-size: 3rem;
    }
    
    .day-detail-title {
        font-size: 1.25rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    /* Map Section Mobile Optimization */
    .iceland-map-wrapper {
        border-radius: 15px;
        border-width: 2px;
    }
    
    .map-pin {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .pin-number {
        font-size: 0.9rem;
    }
    
    .map-detail-card {
        width: 95%;
        max-width: none;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        border-width: 2px;
    }
    
    .detail-card-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }
    
    .detail-number {
        font-size: 3rem;
    }
    
    .detail-title {
        font-size: 1.25rem;
    }
    
    .detail-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   GALLERY TEASER
   ============================================ */

.gallery-teaser {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, #0a0909 0%, var(--forge-coal) 50%, #12110f 100%);
    position: relative;
}

.gallery-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 123, 9, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 123, 9, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--forge-flame);
    box-shadow: 0 12px 40px rgba(255, 123, 9, 0.4);
    transform: translateY(-5px);
}

.gallery-item .image-placeholder {
    height: 100%;
    transition: transform var(--transition-slow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 123, 9, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(255, 123, 9, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--forge-coal) 0%, #0f0e0d 100%);
    position: relative;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.booking-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(24, 22, 21, 0.6);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    border-color: var(--forge-flame);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 123, 9, 0.2);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--forge-flame);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 123, 9, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.highlight-item:hover .highlight-icon {
    background: rgba(255, 123, 9, 0.2);
    transform: scale(1.1);
}

.highlight-icon svg {
    color: var(--forge-flame);
}

.highlight-item strong {
    display: block;
    color: var(--forge-flame);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.booking-form-wrapper {
    padding: var(--spacing-lg);
    background: rgba(24, 22, 21, 0.6);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--forge-flame);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(24, 22, 21, 0.8);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forge-flame);
    background: rgba(255, 123, 9, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 123, 9, 0.1), 0 0 20px rgba(255, 123, 9, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--forge-flame);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.form-success {
    text-align: center;
    padding: var(--spacing-xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--forge-flame);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--forge-coal);
    font-weight: bold;
}

.form-success h3 {
    color: var(--forge-flame);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--spacing-lg) 0;
    background: 
        linear-gradient(180deg, #0f0e0d 0%, var(--forge-coal) 50%, #0a0909 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 123, 9, 0.01) 100px,
            rgba(255, 123, 9, 0.01) 200px
        );
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    background: rgba(24, 22, 21, 0.6);
    border: 1px solid rgba(255, 123, 9, 0.2);
    border-radius: 8px;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    border-color: var(--forge-flame);
    box-shadow: 0 4px 20px rgba(255, 123, 9, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 123, 9, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--forge-flame);
    font-weight: bold;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

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

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

.footer {
    padding: var(--spacing-md) 0 var(--spacing-sm);
    background: linear-gradient(180deg, var(--forge-coal) 0%, #0f0e0d 100%);
    border-top: 2px solid rgba(255, 123, 9, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--forge-flame), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-separator {
    color: var(--forge-flame);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    padding: 8px 12px;
    background: rgba(255, 123, 9, 0.08);
    border: 1px solid rgba(255, 123, 9, 0.3);
    border-radius: 12px;
    filter: drop-shadow(0 4px 20px rgba(255, 123, 9, 0.4)) brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    background: rgba(255, 123, 9, 0.12);
    border-color: rgba(255, 123, 9, 0.5);
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 25px rgba(255, 123, 9, 0.5)) brightness(1.3);
}

.footer-tagline {
    font-family: var(--font-heading);
    color: var(--forge-flame);
    font-size: 1.1rem;
    margin-top: var(--spacing-xs);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 123, 9, 0.4);
}

.footer-philosophy {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.footer-logo.partner-logo {
    filter: brightness(1.1);
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: var(--forge-flame);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column li svg {
    flex-shrink: 0;
    color: var(--forge-flame);
    opacity: 0.7;
    width: 14px;
    height: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forge-flame);
    transition: width var(--transition-fast);
}

.footer-column a:hover {
    color: var(--forge-flame);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-social-links {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 123, 9, 0.3);
    border-radius: 8px;
    color: var(--forge-flame);
    background: rgba(255, 123, 9, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.footer-social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--forge-flame);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer-social-links a:hover::before {
    width: 80px;
    height: 80px;
}

.footer-social-links a:hover {
    border-color: var(--forge-flame);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 123, 9, 0.3);
}

.footer-social-links a svg {
    position: relative;
    z-index: 1;
    transition: color var(--transition-fast);
    width: 20px;
    height: 20px;
}

.footer-social-links a:hover svg {
    color: var(--forge-coal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 123, 9, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.footer-developer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-developer a {
    color: var(--forge-flame);
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.footer-developer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--forge-flame);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-developer a:hover {
    color: var(--forge-flame-light);
}

.footer-developer a:hover::after {
    opacity: 1;
}

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

@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .about-content,
    .booking-content,
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: var(--spacing-md);
    }
    
    .audience-card {
        padding: var(--spacing-lg);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        padding-left: 80px;
    }
    
    .day-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .day-nav-btn {
        min-width: 100px;
        padding: 10px 12px;
    }
    
    .day-nav-number {
        font-size: 1.3rem;
    }
    
    .day-nav-title {
        font-size: 0.8rem;
    }
    
    .day-detail-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .day-detail-content {
        padding: var(--spacing-md);
    }
    
    .day-detail-header {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .day-detail-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .day-detail-info h3 {
        font-size: 1.4rem;
    }
    
    .day-detail-image {
        min-height: 250px;
        max-height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }
    
    .footer-partner {
        margin: var(--spacing-sm) auto 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .sidebar-nav {
        width: 100%;
        right: -100%;
    }
    
    .hero-info {
        gap: var(--spacing-sm);
    }
    
    .hero-info-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-logo-text {
        font-size: 2.5rem;
    }
    
    .hero-details {
        gap: var(--spacing-md);
    }
    
    .benefit-card-content {
        padding: var(--spacing-md);
    }
    
    .benefit-number {
        font-size: 4rem;
    }
    
    .benefit-title {
        font-size: 1.8rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .audience-card {
        padding: var(--spacing-lg);
        border-radius: 20px;
    }
    
    .audience-icon {
        width: 85px;
        height: 85px;
    }
    
    .audience-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .audience-card h3 {
        font-size: 1.25rem;
    }
    
    .audience-card p {
        font-size: 0.95rem;
    }
    
    .audience-note {
        padding: var(--spacing-md);
        border-radius: 16px;
        margin: 0 var(--spacing-sm);
    }
    
    .audience-note p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .map-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .iceland-map-wrapper {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .map-pin {
        width: 40px;
        height: 40px;
    }
    
    .pin-number {
        font-size: 1rem;
    }
    
    .map-detail-card {
        width: 95%;
        padding: var(--spacing-lg);
        border-radius: 24px;
    }
    
    .detail-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .detail-title {
        font-size: 1.6rem;
    }
    
    .detail-description {
        font-size: 1rem;
    }
    
    .location-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .location-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .map-location-card h3 {
        font-size: 1.2rem;
    }
    
    .map-location-card p {
        font-size: 0.9rem;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .price-amount .amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo-text {
        font-size: 2rem;
    }
    
    .day-nav-btn {
        min-width: 85px;
        padding: 8px 10px;
        border-radius: 12px;
    }
    
    .day-nav-number {
        font-size: 1.2rem;
        margin-bottom: 1px;
    }
    
    .day-nav-title {
        font-size: 0.7rem;
    }
    
    .day-nav-date {
        font-size: 0.6rem;
    }
    
    .day-detail-content {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .day-detail-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .day-detail-body {
        gap: 1rem;
    }
    
    .day-detail-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .day-detail-info h3 {
        font-size: 1.2rem;
    }
    
    .day-detail-date {
        font-size: 0.75rem;
    }
    
    .day-activities h4 {
        font-size: 1rem;
    }
    
    .day-activities li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .day-result {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .day-detail-image {
        min-height: 220px;
        max-height: 220px;
    }
    
    .audience-card {
        padding: var(--spacing-md);
        border-radius: 16px;
    }
    
    .audience-icon {
        width: 75px;
        height: 75px;
    }
    
    .audience-card h3 {
        font-size: 1.15rem;
    }
    
    .audience-card p {
        font-size: 0.9rem;
    }
    
    .audience-note {
        padding: var(--spacing-sm);
        border-radius: 12px;
    }
    
    .audience-note p {
        font-size: 0.95rem;
    }
    
    .iceland-map-wrapper {
        border-radius: 16px;
        border-width: 2px;
    }
    
    .iceland-map-container {
        margin: var(--spacing-md) auto;
    }
    
    .map-pin {
        width: 36px;
        height: 36px;
    }
    
    .pin-number {
        font-size: 0.9rem;
    }
    
    .map-detail-card {
        width: 95%;
        padding: var(--spacing-md);
        border-radius: 20px;
    }
    
    .detail-card-close {
        width: 36px;
        height: 36px;
        top: 15px;
        right: 15px;
    }
    
    .detail-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .detail-icon {
        width: 75px;
        height: 75px;
    }
    
    .detail-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .detail-title {
        font-size: 1.4rem;
    }
    
    .detail-description {
        font-size: 0.95rem;
    }
    
    .detail-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-info-item {
        width: 100%;
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .sidebar-content {
        padding: 4rem 2rem 2rem 2rem;
    }
    
    .sidebar-link {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 60px;
        margin: 0 auto var(--spacing-sm);
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ============================================
   CEO SECTION
   ============================================ */

.ceo-section {
    padding: var(--spacing-xxl) 0;
    background: var(--forge-coal);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--forge-flame);
}

.ceo-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 123, 9, 0.05) 100%);
    pointer-events: none;
}

.ceo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ceo-content {
    padding: var(--spacing-xl);
}

.ceo-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--forge-flame);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 123, 9, 0.1);
    border-radius: 4px;
}

.ceo-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -1px;
}

.ceo-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--forge-flame);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.ceo-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--forge-flame) 0%, transparent 100%);
    margin-bottom: var(--spacing-lg);
    border-radius: 2px;
}

.ceo-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.ceo-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--spacing-lg);
}

.ceo-image-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    overflow: hidden;
    border: 3px solid var(--forge-flame);
    box-shadow: 
        0 0 0 1px var(--forge-coal),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 123, 9, 0.2);
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ceo-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--forge-flame);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* CEO Section - Responsive */
@media (max-width: 992px) {
    .ceo-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .ceo-content {
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .ceo-label {
        display: inline-block;
    }
    
    .ceo-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .ceo-name {
        font-size: 3rem;
    }
    
    .ceo-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .ceo-image-wrapper {
        justify-content: center;
    }
    
    .ceo-image-frame {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: var(--spacing-xl) 0;
    }
    
    .ceo-name {
        font-size: 2.5rem;
    }
    
    .ceo-title {
        font-size: 1.25rem;
    }
    
    .ceo-description {
        font-size: 1.125rem;
    }
    
    .ceo-image-frame {
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .ceo-name {
        font-size: 2rem;
    }
    
    .ceo-title {
        font-size: 1.125rem;
    }
    
    .ceo-description {
        font-size: 1rem;
    }
    
    .ceo-image-frame {
        max-width: 100%;
        aspect-ratio: 3 / 4;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forge-flame) 0%, #ff9033 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(255, 123, 9, 0.4), 0 0 40px rgba(255, 123, 9, 0.2);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, #ff9033 0%, var(--forge-flame) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 123, 9, 0.6), 0 0 60px rgba(255, 123, 9, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.back-to-top svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   VIDEO AUTOPLAY SECTION
   ============================================ */

.video-autoplay-container {
    max-width: min(500px, 90vw);
    margin: 4rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 123, 9, 0.15);
    border: 2px solid rgba(255, 123, 9, 0.2);
    background: #000;
    position: relative;
}

.video-autoplay-container video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: #000;
    max-height: 80vh;
}

/* Video controls styling */
.video-autoplay-container video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.video-instagram-link {
    text-align: center;
    margin-top: 1.5rem;
}

.video-instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--forge-flame);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background: rgba(255, 123, 9, 0.1);
    border: 1px solid rgba(255, 123, 9, 0.3);
    transition: all 0.3s ease;
}

.video-instagram-link a:hover {
    background: rgba(255, 123, 9, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 123, 9, 0.3);
}

/* Tablet - Video Styles */
@media (max-width: 992px) {
    .video-autoplay-container {
        max-width: min(450px, 85vw);
        margin: 3rem auto 0;
        border-radius: 16px;
    }
    
    .video-autoplay-container video {
        max-height: 70vh;
    }
}

/* Mobile - Video Styles */
@media (max-width: 768px) {
    .video-autoplay-container {
        max-width: min(400px, 90vw);
        margin: 2.5rem auto 0;
        border-radius: 14px;
    }
    
    .video-autoplay-container video {
        max-height: 65vh;
    }
    
    .video-instagram-link a {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Small Mobile - Video Styles */
@media (max-width: 480px) {
    .video-autoplay-container {
        max-width: 95vw;
        margin: 2rem auto 0;
        border-radius: 12px;
        border-width: 1px;
    }
    
    .video-autoplay-container video {
        max-height: 60vh;
    }
    
    .video-instagram-link {
        margin-top: 1rem;
    }
    
    .video-instagram-link a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-flame { color: var(--forge-flame); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
