:root {
    --deep-emerald: #0A3D2E;
    --rich-gold: #C9A227;
    --warm-ivory: #FFFEF9;
    --champagne: #F7E7CE;
    --sage-green: #3D5A4C;
    --rich-charcoal: #1A1A17;
    --warm-taupe: #D4C4A8;
    --pearl: #F5F1EA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    background: var(--warm-ivory);
    color: var(--rich-charcoal);
    line-height: 1.6;
}

.slide {
    min-height: 80vh;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

.slide-light {
    background: radial-gradient(ellipse at center, var(--warm-ivory) 0%, var(--champagne) 100%);
}

.slide-dark {
    background: radial-gradient(ellipse at center, #0E4A38 0%, var(--deep-emerald) 100%);
    color: var(--warm-ivory);
}

.paper-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(201, 162, 39, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 162, 39, 0.03) 87.5%, rgba(201, 162, 39, 0.03)),
        linear-gradient(150deg, rgba(201, 162, 39, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 162, 39, 0.03) 87.5%, rgba(201, 162, 39, 0.03)),
        linear-gradient(30deg, rgba(201, 162, 39, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 162, 39, 0.03) 87.5%, rgba(201, 162, 39, 0.03)),
        linear-gradient(150deg, rgba(201, 162, 39, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 162, 39, 0.03) 87.5%, rgba(201, 162, 39, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

/* Typography */
.headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--deep-emerald);
    letter-spacing: 0.12em;
}

.headline-gold {
    color: var(--rich-gold);
}

.headline-ivory {
    color: var(--warm-ivory);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rich-gold);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Diamond Divider */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.diamond-divider::before,
.diamond-divider::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--rich-gold), transparent);
}

.diamond {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--rich-gold) 0%, #E8C547 50%, var(--rich-gold) 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
}

/* 3D Coin */
.coin-3d {
    width: 60px;
    height: 60px;
    background-image: url("assets/potli.png");
    background-repeat: no-repeat;
    background-size: 100%;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: transparent;
    text-shadow: none;
    /* box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 4px 10px rgba(255, 255, 255, 0.4),
        inset 0 -4px 10px rgba(0, 0, 0, 0.2); */
    position: relative;
}

/* .coin-3d::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
} */

.coin-blur {
    filter: blur(2px);
    opacity: 0.6;
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255, 254, 249, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--warm-taupe);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: rgba(255, 254, 249, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
}

/* 3D Icon Container */
.icon-3d {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #E8C547, var(--rich-gold), #8B6914);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(201, 162, 39, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.5);
    transform: perspective(600px) rotateX(5deg);
}

.icon-shadow {
    width: 60px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    margin-top: 10px;
}

/* Embossed Panel */
.embossed-panel {
    background: linear-gradient(145deg, var(--pearl), var(--champagne));
    border: 1px solid var(--warm-taupe);
    border-radius: 12px;
    padding: 25px 35px;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Gold Border Left */
.gold-border-left {
    border-left: 3px solid var(--rich-gold);
}

/* Bullet Points */
.gold-bullet {
    color: var(--rich-gold);
    margin-right: 10px;
}

/* 3D Sphere */
.sphere-3d {
    width: 250px;
    height: 250px;
    background:
        url("assets/logo.png") center/120% no-repeat,
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(247, 231, 206, 0.4) 40%, rgba(10, 61, 46, 0.2) 100%);
    border-radius: 50%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 -20px 60px rgba(10, 61, 46, 0.1),
        inset 0 20px 60px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sphere-3d span {
    display: none;
}

.sphere-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
    overflow: hidden;
}

/* Central Hub */
.central-hub {
    width: 200px;
    height: 200px;
    background:
        url("assets/logo.png") center/150% no-repeat,
        radial-gradient(circle, #E8C547 0%, var(--rich-gold) 50%, #8B6914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: transparent;
    box-shadow:
        0 0 50px rgba(201, 162, 39, 0.5),
        0 0 100px rgba(201, 162, 39, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
    overflow: hidden;
    overflow: hidden;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 50px rgba(201, 162, 39, 0.5), 0 0 100px rgba(201, 162, 39, 0.3);
    }

    50% {
        box-shadow: 0 0 70px rgba(201, 162, 39, 0.7), 0 0 140px rgba(201, 162, 39, 0.4);
    }
}

/* Orbital Ring */
.orbital-ring {
    position: absolute;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Progress Line */
.progress-line {
    height: 4px;
    background: linear-gradient(90deg, var(--deep-emerald), var(--rich-gold), var(--deep-emerald));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Spacing */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

/* VS Divider */
.vs-circle {
    width: 100px;
    height: 100px;
    background:
        url("assets/logo.png") center/180% no-repeat,
        linear-gradient(145deg, #E8C547, var(--rich-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: transparent;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

/* Step Numbers */
.step-number {
    width: 70px;
    height: 70px;
    background:
        url("assets/logo.png") center/200% no-repeat,
        linear-gradient(145deg, #E8C547, var(--rich-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: transparent;
    box-shadow: 0 6px 15px rgba(201, 162, 39, 0.3);
}

/* Arrow Connector */
.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--rich-gold);
}

/* Check and Cross */
.check-green {
    color: #2E7D32;
}

.cross-grey {
    color: #9E9E9E;
}

/* Badge */
.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-gold {
    background: linear-gradient(145deg, #E8C547, var(--rich-gold));
    color: var(--deep-emerald);
}

.badge-grey {
    background: #E0E0E0;
    color: #757575;
}

Logo Container .logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.logo-main {
    width: 400px;
    height: 400px;
    background: linear-gradient(145deg, var(--pearl), var(--warm-ivory));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.8),
        inset 0 -5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Ensure logo image doesn't bleed out */
}

.logo-icon {
    font-size: 48px;
    margin-bottom: 5px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* .coin-3d::before {
    content: '';
    position: absolute;
    width: 105px;
    height: 105px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
} */

.coin-blur {
    filter: blur(2px);
    opacity: 0.6;
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255, 254, 249, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--warm-taupe);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: rgba(255, 254, 249, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
}

/* 3D Icon Container */
.icon-3d {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #E8C547, var(--rich-gold), #8B6914);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(201, 162, 39, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.5);
    transform: perspective(600px) rotateX(5deg);
}

.icon-shadow {
    width: 60px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    margin-top: 10px;
}

/* Embossed Panel */
.embossed-panel {
    background: linear-gradient(145deg, var(--pearl), var(--champagne));
    border: 1px solid var(--warm-taupe);
    border-radius: 12px;
    padding: 25px 35px;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Gold Border Left */
.gold-border-left {
    border-left: 3px solid var(--rich-gold);
}

/* Bullet Points */
.gold-bullet {
    color: var(--rich-gold);
    margin-right: 10px;
}

/* 3D Sphere */
.sphere-3d {
    width: 250px;
    height: 250px;
    background:
        url("assets/logo.png") center/90% no-repeat,
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(247, 231, 206, 0.4) 40%, rgba(10, 61, 46, 0.2) 100%);
    border-radius: 50%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 -20px 60px rgba(10, 61, 46, 0.1),
        inset 0 20px 60px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sphere-3d span {
    display: none;
}

.sphere-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
    overflow: hidden;
}

/* Central Hub */
.central-hub {
    width: 200px;
    height: 200px;
    background: url("assets/logo.png") center/80% no-repeat,
        radial-gradient(circle, #E8C547 0%, var(--rich-gold) 50%, #8B6914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: transparent;
    box-shadow:
        0 0 70px rgba(201, 162, 39, 0.6),
        0 0 140px rgba(201, 162, 39, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.6);
    animation: pulse 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 50px rgba(201, 162, 39, 0.5), 0 0 100px rgba(201, 162, 39, 0.3);
    }

    50% {
        box-shadow: 0 0 70px rgba(201, 162, 39, 0.7), 0 0 140px rgba(201, 162, 39, 0.4);
    }
}

/* Orbital Ring */
.orbital-ring {
    position: absolute;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Progress Line */
.progress-line {
    height: 4px;
    background: linear-gradient(90deg, var(--deep-emerald), var(--rich-gold), var(--deep-emerald));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Spacing */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

/* VS Divider */
.vs-circle {
    width: 60px;
    height: 60px;
    background:
        url("assets/logo.png") center/70% no-repeat,
        linear-gradient(145deg, #E8C547, var(--rich-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: transparent;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

/* Step Numbers */
.step-number {
    width: 40px;
    height: 40px;
    background:
        url("assets/logo.png") center/70% no-repeat,
        linear-gradient(145deg, #E8C547, var(--rich-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: transparent;
    box-shadow: 0 4px 10px rgba(201, 162, 39, 0.3);
}

/* Arrow Connector */
.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--rich-gold);
}

/* Check and Cross */
.check-green {
    color: #2E7D32;
}

.cross-grey {
    color: #9E9E9E;
}

/* Badge */
.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-gold {
    background: linear-gradient(145deg, #E8C547, var(--rich-gold));
    color: var(--deep-emerald);
}

.badge-grey {
    background: #E0E0E0;
    color: #757575;
}

/* Logo Container */
.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.logo-main {
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, var(--pearl), var(--warm-ivory));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.8),
        inset 0 -5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.logo-icon {
    font-size: 48px;
    margin-bottom: 5px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Decorative Corners */
.corner-coin {
    position: absolute;
}

.corner-coin.top-left {
    top: 40px;
    left: 40px;
}

.corner-coin.top-right {
    top: 40px;
    right: 40px;
}

.corner-coin.bottom-left {
    bottom: 40px;
    left: 40px;
}

.corner-coin.bottom-right {
    bottom: 40px;
    right: 40px;
}

/* Connection Lines */
.connection-line {
    width: 2px;
    background: linear-gradient(180deg, var(--rich-gold), var(--deep-emerald));
    margin: 0 auto;
}

/* Card Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
body {
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

#slide5 .flex-center>div {
    width: min(70vw, 600px);
    height: min(70vw, 600px);
}

@media (max-width: 1400px) {
    .slide {
        padding: 50px 60px;
    }

    .grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .slide {
        padding: 45px 50px;
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-main {
        width: 150px;
        height: 150px;
    }

    .logo-icon {
        font-size: 40px;
    }

    .sphere-3d {
        width: 180px;
        height: 180px;
    }

    .central-hub {
        width: 130px;
        height: 130px;
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .slide {
        padding: 40px 40px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Filter to make OSM look consistent with Gold/Emerald theme */
    .leaflet-tile-pane {
        /* Lighter filter to ensure visibility first */
        filter: sepia(80%) saturate(120%) hue-rotate(40deg) contrast(95%);
    }

    .headline {
        font-size: 34px !important;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 22px !important;
    }

    .subtitle {
        font-size: 16px !important;
    }

    .icon-3d {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .coin-3d {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .orbital-ring {
        width: 280px !important;
        height: 280px !important;
    }

    .glass-card,
    .embossed-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 32px 24px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: 28px !important;
        letter-spacing: 0.06em;
    }

    .tagline {
        font-size: 20px !important;
    }

    .subtitle {
        font-size: 14px !important;
    }

    .glass-card {
        padding: 22px;
    }

    .embossed-panel {
        padding: 20px 24px;
    }

    .icon-3d {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .coin-3d {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .logo-main {
        width: 130px;
        height: 130px;
    }

    .logo-icon {
        font-size: 34px;
    }

    .sphere-3d {
        width: 150px;
        height: 150px;
    }

    .central-hub {
        width: 110px;
        height: 110px;
        font-size: 24px;
    }

    .corner-coin.top-left {
        top: 20px;
        left: 20px;
    }

    .corner-coin.top-right {
        top: 20px;
        right: 20px;
    }

    .corner-coin.bottom-left {
        bottom: 20px;
        left: 20px;
    }

    .corner-coin.bottom-right {
        bottom: 20px;
        right: 20px;
    }

    .diamond-divider::before,
    .diamond-divider::after {
        width: 60px;
    }

    .slide-nav {
        right: 10px;
    }

    #slide5 .flex-center>div {
        width: min(90vw, 380px) !important;
        height: min(72vw, 300px) !important;
    }

    #slide5 .orbital-ring {
        width: 240px !important;
        height: 240px !important;
    }

    #interactive-map {
        height: 320px !important;
    }
}

@media (max-width: 576px) {
    .slide {
        padding: 28px 18px;
    }

    .headline {
        font-size: 24px !important;
        letter-spacing: 0.04em;
    }

    .tagline {
        font-size: 18px !important;
    }

    .subtitle {
        font-size: 13px !important;
    }

    .glass-card {
        padding: 18px;
    }

    .icon-3d {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .coin-3d {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .logo-main {
        width: 110px;
        height: 110px;
    }

    .logo-icon {
        font-size: 30px;
    }

    .sphere-3d {
        width: 130px;
        height: 130px;
    }

    .central-hub {
        width: 100px;
        height: 100px;
        font-size: 22px;
    }

    .orbital-ring {
        width: 220px !important;
        height: 220px !important;
    }

    .slide-nav {
        display: none;
    }

    #slide5 .flex-center>div {
        width: min(92vw, 320px) !important;
        height: min(70vw, 260px) !important;
    }

    #slide5 .orbital-ring {
        width: 200px !important;
        height: 200px !important;
    }

    #interactive-map {
        height: 260px !important;
    }
}

@media (max-width: 420px) {
    .headline {
        font-size: 21px !important;
        letter-spacing: 0.03em;
    }

    .tagline {
        font-size: 16px !important;
    }

    .subtitle {
        font-size: 12px !important;
    }

    .glass-card {
        padding: 16px;
    }
}

/* Slide Navigation */
.slide-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.slide-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warm-taupe);
    cursor: pointer;
    transition: all 0.3s ease;
}


.slide-nav-dot:hover,
.slide-nav-dot.active {
    background: var(--rich-gold);
    transform: scale(1.2);
}

/* Global Watermark */
.global-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-family: 'Playfair Display', serif;
    font-size: 15vw;
    font-weight: 700;
    color: var(--rich-gold);
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Map Custom Styles */
#interactive-map {
    position: relative;
}

.custom-map-icon {
    background: transparent;
    border: none;
}

.map-pin-container {
    position: relative;
}

.map-pin-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.3);
    animation: pulse-map 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse-map {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-pin-core {
    width: 20px;
    height: 20px;
    background: var(--rich-gold);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-dot-core {
    width: 12px;
    height: 12px;
    background: var(--sage-green);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.map-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--rich-charcoal);
    background: rgba(255, 255, 255, 0.95);
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.distance-popup .leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.distance-popup .leaflet-popup-content {
    margin: 0;
}

.distance-popup .leaflet-popup-tip-container {
    display: none;
}



.map-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip h4 {
    color: var(--rich-gold);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    padding-bottom: 5px;
}

.map-tooltip ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.map-tooltip li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.map-tooltip li::before {
    content: '•';
    color: var(--rich-gold);
    position: absolute;
    left: 0;
    top: 0;
}

.interactive-point {
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
}

.interactive-point:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--rich-gold));
}

.interactive-point:hover circle[opacity="0.3"] {
    opacity: 0.6;
    animation: none;
    r: 25;
}