/* Professional Journey - FINAL (Perfect Centering & Typography) */
:root {
    /* Frosted Black Glass */
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;

    /* Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    --accent-color: #79F2F2;

    /* Standardized Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3rem;

    --font-family: 'Space Mono', system-ui, monospace;
    --container-max: 1200px;
    --panel-radius: 20px;

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Hide Old Content */
.responsive-box,
.timeline-roadmap,
.image-gallery-scroll,
.id-badge,
.nav-button,
.responsive-box-container,
.brand-strip-container {
    display: none !important;
}

.slide-wrapper .brand-strip-container {
    display: flex !important;
}

/* ROOT CONTAINER - PERFECT CENTER */
#new-journey-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;

    /* Perfect centering */
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    padding: var(--space-lg);
}

/* Fixed Logo - Desktop */
.fixed-brand-logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 2000;
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.8));
}

/* Floating Achievements Ring */
.floating-achievements {
    position: fixed;
    top: 24px;
    right: 20px;
    z-index: 1999;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

.achievements-ring {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(135deg, rgba(121, 242, 242, 0.2) 0%, rgba(121, 242, 242, 0.05) 100%);
    border: 2px solid rgba(121, 242, 242, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(121, 242, 242, 0.4),
        0 0 40px rgba(121, 242, 242, 0.2),
        inset 0 0 20px rgba(121, 242, 242, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: blur-pulse 2s ease-in-out infinite;
}

.achievements-ring:hover {
    box-shadow: 
        0 0 30px rgba(121, 242, 242, 0.6),
        0 0 60px rgba(121, 242, 242, 0.3),
        inset 0 0 20px rgba(121, 242, 242, 0.15);
    transform: scale(1.05);
    border-color: rgba(121, 242, 242, 0.8);
}

@keyframes blur-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(121, 242, 242, 0.4),
            0 0 40px rgba(121, 242, 242, 0.2),
            inset 0 0 20px rgba(121, 242, 242, 0.1);
        border-color: rgba(121, 242, 242, 0.5);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(121, 242, 242, 0.6),
            0 0 60px rgba(121, 242, 242, 0.4),
            inset 0 0 30px rgba(121, 242, 242, 0.15);
        border-color: rgba(121, 242, 242, 0.8);
    }
}

.achievements-ring-text {
    font-family: var(--font-family);
    font-size: var(--font-sm);
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

/* SLIDE WRAPPER - CENTERED */
.slide-wrapper {
    width: 100%;
    max-width: var(--container-max);
    height: 100%;
    max-height: calc(100vh - 180px);

    /* Center all content */
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
}

/* FROSTED BLACK GLASS PANEL */
.glass-panel {
    position: relative;

    background: rgba(0, 0, 0, 0.3);

    /* Instant blur - no transitions */
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);

    border: 1px solid var(--glass-border);
    border-top: 1.5px solid var(--glass-highlight);

    border-radius: var(--panel-radius);
    padding: var(--space-xl);

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    width: 100%;
    height: 100%;

    /* Center content vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow-y: auto;
    overflow-x: hidden;

    /* Center text by default */
    text-align: center;

    /* Force GPU acceleration for instant blur */
    transform: translateZ(0);
    will-change: auto;

    /* Prevent any transitions on load */
    transition: none !important;
}

/* Shimmer effect */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-panel>* {
    position: relative;
    z-index: 1;
}

/* Scrollbar */
.glass-panel::-webkit-scrollbar {
    width: 4px;
}

.glass-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.glass-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* GRID SYSTEMS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    width: 100%;
    height: 100%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    width: 100%;
    height: 100%;
}

.grid-asymmetric {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-md);
    width: 100%;
    height: 100%;
}

.col-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

.col-stack>.glass-panel {
    flex: 1;
}

/* CENTER FOCUS LAYOUT */
.layout-center-focus {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* STANDARDIZED TYPOGRAPHY */
.heading-hero {
    font-size: var(--font-5xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.heading-section {
    font-size: var(--font-3xl);
    font-weight: 600;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-align: center;
}

.heading-card {
    font-size: var(--font-xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    text-align: center;
}

.label-overline {
    font-size: var(--font-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(121, 242, 242, 0.5);
    text-align: center;
}

.text-body {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.text-caption {
    font-size: var(--font-sm);
    line-height: var(--leading-normal);
    color: var(--text-tertiary);
    text-align: center;
}

/* Semantic Classes */
.hero-subtitle {
    margin-top: var(--space-md);
    font-weight: 500;
    text-align: center;
}

.text-role-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-align: center;
    color: var(--text-primary);
}

.card-footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
}

.brand-pills-container {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.brand-pill {
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Noon.com Link - Bold & Highlighted */
.noon-link {
    display: inline-block;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(121, 242, 242, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(121, 242, 242, 0.5);
}

.noon-link:hover {
    background: rgba(121, 242, 242, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 242, 242, 0.4);
}

/* HERO IMAGE - CENTERED */
.hero-image-wrapper {
    margin: var(--space-lg) auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-profile-img {
    width: 240px;
    height: 240px;
    border-radius: 20px;
    object-fit: contain;
    display: block;
}

/* BRAND STRIP */
.brand-strip-container {
    width: 100%;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.brand-strip-img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* ICONS - CENTERED */
.icon-box {
    margin-bottom: var(--space-sm);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.icon-box svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(121, 242, 242, 0.6));
}

.infinite-emoji-container {
    font-size: var(--font-4xl);
    margin-top: var(--space-md);
    animation: pulse 4s ease-in-out infinite;
    text-align: center;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 20px rgba(121, 242, 242, 0.6);
    }
}

/* LISTS - CENTERED */
.clean-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
}

.clean-list li {
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    line-height: var(--leading-normal);
    text-align: left;
    width: 100%;
    max-width: 400px;
}

/* BOTTOM NAVBAR */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    
    width: 100%;
    height: 70px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-top: 1px solid rgba(121, 242, 242, 0.2);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.8);
}

.navbar-item {
    height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(121, 242, 242, 0.3);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: capitalize;
}

.navbar-item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(121, 242, 242, 0.3);
    transform: translateY(-4px);
}

.navbar-item:active {
    transform: translateY(-2px);
}

.navbar-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
}

/* NAVIGATION ARROWS */
.nav-arrow {
    height: 70px;
    width: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(121, 242, 242, 0.15) 0%, rgba(121, 242, 242, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(121, 242, 242, 0.6);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: inherit;
    padding: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
    box-shadow: 0 0 30px rgba(121, 242, 242, 0.4), inset 0 0 20px rgba(121, 242, 242, 0.1);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow:hover {
    background: linear-gradient(135deg, rgba(121, 242, 242, 0.25) 0%, rgba(121, 242, 242, 0.1) 100%);
    border-color: rgba(121, 242, 242, 0.9);
    box-shadow: 0 0 50px rgba(121, 242, 242, 0.6), inset 0 0 30px rgba(121, 242, 242, 0.2);
    transform: translateY(-50%) scale(1.15);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(1.08);
}

.nav-arrow svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    :root {
        --font-5xl: 2.5rem;
        --font-3xl: 1.75rem;
        --font-xl: 1.125rem;
    }

    #new-journey-root {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;

        display: block;
        padding: 100px var(--space-md) 120px;
    }

    .slide-wrapper {
        height: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: var(--space-2xl);
    }

    .grid-2,
    .grid-3,
    .grid-asymmetric {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        height: auto;
    }

    .col-stack {
        height: auto;
    }

    .glass-panel {
        height: auto;
        min-height: 200px;
        padding: var(--space-lg);
    }

    .layout-center-focus {
        padding: var(--space-xl) var(--space-md);
        width: 100%;
    }

    /* Center logo on mobile */
    .fixed-brand-logo {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        top: 16px;
    }

    /* Achievements ring on tablet */
    .floating-achievements {
        top: 16px;
        right: 16px;
        width: 130px;
        height: 65px;
    }

    .achievements-ring-text {
        font-size: var(--font-xs);
    }

    .nav-wrapper {
        bottom: 16px;
        width: calc(100% - 32px);
        max-width: 500px;
        padding: 12px 16px;
        justify-content: center;
        gap: 12px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .nav-button-item {
        width: 40px;
        height: 40px;
        font-size: var(--font-xs);
    }

    .nav-arrow,
    .nav-arrow-left,
    .nav-arrow-right {
        display: none !important;
    }

    .hero-profile-img {
        width: 180px;
        height: 180px;
    }

    /* Hide text labels on tablet */
    .navbar-item {
        width: 50px;
        height: 50px;
        padding: 0;
    }

    .navbar-item span {
        display: none;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --font-5xl: 2rem;
        --font-3xl: 1.5rem;
        --font-xl: 1rem;
        --space-xl: 24px;
        --space-2xl: 32px;
    }

    #new-journey-root {
        padding: 90px 12px 100px;
    }

    .glass-panel {
        padding: var(--space-md);
    }

    .layout-center-focus {
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-profile-img {
        width: 140px;
        height: 140px;
    }

    .brand-strip-img {
        max-height: 36px;
    }

    .nav-wrapper {
        padding: 10px 12px;
        gap: 8px;
    }

    .nav-buttons {
        gap: 8px;
    }

    .nav-button-item {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .nav-arrow,
    .nav-arrow-left,
    .nav-arrow-right {
        display: none !important;
    }

    .fixed-brand-logo {
        width: 60px;
        right: 10px;
        top: 12px;
    }

    .floating-achievements {
        width: 120px;
        height: 70px;
        top: 12px;
        right: 8px;
    }

    .achievements-ring {
        border: 1.5px solid rgba(121, 242, 242, 0.5);
        border-radius: 20px;
    }

    .achievements-ring-text {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .bottom-navbar {
        height: 65px;
        gap: 15px;
    }

    .navbar-item {
        width: 45px;
        height: 45px;
        padding: 0;
    }

    .navbar-item span {
        display: none;
    }

    .navbar-item svg {
        width: 20px;
        height: 20px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) {

    .hero-image-wrapper,
    .infinite-emoji-container {
        display: none;
    }

    .layout-center-focus {
        padding: var(--space-md);
    }
}

/* ===== ACHIEVEMENTS MODAL ===== */

.achievements-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease-out;
}

.achievements-modal-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    border-top: 1.5px solid var(--glass-highlight);
    border-radius: var(--panel-radius);
    padding: var(--space-xl);
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease-out;
    scrollbar-color: rgba(121, 242, 242, 0.6) rgba(121, 242, 242, 0.05);
    scrollbar-width: thin;
}

/* Chrome, Safari, Edge Scrollbar */
.achievements-modal-content::-webkit-scrollbar {
    width: 12px;
}

.achievements-modal-content::-webkit-scrollbar-track {
    background: rgba(121, 242, 242, 0.05);
    border-radius: 10px;
}

.achievements-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(121, 242, 242, 0.6), rgba(121, 242, 242, 0.3));
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.achievements-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(121, 242, 242, 0.8), rgba(121, 242, 242, 0.5));
    box-shadow: 0 0 10px rgba(121, 242, 242, 0.4);
}

.achievements-close-btn {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    background: rgba(121, 242, 242, 0.1);
    border: 1px solid rgba(121, 242, 242, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
    z-index: 100;
}

.achievements-close-btn:hover {
    background: rgba(121, 242, 242, 0.2);
    border-color: rgba(121, 242, 242, 0.6);
    box-shadow: 0 0 15px rgba(121, 242, 242, 0.3);
}

.achievements-close-btn svg {
    width: 20px;
    height: 20px;
}

.achievements-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-top: var(--space-lg);
}

.achievements-header .heading-section {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #79F2F2 0%, #79F2F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievements-header .text-caption {
    color: var(--text-tertiary);
    font-size: var(--font-base);
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* Achievement Card */
.achievement-card {
    background: rgba(121, 242, 242, 0.05);
    border: 1px solid rgba(121, 242, 242, 0.2);
    border-radius: 12px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: all 0.3s ease;
    animation: slideInCard 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievement-card:hover {
    background: rgba(121, 242, 242, 0.1);
    border-color: rgba(121, 242, 242, 0.4);
    box-shadow: 
        0 0 20px rgba(121, 242, 242, 0.2),
        inset 0 0 15px rgba(121, 242, 242, 0.05);
    transform: translateY(-5px);
}

.achievement-card-title {
    font-family: var(--font-family);
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: left;
}

.achievement-card-description {
    font-family: var(--font-family);
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    margin: 0;
    line-height: var(--leading-relaxed);
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Achievements Modal */
@media (max-width: 768px) {
    .achievements-modal-content {
        padding: var(--space-lg);
        max-height: 90vh;
    }

    .achievements-close-btn {
        width: 36px;
        height: 36px;
        top: var(--space-md);
        right: var(--space-md);
    }

    .achievements-header {
        margin-bottom: var(--space-lg);
        padding-top: var(--space-md);
    }

    .achievements-header .heading-section {
        font-size: var(--font-2xl);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .achievements-modal-overlay {
        padding: var(--space-md);
    }

    .achievements-modal-content {
        padding: var(--space-lg);
        border-radius: 12px;
    }

    .achievements-close-btn {
        width: 32px;
        height: 32px;
        top: var(--space-md);
        right: var(--space-md);
    }

    .achievements-close-btn svg {
        width: 16px;
        height: 16px;
    }

    .achievements-header {
        margin-bottom: var(--space-lg);
    }

    .achievements-header .heading-section {
        font-size: var(--font-xl);
    }

    .achievement-card {
        padding: var(--space-md);
    }

    .achievement-card-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-lg);
    }

    .achievement-card-title {
        font-size: var(--font-base);
    }

    .achievement-card-description {
        font-size: var(--font-xs);
    }
}

/* Contact Phone Card */
.contact-phone-card {
    background: rgba(121, 242, 242, 0.1);
    border: 2px solid rgba(121, 242, 242, 0.4);
    border-radius: 16px;
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transition: all 0.3s ease;
    animation: slideInCard 0.5s ease-out forwards;
    opacity: 0;
    text-decoration: none;
    color: inherit;
    margin-bottom: var(--space-xl);
    box-shadow: 
        0 0 30px rgba(121, 242, 242, 0.3),
        inset 0 0 20px rgba(121, 242, 242, 0.1);
}

.contact-phone-card:hover {
    background: rgba(121, 242, 242, 0.15);
    border-color: rgba(121, 242, 242, 0.6);
    box-shadow: 
        0 0 40px rgba(121, 242, 242, 0.4),
        inset 0 0 25px rgba(121, 242, 242, 0.15);
    transform: translateY(-5px);
}

.contact-icon-large {
    width: auto;
    height: auto;
    color: #79F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-large svg {
    width: 96px !important;
    height: 96px !important;
    flex-shrink: 0;
}

.contact-phone-card .contact-value.highlight {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(121, 242, 242, 0.8);
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* Contact Card */
.contact-card {
    background: rgba(121, 242, 242, 0.05);
    border: 1px solid rgba(121, 242, 242, 0.2);
    border-radius: 12px;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
    animation: slideInCard 0.5s ease-out forwards;
    opacity: 0;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    background: rgba(121, 242, 242, 0.1);
    border-color: rgba(121, 242, 242, 0.4);
    box-shadow: 
        0 0 20px rgba(121, 242, 242, 0.2),
        inset 0 0 15px rgba(121, 242, 242, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #79F2F2;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-family: var(--font-family);
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-xs) 0;
}

.contact-value {
    font-family: var(--font-family);
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    margin: 0;
    word-break: break-word;
}

.contact-value.highlight {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #79F2F2;
    text-shadow: 0 0 10px rgba(121, 242, 242, 0.5);
}

/* Responsive - Contact Modal */
@media (max-width: 768px) {
    .contact-phone-card {
        padding: var(--space-lg);
        gap: var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .contact-icon-large svg {
        width: 60px !important;
        height: 60px !important;
    }

    .contact-phone-card .contact-label {
        font-size: var(--font-lg);
    }

    .contact-phone-card .contact-value.highlight {
        font-size: var(--font-xl);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-card {
        padding: var(--space-md);
        gap: var(--space-md);
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .contact-icon svg {
        width: 33px !important;
        height: 33px !important;
    }

    .contact-label {
        font-size: var(--font-sm);
    }

    .contact-value {
        font-size: var(--font-xs);
    }

    .contact-value.highlight {
        font-size: var(--font-base);
    }
}

@media (max-width: 480px) {
    .contact-phone-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .contact-icon-large svg {
        width: 54px !important;
        height: 54px !important;
    }

    .contact-phone-card .contact-label {
        font-size: var(--font-base);
    }

    .contact-phone-card .contact-value.highlight {
        font-size: var(--font-lg);
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon svg {
        width: 42px !important;
        height: 42px !important;
    }
}

/* Magazine Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    border-top: 1.5px solid var(--glass-highlight);
    border-radius: var(--panel-radius);
    padding: var(--space-xl);
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease-out;
    scrollbar-color: rgba(121, 242, 242, 0.6) rgba(121, 242, 242, 0.05);
    scrollbar-width: thin;
}

/* Chrome, Safari, Edge Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 12px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(121, 242, 242, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(121, 242, 242, 0.6), rgba(121, 242, 242, 0.3));
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(121, 242, 242, 0.8), rgba(121, 242, 242, 0.5));
    box-shadow: 0 0 10px rgba(121, 242, 242, 0.4);
}

.modal-close-btn {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    background: rgba(121, 242, 242, 0.1);
    border: 1px solid rgba(121, 242, 242, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    z-index: 100;
}

.modal-close-btn:hover {
    background: rgba(121, 242, 242, 0.2);
    border-color: rgba(121, 242, 242, 0.6);
    box-shadow: 0 0 15px rgba(121, 242, 242, 0.3);
}

.modal-close-btn:active {
    transform: scale(0.95);
}

.magazine-container {
    margin-top: var(--space-lg);
    border-radius: 8px;
    overflow: hidden;
}