/* ═══════════════════════════════════════════════════════════════════════
   CEYLON AURA — Experience Page Styles
   Cinematic Split-Panel Hero + Premium Dark Luxury
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Experience Hero — Full Viewport Split ────────────────────────────── */
.exp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

/* ── Left Panel — Image ──────────────────────────────────────────────── */
.exp-hero__left {
    position: relative;
    overflow: hidden;
    background: #050505;
}

.exp-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.exp-hero__left:hover .exp-hero__image {
    transform: scale(1.06);
}

.exp-hero__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 30%),
        linear-gradient(0deg, rgba(10,10,10,0.6) 0%, transparent 40%),
        linear-gradient(90deg, transparent 60%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ── Weather Widget ──────────────────────────────────────────────────── */
.exp-weather {
    position: absolute;
    top: 100px;
    left: 32px;
    z-index: 5;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    animation: weatherFadeIn 0.8s 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes weatherFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exp-weather__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.exp-weather__location {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.exp-weather__icon {
    color: #e8c49a;
    opacity: 0.8;
}

.exp-weather__temp {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 10px;
}

.exp-weather__degrees {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.exp-weather__unit {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.exp-weather__condition {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    align-self: flex-end;
    margin-left: 6px;
    margin-bottom: 4px;
}

.exp-weather__range {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.exp-weather__range span {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

/* ── Scroll Indicator ────────────────────────────────────────────────── */
.exp-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 32px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    animation: weatherFadeIn 0.8s 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-scroll-indicator__text {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.exp-scroll-indicator__line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    margin-left: 5px;
}

.exp-scroll-indicator__cursor {
    width: 2px;
    height: 20px;
    background: rgba(255,255,255,0.6);
    position: absolute;
    left: -0.5px;
    top: 0;
    border-radius: 1px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: 0; opacity: 1; }
    50% { top: 40px; opacity: 0.3; }
    100% { top: 0; opacity: 1; }
}

/* ── Right Panel — Content ───────────────────────────────────────────── */
.exp-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.exp-hero__right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    pointer-events: none;
}

.exp-hero__content {
    max-width: 520px;
    width: 100%;
}

/* ── Personalized Tag ────────────────────────────────────────────────── */
.exp-personalized-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(15px);
    animation: contentReveal 0.7s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-personalized-tag__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.exp-personalized-tag span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ── Hero Title ──────────────────────────────────────────────────────── */
.exp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 72px);
    font-weight: 300;
    color: white;
    line-height: 1.08;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(25px);
    animation: contentReveal 0.9s 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-hero__title em {
    color: #e8c49a;
    font-style: italic;
}

/* ── Description ─────────────────────────────────────────────────────── */
.exp-hero__desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: contentReveal 0.8s 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ── CTA Buttons ─────────────────────────────────────────────────────── */
.exp-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: contentReveal 0.8s 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-btn-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e8c49a;
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.exp-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.exp-btn-primary:hover::before {
    transform: translateX(100%);
}

.exp-btn-primary:hover {
    background: #d4b07a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,196,154,0.25);
}

.exp-btn-primary svg {
    transition: transform 0.3s ease;
}

.exp-btn-primary:hover svg {
    transform: translateX(4px);
}

.exp-btn-primary--dark {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    gap: 12px;
    justify-content: center;
}

.exp-btn-primary--dark:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,169,110,0.15);
}

.exp-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.exp-btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}

/* ── Stats ────────────────────────────────────────────────────────────── */
.exp-hero__stats {
    display: flex;
    gap: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: contentReveal 0.8s 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.exp-stat__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.exp-stat__label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes contentReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Section Header ──────────────────────────────────────────────────── */
.exp-section-header {
    margin-bottom: 60px;
}

/* ── Experience Cards Grid ───────────────────────────────────────────── */
.exp-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.exp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,0.18);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.06);
}

.exp-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.exp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-card:hover .exp-card__image img {
    transform: scale(1.1);
}

.exp-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.8) 0%, transparent 60%);
    pointer-events: none;
}

.exp-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 6px 16px;
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
}

.exp-card__body {
    padding: 28px;
}

.exp-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
}

.exp-card__desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.exp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.exp-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.exp-card__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.exp-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.exp-card__link:hover {
    gap: 10px;
}

/* ── Aura AI Banner ──────────────────────────────────────────────────── */
.exp-aura-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.exp-aura-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.exp-aura-banner__icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.exp-aura-banner__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.exp-aura-banner__tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.exp-aura-banner__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.exp-aura-banner__title em {
    color: #e8c49a;
    font-style: italic;
}

.exp-aura-banner__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 36px;
}

/* ── Aura Orb Animation ──────────────────────────────────────────────── */
.exp-aura-banner__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.exp-aura-orb {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-aura-orb__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.12);
}

.exp-aura-orb__ring--1 {
    width: 100%;
    height: 100%;
    animation: orbRotate 12s linear infinite;
}

.exp-aura-orb__ring--2 {
    width: 75%;
    height: 75%;
    border-color: rgba(201,169,110,0.18);
    animation: orbRotate 8s linear infinite reverse;
}

.exp-aura-orb__ring--3 {
    width: 50%;
    height: 50%;
    border-color: rgba(201,169,110,0.25);
    animation: orbRotate 6s linear infinite;
}

.exp-aura-orb__ring--1::after,
.exp-aura-orb__ring--2::after,
.exp-aura-orb__ring--3::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.exp-aura-orb__ring--2::after {
    width: 5px;
    height: 5px;
    top: auto;
    bottom: -2.5px;
    background: #e8c49a;
}

.exp-aura-orb__ring--3::after {
    width: 4px;
    height: 4px;
    top: -2px;
    background: #d4b87a;
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.exp-aura-orb__core {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: orbPulse 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes orbPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201,169,110,0.1), 0 0 60px rgba(201,169,110,0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(201,169,110,0.2), 0 0 80px rgba(201,169,110,0.1);
    }
}

/* Pulse dot for button */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .exp-hero__right {
        padding: 40px;
    }

    .exp-aura-banner {
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .exp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .exp-hero__left {
        min-height: 65vh;
    }

    .exp-hero__right {
        padding: 60px 32px;
    }

    .exp-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .exp-aura-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .exp-aura-banner__desc {
        max-width: 100%;
    }

    .exp-aura-banner__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .exp-aura-banner__visual {
        min-height: 200px;
    }

    .exp-aura-orb {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .exp-hero__left {
        min-height: 55vh;
    }

    .exp-hero__right {
        padding: 48px 24px;
    }

    .exp-hero__title {
        font-size: 38px;
    }

    .exp-hero__stats {
        gap: 40px;
    }

    .exp-stat__number {
        font-size: 36px;
    }

    .exp-cards-grid {
        grid-template-columns: 1fr;
    }

    .exp-weather {
        top: 80px;
        left: 16px;
        padding: 16px 20px;
        min-width: 160px;
    }

    .exp-weather__degrees {
        font-size: 34px;
    }

    .exp-scroll-indicator {
        left: 16px;
        bottom: 40px;
    }

    .exp-aura-banner {
        padding: 32px 24px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .exp-hero__right {
        padding: 40px 20px;
    }

    .exp-hero__ctas {
        margin-bottom: 40px;
    }

    .exp-btn-primary,
    .exp-btn-secondary {
        padding: 14px 20px;
        font-size: 11px;
    }
}
