/* HOME HERO */
.home-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background-image: linear-gradient(rgba(96, 50, 21, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    padding: 10px;

    max-width: none;
    min-height: calc(100vh - 80px);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 30vw, 40rem);
    font-weight: 900;
    color: white;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -0.05em;
    font-family: var(--font-heading);
    animation: bg-text-float 20s ease-in-out infinite;
    user-select: none;
}

@keyframes bg-text-float {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -48%) scale(1.05);
    }
}

.hero-content-left {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-visual-right {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.text-gradient-main {
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 145, 77, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 145, 77, 0.2);
}

.badge-dot-live {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-subtext {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-div {
    width: 1px;
    height: 40px;
    background: var(--border);
}



/* PINBOARD */
.pinboard-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pinboard-container {
    width: 340px;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.pinboard-scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
}

.pinboard-scroll-wrapper.smooth {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pinboard-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-100% - 20px));
    }
}

/* JS handles pause/play instead of CSS hover */

.pin-card {
    width: 100%;
    min-height: 480px;
    height: 480px;
    background: var(--gradient-orange-black);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--gradient-orange-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
    color: white;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 145, 77, 0.3);
    flex-shrink: 0;
    position: relative;
}

.pin-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--gradient-orange-glow-hover), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pin-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    opacity: 0.9;
    z-index: 2;
}

.pin-content {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    z-index: 2;
}

.pin-arrow {
    font-size: 3rem;
    align-self: flex-end;
    z-index: 2;
}

/* Video Card Styles */
.pin-video-card {
    padding: 0;
    overflow: hidden;
}

.pin-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.pin-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    z-index: 2;
}

.pin-video-text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pin-video-overlay .pin-arrow {
    font-size: 3rem;
    align-self: flex-end;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pin-video-overlay .pin-title {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* STATUS BAR */
.pinboard-status-bar {
    width: 55px;
    height: 480px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 145, 77, 0.15);
    border-radius: var(--radius-xl);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* Pushes content to top and bottom */
    position: relative;
    overflow: hidden;
}

.pinboard-status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(255, 145, 77, 0.05) 0%,
            rgba(255, 145, 77, 0.02) 50%,
            rgba(255, 145, 77, 0.05) 100%);
    pointer-events: none;
}

.status-bar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.status-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 145, 77, 0.5);
}

.status-label {
    font-size: 0.55rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.status-window {
    height: 125px;
    /* Fixed height for 5 dots + gaps */
    /* Fixed height for 3 dots + gaps approximation */
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    margin: auto 0;
    /* Ensures vertical centering between header and actions */
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    align-items: center;
    /* Centers dots horizontally */
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 145, 77, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.status-dot:hover {
    background: rgba(255, 145, 77, 0.2);
    border-color: rgba(255, 145, 77, 0.4);
    transform: scale(1.2);
}

.status-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(255, 145, 77, 0.6);
}

.status-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 145, 77, 0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.status-bar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;

    /* Anchors to bottom */
}

.status-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 145, 77, 0.1);
    border: 1px solid rgba(255, 145, 77, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-action-btn:hover {
    background: rgba(255, 145, 77, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 145, 77, 0.3);
    transform: scale(1.1);
}

.status-action-btn i {
    width: 18px;
    height: 18px;
}


/* MARQUEE */
.logo-marquee-section {
    padding: 5px 0 20px 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.company-logo {
    font-size: 2.0rem;
    font-weight: 700;
    color: #333;
    /* Placeholder for logo imgs */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.company-logo:hover {
    color: var(--primary);
    cursor: pointer;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* EXPERIENCE SECTION */
.experience-section {
    padding: 40px 0;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.exp-item {
    opacity: 0;
    will-change: transform, opacity;
}

/* Sequential animation with delays */
/* Center falls first (0s delay) */
.exp-item.center-animate {
    transform: translateY(-200px);
    transition: all 1s ease-out;
}

.exp-item.center-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left and Right come from sides (0.6s delay) */
.exp-item.left-animate {
    transform: translateX(-150px);
    transition: all 0.8s ease-out 0.6s;
}

.exp-item.right-animate {
    transform: translateX(150px);
    transition: all 0.8s ease-out 0.6s;
}

.exp-item.left-animate.visible,
.exp-item.right-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger text a bit later than image */
.exp-item .content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease-out 0.9s;
    /* delay 0.9s to come after images */
}

.exp-item.visible .content {
    opacity: 1;
    transform: translateY(0);
}

.exp-image-wrapper {
    height: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 1s ease-out;
}

.small-title {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.exp-item h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 20px;
}

.desc {
    font-size: 1.05rem;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #ffffff;
}

.link {
    display: inline-block;
    margin-top: 4px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link:hover {
    text-shadow: 0 0 10px rgba(255, 145, 77, 0.5);
    transform: translateX(4px);
}

.center {
    display: flex;
    justify-content: center;
}

.mobile {
    max-width: 260px;
    border-radius: 28px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    height: 500px;
    object-fit: cover;
}

/* Bottom content */
.bottom-content {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out 1s;
}

.bottom-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.bottom-content h3 {
    margin: 12px 0;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* EXPERIENCE SHOWCASE SECTION (Merged Freedom & Gallery) */
.experience-showcase-section {
    padding: 50px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.experience-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 145, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.experience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.freedom-heading {
    font-size: clamp(2.0rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.freedom-heading span {
    background: linear-gradient(90deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.freedom-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.gallery-controls-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-controls {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 100px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 12px 36px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.gallery-btn:hover {
    color: white;
    background: rgba(255, 145, 77, 0.05);
}

.gallery-btn.active {
    background: var(--brand-orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 145, 77, 0.4);
    border-color: var(--brand-orange);
}

.gallery-display-wrapper {
    margin-bottom: 60px;
}

.gallery-display {
    position: relative;
    min-height: 250px;
}

.gallery-category {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.gallery-category.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-img:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(255, 145, 77, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 145, 77, 0.2);
    filter: brightness(1.1);
}

.span-2 {
    grid-column: span 2;
}

.experience-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .span-2 {
        grid-column: span 1;
    }

    .gallery-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .experience-showcase-section {
        padding: 30px 0;
    }

    .gallery-display {
        min-height: 850px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 16px;
    }

    .gallery-img {
        height: 100%;
    }

    .gallery-controls {
        width: auto;
        border-radius: 100px;
        padding: 6px;
        gap: 4px;
        display: inline-flex;
    }

    .gallery-btn {
        width: auto;
        flex: 1;
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .experience-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-glow,
    .btn-outline {
        width: 100%;
    }
}

/* LOCATIONS SECTION */
.locations-section {
    padding: 100px 0;
}

.location-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
    background: rgba(20, 20, 20, 0.4);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.location-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-image:hover img {
    transform: scale(1.1);
}

.location-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 145, 77, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.location-badge i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.location-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-tagline {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.location-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 145, 77, 0.4));
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PINBOARD MODAL STYLES */
.pin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-modal.show {
    opacity: 1;
    visibility: visible;
}

.pin-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.pin-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 145, 77, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 145, 77, 0.1);
}

.pin-modal.show .pin-modal-container {
    transform: scale(1) translateY(0);
}

.pin-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pin-modal-close i {
    width: 20px;
    height: 20px;
}

.pin-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.pin-modal-content {
    display: flex;
    min-height: 400px;
}

.pin-modal-left {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
}

.pin-modal-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pin-modal-right {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.modal-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.85rem;
}

.detail-bullet {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.modal-footer {
    margin-top: auto;
}

.pin-arrow-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-arrow-clickable:hover {
    transform: translateX(10px) scale(1.2);
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;

    }

    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4,
    .bento-5 {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }

    .bento-main {
        grid-column: 1 / 3;
    }
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .exp-item {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-section {
        padding: 80px 20px;
    }

    .location-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-image {
        height: 400px;
    }

    .location-content h3 {
        font-size: 2rem;
    }

    .pin-modal-container {
        max-height: 85vh;
        overflow-y: auto;
        display: block;
    }

    .pin-modal-content {
        flex-direction: column;
        height: auto;
    }

    .pin-modal-left {
        height: 250px;
        flex: none;
    }

    .pin-modal-right {
        padding: 24px 24px 40px 24px;
    }

    .pin-modal-close {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 145, 77, 0.4);
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-content-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-bg-text {
        font-size: 20rem;
        opacity: 0.02;
    }

    .hero-visual-right {
        display: block;
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .home-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 30px 20px;
        min-height: auto;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .stat-item {
        min-width: 100px;
        text-align: center;
    }

    .stat-val {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-div {
        height: 30px;
        display: none;
    }

    .pinboard-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .pinboard-container {
        width: 100%;
        max-width: 340px;
        height: 470px;
        /* Adjusted to show gap better */
    }

    .pinboard-status-bar {
        width: 100%;
        max-width: 340px;
        height: 60px;
        flex-direction: row;
        padding: 16px 24px;
        justify-content: space-between;
        /* Horizontal edge alignment */
    }

    .status-bar-header {
        flex-direction: row;
        gap: 8px;
    }

    .status-count {
        font-size: 1.5rem;
    }

    .status-label {
        font-size: 0.6rem;
    }

    .status-window {
        width: 100px;
        /* Horizontal window for 5 dots */
        height: auto;
        overflow: hidden;
        margin: 0 auto;
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .status-indicators {
        flex-direction: row;
        gap: 12px;
        z-index: 1;
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        transform: translateX(0);
        width: max-content;
        padding: 5px 0;
        align-items: center;
        /* Centers dots vertically on mobile */
    }

    .status-dot {
        width: 10px;
        height: 10px;
    }

    .status-bar-actions {
        flex-direction: row;
        gap: 8px;
    }

    .status-action-btn {
        width: 36px;
        height: 36px;
    }

    .status-action-btn i {
        width: 16px;
        height: 16px;
    }

    .pin-card {
        transform: rotate(0deg);
        padding: 24px;
        min-height: 450px;
        height: 450px;
    }

    .pin-video-text {
        font-size: 1.4rem;
    }

    .pin-title {
        font-size: 1.2rem;
    }

    /* Bento Grid Mobile */
    .bento-features-section {
        padding: 60px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4,
    .bento-5 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 180px;
    }

    .bento-card {
        padding: 20px;
    }

    .bento-card h3 {
        font-size: 1rem;
    }

    .bento-card p {
        font-size: 0.75rem;
    }

    .bento-card i {
        width: 48px;
        height: 48px;
    }

    /* Experience Section Mobile */
    .experience-section {
        padding: 60px 0;
    }

    .experience-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .exp-item {
        max-width: 100% !important;
    }

    .exp-image-wrapper {
        height: 280px !important;
    }

    .exp-item h3 {
        font-size: 1.3rem;
    }

    .desc {
        font-size: 0.95rem;
    }

    /* Marquee Section */
    .logo-marquee-section {
        padding: 30px 0;
    }

    .marquee-title {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .company-logo {
        font-size: 1.5rem;
    }

    /* Locations Section */
    .locations-section {
        padding: 60px 0;
    }

    .location-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-image {
        height: 300px;
    }

    .location-content h3 {
        font-size: 1.8rem;
    }

    .location-tagline {
        font-size: 1rem;
    }

    .location-description {
        font-size: 0.95rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .logo-marquee-section {
        padding: 30px 0;
    }

    .logos-row-static {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .pin-modal-container {
        width: 95%;
        margin: 0 10px;
        max-height: 80vh;
    }

    .pin-modal-left {
        height: 200px;
    }

    .pin-modal-right {
        padding: 20px 20px 32px 20px;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-subtitle {
        font-size: 0.7rem;
    }

    .modal-description {
        font-size: 0.85rem;
    }

    .modal-details-grid {
        padding: 12px;
    }

    .detail-item {
        font-size: 0.8rem;
    }

    .btn-glow {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: 20px 12px;
    }

    .hero-heading {
        font-size: 1.8rem !important;
    }

    .hero-subtext {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-val {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .btn-glow {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .section-heading p {
        font-size: 0.9rem;
    }

    .exp-image-wrapper {
        height: 240px !important;
    }

    .location-image {
        height: 250px;
    }

    .bento-card {
        min-height: 160px;
    }

    .pinboard-container {
        max-width: 300px;
        height: 400px;
    }

    .pin-card {
        min-height: 400px;
        height: 400px;
        padding: 20px;
    }

    .pin-video-text {
        font-size: 1.2rem;
    }
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

/* VIDEO EXPLAINER SECTION */
.video-explainer-section {
    padding: 50px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
}

.video-explainer-section .section-heading {
    margin-bottom: 50px;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.03);
    opacity: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    z-index: 2;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.video-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-icon {
    background: #000;
    color: var(--primary);
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.video-share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.video-share:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-share i {
    width: 16px;
    height: 16px;
}

.video-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.play-btn-pulse {
    width: 80px;
    height: 56px;
    background: #ff0000;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.play-btn-pulse:hover {
    transform: scale(1.05);
}

.play-btn-pulse i {
    color: white;
    fill: white;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .video-explainer-section {
        padding: 0 0 60px 0;
    }

    .video-container {
        padding: 0 16px;
    }

    .video-badge {
        padding: 6px 12px 6px 6px;
    }

    .play-btn-pulse {
        width: 60px;
        height: 40px;
    }

    .video-share span {
        display: none;
    }

    .video-share {
        padding: 8px;
    }
}


/* Decoration */
.freedom-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(180px);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .freedom-section {
        padding: 80px 0;
    }

    .freedom-container {
        padding: 0 24px;
    }

    .freedom-heading {
        font-size: 2.5rem;
    }

    .freedom-text {
        font-size: 1rem;
    }

    .freedom-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .freedom-actions .btn-glow,
    .freedom-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* FAQ SECTION */
.faq-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #000;
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-section .section-heading {
    margin-bottom: 50px;
}

/* ======================
   CARD ROW
====================== */
.card-row {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.small-card {
    flex: 1;
    height: 160px;
    background: var(--gradient-orange-black);
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--gradient-orange-glow);
    border: 1px solid rgba(255, 145, 77, 0.4);
}

.small-card i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.small-card span {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.small-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--gradient-orange-glow-hover);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.1) 0%, #000 100%);
}

/* ======================
   OVERLAY
====================== */
.faq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10000;
}

.faq-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ======================
   POPUP
====================== */
.faq-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10001;
    /* Above almost everything */
}

.faq-popup-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10002;
}

.faq-popup.active {
    pointer-events: auto;
    /* Enable interaction when active */
}

.faq-popup.active .faq-popup-content {
    transform: scale(1);
    opacity: 1;
}

/* ORANGE FRAME */
.faq-popup-content::before,
.faq-popup-content::after {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: 40px;
    border: 4px solid var(--primary);
    pointer-events: none;
}

.faq-popup-content::before {
    left: 10px;
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.faq-popup-content::after {
    right: 10px;
    border-left: none;
    border-radius: 0 20px 20px 0;
}

/* CLOSE BUTTON */
.faq-close-btn {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 40px;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.faq-close-btn:hover {
    transform: rotate(90deg);
}

/* ======================
   CONTENT
====================== */
.faq-popup-inner {
    display: flex;
    gap: 30px;
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 145, 77, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* TEXT */
.faq-text-card {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-40px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.faq-text-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.faq-text-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* IMAGE */
.faq-image-card {
    width: 45%;
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
    position: relative;
}

.faq-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}

/* INNER ANIMATION */
.faq-popup.active .faq-text-card,
.faq-popup.active .faq-image-card {
    transform: translateX(0);
    opacity: 1;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 900px) {
    .card-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .small-card {
        height: 140px;
    }

    .faq-popup-inner {
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }

    .faq-text-card,
    .faq-image-card {
        width: 100%;
        transform: translateY(20px);
    }

    .faq-image-card {
        height: 250px;
        order: -1;
    }

    .faq-image-card::after {
        background: linear-gradient(to top, #0a0a0a, transparent);
    }

    .faq-popup.active .faq-text-card,
    .faq-popup.active .faq-image-card {
        transform: translateY(0);
    }

    .faq-text-card {
        padding: 30px;
    }

    .faq-text-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .card-row {
        grid-template-columns: 1fr;
    }

    .small-card {
        height: 120px;
    }

    .faq-popup-content {
        padding: 0;
    }

    .faq-text-card h3 {
        font-size: 1.3rem;
    }

    .faq-text-card p {
        font-size: 1rem;
    }
}

/* FOOTER SECTION Removed - Moved to Global.css */
/* Extracted from index.html */
.experience-section-header {
    background: #000000;
    padding: 10px 0 20px 0;
}

.exp-section {
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 8vw;
    overflow-x: hidden;
    background: rgb(0, 0, 0);
}

.exp-container {
    position: relative;
    width: 98%;
    max-width: 1400px;
    height: 380px;
    margin-left: auto;
    margin-right: 0;
}

.exp-image-box {
    width: 80%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: absolute;
    left: 50px;
    top: 0;
    filter: drop-shadow(0 20px 20px rgba(179, 100, 64, 0.7));
}

.exp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;


}

.exp-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 50px;
    width: 60%;
    max-width: 700px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 145, 77, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(255, 145, 77, 0.2);
    opacity: 0;
    transform: translateX(-100px) translateY(-50%);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.exp-card.animate {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

.exp-reverse .exp-image-box {
    left: auto;
    right: -60px;
}

.exp-reverse .exp-card {
    left: 50px;
    right: auto;
    transform: translateX(80px) translateY(-50%);
}

.exp-reverse .exp-card.animate {
    transform: translateX(0) translateY(-50%);
}

.exp-card .small-title {
    font-size: 12px;
    font-weight: 600;
    color: #FF914D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.exp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.exp-card .desc {
    font-size: 16px;
    line-height: 1.5;
    color: #a1a1aa;
    margin-bottom: 20px;
}

.exp-card .link {
    background: transparent;
    border: 1.5px solid #fbc797;
    color: #FF914D;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.exp-card .link:hover {
    color: rgb(225, 120, 82);
}

@media (max-width: 1024px) {
    .exp-section {
        padding: 40px 0;
        padding-right: 5vw;
    }

    .exp-container {
        width: 95%;
        max-width: 1200px;
        height: 350px;
    }

    .exp-image-box {
        width: 55%;
        left: 120px;
    }

    .exp-card {
        width: 55%;
        max-width: 600px;
        padding: 25px 35px;
    }

    .exp-card h3 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .exp-card .desc {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .exp-reverse .exp-card {
        left: 180px;
    }
}

@media (max-width: 768px) {
    .exp-section {
        padding: 60px 20px 40px 20px;
        padding-right: 20px;
        justify-content: center;
    }

    .exp-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin: 0;
    }

    .exp-image-box {
        width: 85%;
        height: 180px;
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 80px;
        z-index: 1;
    }

    .exp-card {
        position: relative;
        width: 90%;
        max-width: 380px;
        padding: 24px 28px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto -30px;
        opacity: 0;
        z-index: 2;
    }

    .exp-card.animate {
        opacity: 1;
    }

    .exp-card h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .exp-card .desc {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .exp-card .link {
        padding: 11px 24px;
        font-size: 13px;
    }

    .exp-reverse .exp-image-box {
        left: 0;
        right: 0;
        margin: 0 auto 80px;
    }

    .exp-reverse .exp-card {
        left: auto;
        right: auto;
        transform: none;
    }
}

@media (max-width: 600px) {
    .exp-section {
        padding: 40px 15px 25px 15px;
    }

    .exp-container {
        height: auto;
        width: 100%;
    }

    .exp-image-box {
        width: 90%;
        height: 160px;
        margin: 0 auto 70px;
    }

    .exp-card {
        width: 92%;
        max-width: 340px;
        padding: 20px 22px;
        bottom: auto;
        transform: none;
        position: relative;
        margin: 0 auto -20px;
    }

    .exp-card h3 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .exp-card .small-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .exp-card .desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .exp-card .link {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .exp-section {
        padding: 30px 12px 20px 12px;
    }

    .exp-container {
        height: auto;
        width: 100%;
    }

    .exp-image-box {
        width: 93%;
        height: 145px;
        margin: 0 auto 60px;
    }

    .exp-card {
        width: 95%;
        max-width: 300px;
        padding: 18px 20px;
        bottom: auto;
        transform: none;
        position: relative;
        margin: 0 auto -10px;
    }

    .exp-card h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .exp-card .small-title {
        font-size: 10px;
    }

    .exp-card .desc {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .exp-card .link {
        padding: 9px 18px;
        font-size: 11px;
    }
}

/* ==============================================
   EXPLORE CAROUSEL SECTION - FULL SCREEN
   ============================================== */
.explore-carousel-section {
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.carousel-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.explore-carousel-section .section-heading {
    position: relative;
    z-index: 10;
    padding: 50px 30px 30px;
    margin-bottom: 0;
}

.carousel-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
}

.carousel-track {
    position: relative;
    height: 70vh;
    min-height: 650px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.carousel-slide.active .slide-image img {
    animation: slowZoom 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.08) translateZ(0);
    }

    100% {
        transform: scale(1) translateZ(0);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8vw;
    transform: translateY(-50%);
    padding: 0;
    width: 700px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-50%) translateX(-50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    will-change: transform, opacity;
}

.carousel-slide.active .slide-content {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 145, 77, 0.5);
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(255, 145, 77, 0.2);
}

.slide-badge i {
    width: 20px;
    height: 20px;
}

.slide-content h3 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 450;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-content .btn-glow {
    margin-top: 0;
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 0 30px rgba(255, 145, 77, 0.4);
}

.slide-content .btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 145, 77, 0.6);
}

/* Modern Minimal Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 45px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 145, 77, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
    background: rgba(255, 145, 77, 0.2);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
}

.carousel-arrow-prev {
    left: 30px;
}

.carousel-arrow-next {
    right: 30px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 16px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(255, 145, 77, 0.6);
}

.indicator.active::before {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-content {
        padding: 60px;
        max-width: 600px;
        left: 0;
        /* Reset left for smaller screens if centered or padded differently */
        /* Actually, 1200px is still large. I'll keep default or adjust? 
           The original distorted css had 'padding: 60px'. 
           I'll assume it handles margin/padding.
           I'll leave it as is.
        */
    }

    .carousel-arrow-prev {
        left: 20px;
    }

    .carousel-arrow-next {
        right: 20px;
    }
}

@media (max-width: 968px) {
    .explore-carousel-section .section-heading {
        padding: 40px 20px 30px;
    }

    .carousel-track {
        height: 100vh;
        min-height: 600px;
        max-height: 800px;
    }

    .slide-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.9) 100%);
    }

    .slide-content {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        padding: 40px 30px 120px;
        max-width: 100%;
        opacity: 0;
        transform: translateY(40px);
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease;
    }

    .carousel-slide.active .slide-content {
        transform: translateY(0);
        text-align: center;
    }

    .slide-content h3 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .explore-carousel-section .section-heading {
        padding: 30px 20px 20px;
    }

    .carousel-track {
        min-height: 500px;
        max-height: 700px;
    }

    .slide-content {
        padding: 30px 24px 100px;
    }

    .slide-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .slide-badge i {
        width: 18px;
        height: 18px;
    }

    .slide-content h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .slide-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .slide-content .btn-glow {
        font-size: 1rem;
        padding: 14px 32px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow i {
        width: 20px;
        height: 20px;
    }

    .carousel-arrow-prev {
        left: 16px;
    }

    .carousel-arrow-next {
        right: 16px;
    }

    .carousel-indicators {
        bottom: 40px;
        gap: 12px;
    }

    .indicator {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        min-height: 450px;
        max-height: 600px;
    }

    .slide-content {
        padding: 24px 20px 90px;
    }

    .slide-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 8px;
        margin-bottom: 16px;
    }

    .slide-badge i {
        width: 16px;
        height: 16px;
    }

    .slide-content h3 {
        font-size: 1.75rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slide-content .btn-glow {
        width: 100%;
        text-align: center;
        padding: 12px 28px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow i {
        width: 18px;
        height: 18px;
    }

    .carousel-arrow-prev {
        left: 12px;
    }

    .carousel-arrow-next {
        right: 12px;
    }

    .carousel-indicators {
        bottom: 30px;
        gap: 10px;
    }

    .indicator {
        width: 24px;
        height: 3px;
    }
}