/* --------------------------------------------------------------------------
   RUKUN FESTIVAL 2026 - STYLE SHEETS
   Branded design system with modern premium aesthetics (glassmorphism, glow effects,
   smooth interactions, responsive typography)
   -------------------------------------------------------------------------- */

:root {
    /* Brand Colors */
    --color-navy: #0A3370;
    --color-navy-rgb: 10, 51, 112;
    --color-magenta: #E60067;
    --color-magenta-rgb: 230, 0, 103;
    --color-sky: #009EE2;
    --color-sky-rgb: 0, 158, 226;
    --color-green: #73BE43;
    --color-green-rgb: 115, 190, 67;
    
    /* Backgrounds & Offsets */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #071224;
    --border-light: rgba(226, 232, 240, 0.8);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadow & Transition effects */
    --shadow-sm: 0 2px 8px rgba(10, 51, 112, 0.04);
    --shadow-md: 0 10px 30px rgba(10, 51, 112, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 51, 112, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(10, 51, 112, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: #334155;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.main-content-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Background Glows (Aurora Mesh Effect)
   -------------------------------------------------------------------------- */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.glow-blue {
    top: 5%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 158, 226, 0.8) 0%, rgba(10, 51, 112, 0) 70%);
}

.glow-pink {
    top: 25%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(230, 0, 103, 0.8) 0%, rgba(10, 51, 112, 0) 70%);
}

.glow-green {
    top: 60%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(115, 190, 67, 0.6) 0%, rgba(10, 51, 112, 0) 70%);
}

/* --------------------------------------------------------------------------
   Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(10, 51, 112, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-sky);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 158, 226, 0.3);
}

.btn-secondary {
    background-color: rgba(10, 51, 112, 0.08);
    color: var(--color-navy);
}

.btn-secondary:hover {
    background-color: rgba(10, 51, 112, 0.15);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-sky) 50%, var(--color-magenta) 100%);
    background-size: 200% auto;
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 15px rgba(230, 0, 103, 0.2);
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 103, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(10, 51, 112, 0.2);
    color: var(--color-navy);
}

.btn-outline:hover {
    border-color: var(--color-navy);
    background-color: rgba(10, 51, 112, 0.02);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--color-navy);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bg-white);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 51, 112, 0.08);
}

/* Section Headings */
.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-magenta);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
}

.section-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.main-header.sticky {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-svg {
    display: block;
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--color-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-magenta);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-cta-mobile {
    display: none;
}

/* Hamburger Menu button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-navy);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* Hamburger active animation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 10rem 0 6rem 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 158, 226, 0.08);
    border: 1px solid rgba(0, 158, 226, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    color: var(--color-navy);
}

.hero-badge .badge-icon {
    display: flex;
    align-items: center;
    color: var(--color-magenta);
}

.hero-badge .badge-icon svg {
    width: 16px;
    height: 16px;
}

.hero-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.text-navy {
    color: var(--color-navy);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-sky) 50%, var(--color-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

/* Event Details Card (Hero Right side) */
.hero-details-card {
    padding: 2.5rem;
    border-color: rgba(0, 158, 226, 0.25);
    box-shadow: 0 15px 45px rgba(0, 158, 226, 0.07);
}

.details-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-magenta);
    border-radius: 5px;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.8rem;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: rgba(10, 51, 112, 0.06);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 0.15rem;
}

.detail-subtext {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.1rem;
    line-height: 1.4;
}

.detail-map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-sky);
    width: fit-content;
}

.detail-map-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.detail-map-link:hover {
    color: var(--color-navy);
}

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

/* Card Aurora Glow behind details card */
.card-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230,0,103,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.4);
}

.section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-para {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-para strong {
    color: var(--color-navy);
}

.text-muted {
    color: #64748b;
    font-size: 1.025rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feat-icon svg {
    width: 20px;
    height: 20px;
}

.icon-pink {
    background-color: var(--color-magenta);
}

.icon-blue {
    background-color: var(--color-sky);
}

.about-feat-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.about-feat-item p {
    font-size: 0.925rem;
    color: #64748b;
}

/* Visual Unity Globe */
.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
    height: 380px;
    align-items: center;
    overflow: hidden;
}

.visual-globe-container {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border: 2px dashed rgba(10, 51, 112, 0.15);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(230, 0, 103, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-2 {
    width: 240px;
    height: 240px;
    border-color: rgba(0, 158, 226, 0.3);
    animation-duration: 15s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(115, 190, 67, 0.4);
    animation-duration: 10s;
    animation-direction: reverse;
}

.globe-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-sky) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 10px 25px rgba(10, 51, 112, 0.3);
    z-index: 2;
}

.globe-center svg {
    width: 36px;
    height: 36px;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Highlights / Social Proof Section
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 4rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-sky);
    margin-bottom: 1rem;
    display: inline-flex;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    color: var(--color-magenta);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.stat-sub {
    font-size: 0.875rem;
    color: #64748b;
}

/* --------------------------------------------------------------------------
   Tiga Pilar Utama (Value Proposition)
   -------------------------------------------------------------------------- */
.pillars-section {
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    padding: 3rem 2.2rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-badge {
    position: absolute;
    top: 2rem;
    right: 2.2rem;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.08;
    line-height: 1;
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
}

.pillar-icon svg {
    width: 44px;
    height: 44px;
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.pillar-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Color Accent Variations for Cards */
.border-blue { border-color: rgba(0, 158, 226, 0.25); }
.border-green { border-color: rgba(115, 190, 67, 0.25); }
.border-pink { border-color: rgba(230, 0, 103, 0.25); }

.badge-blue { color: var(--color-sky); }
.badge-green { color: var(--color-green); }
.badge-pink { color: var(--color-magenta); }

.text-blue { color: var(--color-sky); }
.text-green { color: var(--color-green); }
.text-pink { color: var(--color-magenta); }

/* Glow overlay in card back */
.pillar-glow {
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.08;
    pointer-events: none;
}

.bg-blue { background-color: var(--color-sky); }
.bg-green { background-color: var(--color-green); }
.bg-pink { background-color: var(--color-magenta); }

/* --------------------------------------------------------------------------
   Agenda & Rundown Section
   -------------------------------------------------------------------------- */
.rundown-section {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-container {
    max-width: 900px;
    margin: 4rem auto 0 auto;
    position: relative;
    padding-left: 3rem;
}

/* Vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-sky) 0%, var(--color-green) 33%, var(--color-magenta) 66%, var(--color-navy) 100%);
    border-radius: 50px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Marker / Icon dot on timeline */
.timeline-marker {
    position: absolute;
    left: -43px;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: var(--transition-bounce);
}

.timeline-marker svg {
    width: 14px;
    height: 14px;
}

.circle-blue { background-color: var(--color-sky); }
.circle-green { background-color: var(--color-green); }
.circle-pink { background-color: var(--color-magenta); }
.circle-navy { background-color: var(--color-navy); }

/* Hover scale effect for markers */
.timeline-item:hover .timeline-marker {
    transform: scale(1.25);
}

/* Time indicator wrapper */
.timeline-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.time-hours {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy);
}

.time-label {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: var(--bg-white);
}

.label-blue { background-color: var(--color-sky); }
.label-green { background-color: var(--color-green); }
.label-pink { background-color: var(--color-magenta); }
.label-navy { background-color: var(--color-navy); }

/* Content Card styling */
.timeline-content {
    padding: 2rem;
    border-color: rgba(226, 232, 240, 0.6);
}

.timeline-content:hover {
    border-color: var(--color-sky);
}

.session-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.session-theme {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-magenta);
    margin-bottom: 1rem;
}

.session-desc-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* Speakers grid inside session */
.session-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.session-speakers-grid-3 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .session-speakers-grid {
        grid-template-columns: 1fr;
    }
    .session-speakers-grid-3 {
        grid-template-columns: 1fr;
    }
}

.speaker-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.speaker-image-container {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 51, 112, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.speaker-socials {
    display: flex;
    gap: 0.75rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.speaker-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.speaker-social-btn:hover {
    background: var(--color-magenta);
    color: var(--bg-white);
    transform: scale(1.1);
}

.speaker-social-btn svg {
    width: 16px;
    height: 16px;
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
}

.speaker-card:hover .speaker-socials {
    transform: translateY(0);
}

.speaker-card:hover .speaker-img {
    transform: scale(1.06);
}

.speaker-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.speaker-name {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--color-navy);
    line-height: 1.3;
}

.speaker-title {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

/* Card Hover glows by theme */
.speaker-card.card-blue:hover {
    border-color: rgba(0, 158, 226, 0.6);
    box-shadow: 0 10px 25px rgba(0, 158, 226, 0.12);
    transform: translateY(-4px);
}
.speaker-card.card-green:hover {
    border-color: rgba(115, 190, 67, 0.6);
    box-shadow: 0 10px 25px rgba(115, 190, 67, 0.12);
    transform: translateY(-4px);
}
.speaker-card.card-pink:hover {
    border-color: rgba(230, 0, 103, 0.6);
    box-shadow: 0 10px 25px rgba(230, 0, 103, 0.12);
    transform: translateY(-4px);
}
.speaker-card.card-navy:hover {
    border-color: rgba(10, 51, 112, 0.6);
    box-shadow: 0 10px 25px rgba(10, 51, 112, 0.12);
    transform: translateY(-4px);
}

/* Dropdown Container */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.btn-chevron {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
    margin-left: 0.25rem;
}

.dropdown-toggle.active .btn-chevron {
    transform: rotate(180deg);
}

.contact-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 15px 35px rgba(10, 51, 112, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-align: left;
    color: var(--color-navy);
}

.dropdown-item:hover {
    background: rgba(10, 51, 112, 0.05);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 51, 112, 0.06);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-icon svg {
    width: 16px;
    height: 16px;
}

.dropdown-info {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-role {
    font-size: 0.75rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .contact-dropdown {
        left: 50%;
        right: auto;
        transform: translate(-50%, 15px);
    }
    
    .contact-dropdown.show {
        transform: translate(-50%, 0);
    }
}


/* --------------------------------------------------------------------------
   Visi Jangka Panjang (Future Impact)
   -------------------------------------------------------------------------- */
.impact-section {
    padding: 6rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.impact-card {
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    height: 100%;
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.impact-icon svg {
    width: 22px;
    height: 22px;
}

.bg-blue-light { background-color: rgba(0, 158, 226, 0.1); }
.bg-green-light { background-color: rgba(115, 190, 67, 0.1); }
.bg-pink-light { background-color: rgba(230, 0, 103, 0.1); }
.bg-navy-light { background-color: rgba(10, 51, 112, 0.1); }

.impact-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.impact-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Footer & Call to Action (CTA)
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-dark);
    color: #94a3b8;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

/* Upper CTA Banner overlaying footer */
.footer-cta-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-magenta) 100%);
    border-radius: 0 0 40px 40px;
    padding: 4rem 0;
    color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.footer-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text {
    max-width: 600px;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.cta-text p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Main Footer content area */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    gap: 4rem;
    padding: 6rem 0 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 52px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.social-link:hover {
    background-color: var(--color-magenta);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-info h3,
.footer-nav h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-info-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-sky);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-info-list li a {
    color: #94a3b8;
}

.footer-info-list li a:hover {
    color: var(--bg-white);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-list li a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

/* Footer bottom copyright bar */
.footer-bottom {
    padding: 2rem 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.animate-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Special Entry animations for Hero Load */
.animate-fade-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* --------------------------------------------------------------------------
   Responsive Media Queries (Mobile & Tablet Optimization)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-details-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: 2;
        height: auto;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1005;
        align-items: flex-start;
        gap: 1.5rem;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 7rem 0 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-speakers {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-container {
        padding-left: 2rem;
    }
    
    .timeline-container::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -24px;
        width: 26px;
        height: 26px;
    }
}

/* --------------------------------------------------------------------------
   Speaker Profile Modal Overlay Styles
   -------------------------------------------------------------------------- */
.speaker-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.speaker-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.speaker-modal-card {
    width: 100%;
    max-width: 540px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition-smooth);
}

.speaker-modal-overlay.show .speaker-modal-card {
    transform: translateY(0) scale(1);
}

.speaker-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 51, 112, 0.05);
    border: none;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.speaker-modal-close:hover {
    background: var(--color-magenta);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.speaker-modal-header-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.modal-speaker-img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.modal-speaker-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-speaker-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
}

.modal-speaker-title {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
}

.modal-speaker-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.modal-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.modal-social-btn:hover {
    background: var(--color-magenta);
    color: var(--bg-white);
    transform: scale(1.1);
}

.modal-social-btn svg {
    width: 14px;
    height: 14px;
}

.speaker-modal-divider {
    height: 1px;
    background: rgba(10, 51, 112, 0.08);
    margin: 1.5rem 0;
}

.speaker-modal-bio-content h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-magenta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.speaker-modal-bio-content p {
    font-size: 0.975rem;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .speaker-modal-header-meta {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-speaker-img {
        width: 100px;
        height: 100px;
    }
    
    .modal-speaker-socials {
        justify-content: center;
    }
    
    .speaker-modal-card {
        padding: 2rem 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   FAQ Section Styles
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(10, 51, 112, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 158, 226, 0.25);
    box-shadow: 0 12px 30px rgba(10, 51, 112, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 158, 226, 0.3);
    box-shadow: 0 15px 35px rgba(10, 51, 112, 0.08);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 1.5rem;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    color: var(--color-sky);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(10, 51, 112, 0.05);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-icon {
    background: rgba(0, 158, 226, 0.1);
    color: var(--color-sky);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--color-sky);
    color: var(--bg-white);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 2rem;
}

.faq-answer {
    padding-bottom: 1.5rem;
    color: #475569;
    font-size: 0.975rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Instagram Section Styles
   -------------------------------------------------------------------------- */
.instagram-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.instagram-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 30px rgba(10, 51, 112, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: var(--bg-white);
    display: block;
    cursor: pointer;
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 36, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
}

.instagram-card:hover .instagram-img {
    transform: scale(1.06);
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.instagram-stat.likes svg {
    color: #ef4444;
    fill: #ef4444;
}

.instagram-stat.comments svg {
    color: #3b82f6;
}

.instagram-stat svg {
    width: 20px;
    height: 20px;
}

.instagram-card-caption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.instagram-action-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-sky);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-bottom: 2px dashed transparent;
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-action-btn {
    border-color: var(--color-sky);
}

.instagram-action-btn:hover {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.instagram-action-btn svg {
    width: 14px;
    height: 14px;
}

/* Responsiveness for Instagram & FAQ */
@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .faq-header {
        padding: 1.25rem 1.5rem;
    }
    .faq-content {
        padding: 0 1.5rem;
    }
    .faq-question {
        font-size: 0.975rem;
    }
}

/* --------------------------------------------------------------------------
   Partners & Supporters Section
   -------------------------------------------------------------------------- */
.partners-section {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 5;
}

.partner-group {
    margin-bottom: 4.5rem;
}

.partner-group:last-child {
    margin-bottom: 0;
}

.partner-group-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.partner-group-title::before,
.partner-group-title::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, rgba(10, 51, 112, 0.12), transparent);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo-box {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(10, 51, 112, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Size contexts based on partner category */
.sponsors-grid .partner-logo-box {
    width: 210px;
    height: 100px;
    padding: 1.25rem 2.25rem;
}

.media-grid .partner-logo-box {
    width: 175px;
    height: 85px;
    padding: 1rem 1.75rem;
}

.community-grid .partner-logo-box {
    width: 155px;
    height: 75px;
    padding: 0.85rem 1.5rem;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.partner-logo-box:hover {
    background: #ffffff;
    border-color: rgba(0, 158, 226, 0.3);
    box-shadow: 0 12px 30px rgba(10, 51, 112, 0.07);
    transform: translateY(-5px);
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .partners-grid {
        gap: 1.5rem;
    }
    .partner-group {
        margin-bottom: 3.5rem;
    }
    .sponsors-grid .partner-logo-box {
        width: 160px;
        height: 85px;
        padding: 1rem;
        border-radius: 16px;
    }
    .media-grid .partner-logo-box {
        width: 140px;
        height: 75px;
        padding: 0.85rem;
        border-radius: 14px;
    }
    .community-grid .partner-logo-box {
        width: 120px;
        height: 65px;
        padding: 0.75rem;
        border-radius: 12px;
    }
}

