/* ==========================================================================
   PDMBA Landing Page Stylesheet
   Designed by: Reticulo (Premium, Modern, Professional, Minimalist)
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --primary-color: #008ED9;
    --primary-light: #E0F2FE;
    --primary-dark: #0276B5;
    --secondary-color: #FFB703;
    --secondary-dark: #FB8500;
    
    --bg-dark: #0A0F1D;
    --bg-dark-card: #151C30;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #F1F5F9;
    --text-white: #FFFFFF;
    
    --success: #10B981;
    --warning: #F59E0B;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 20px rgba(0, 142, 217, 0.15);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* 2. Utility Components (Buttons, Badges) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--border-radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 142, 217, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 183, 3, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 16px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 16px auto 0 auto;
    border-radius: var(--border-radius-full);
}

.section-header.text-center .title-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Desktop vs Mobile display utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

/* 3. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
    transition: var(--transition-normal);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    color: var(--text-main);
    font-size: 24px;
}

/* 4. Hero Section (White Theme, Smaller Logo, No animations on top) */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: var(--bg-white);
    color: var(--text-main);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 142, 217, 0.15);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #4ea8de 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-content: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-white);
}

.hero-main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 142, 217, 0.15));
    z-index: 2;
    transition: transform var(--transition-normal);
}

.hero-main-logo:hover {
    transform: scale(1.02);
}

/* 5. History Section */
.history-section {
    background-color: var(--bg-white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.history-card.text-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.history-card.text-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.history-paragraph {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.history-timeline {
    position: relative;
    padding-left: 32px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

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

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-full);
    outline: 6px solid var(--primary-light);
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--secondary-color);
    outline-color: rgba(255, 183, 3, 0.2);
}

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 6. Interactive Calendar Section */
.calendar-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    background-color: var(--bg-white);
    padding: 20px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-select {
    padding: 10px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-white);
    outline: none;
    min-width: 180px;
    transition: var(--transition-fast);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.1);
}

/* Calendar layout limit for PC view */
.calendar-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 60px;
    max-width: 1000px; /* Make calendar smaller on PC view */
    margin-left: auto;
    margin-right: auto;
}

.calendar-widget-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.calendar-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-widget-header h3 {
    font-size: 20px;
    font-weight: 800;
}

.btn-cal-nav {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-cal-nav:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 8px;
    text-align: center;
}

.cal-day-cell {
    aspect-ratio: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    border-radius: var(--border-radius-sm);
    position: relative;
    cursor: default;
    transition: var(--transition-fast);
}

.cal-day-cell.empty {
    cursor: default;
}

.cal-day-cell.has-event {
    cursor: pointer;
    font-weight: 700;
    border: 1.5px solid var(--primary-light);
}

.cal-day-cell.has-event:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

.cal-day-cell.has-event.selected {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 142, 217, 0.3);
}

.event-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--border-radius-full);
    position: absolute;
    bottom: 6px;
}

.event-dot.dot-super1000 { background-color: var(--secondary-color); }
.event-dot.dot-super500 { background-color: var(--primary-color); }
.event-dot.dot-super100 { background-color: var(--success); }
.event-dot.dot-other { background-color: var(--text-muted); }

.cal-day-cell.has-event.selected .event-dot {
    background-color: var(--text-white);
}

.calendar-details-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.no-event-selected {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.no-event-selected .large-icon {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.5;
}

.no-event-selected h4 {
    font-size: 17px;
    color: var(--text-main);
}

.no-event-selected p {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 250px;
}

.event-selected-view {
    animation: fadeIn var(--transition-fast) ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-selected-view .badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.event-selected-view h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
}

.event-meta-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.meta-item i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    margin-top: 2px;
}

.meta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 2px;
}

.hidden {
    display: none !important;
}

/* Events Table (Desktop) */
.events-list-wrapper {
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.list-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.events-table-responsive {
    width: 100%;
    overflow-x: auto;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.events-table th {
    background-color: var(--bg-light);
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.events-table td {
    padding: 18px 24px;
    font-size: 14.5px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
}

.events-table tbody tr:last-child td {
    border-bottom: none;
}

.events-table tbody tr {
    transition: var(--transition-fast);
}

.events-table tbody tr:hover {
    background-color: rgba(248, 250, 252, 0.6);
}

.tbl-badge {
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
}

.tbl-badge.super1000 { background-color: rgba(255, 183, 3, 0.15); color: var(--secondary-dark); }
.tbl-badge.super500 { background-color: rgba(0, 142, 217, 0.15); color: var(--primary-dark); }
.tbl-badge.super100 { background-color: rgba(16, 185, 129, 0.15); color: #047857; }
.tbl-badge.other { background-color: rgba(100, 116, 139, 0.1); color: var(--text-muted); }

.events-table .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.calendar-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    background-color: var(--primary-light);
    border-left: 3px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Mobile ListView cards beneath calendar */
.events-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-mobile-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.mobile-card-date {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--primary-color);
}

.event-mobile-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
}

.mobile-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13.5px;
    color: var(--text-muted);
    border-top: 1px solid rgba(241, 245, 249, 0.6);
    padding-top: 10px;
}

.mobile-card-details strong {
    color: var(--text-main);
}

/* 7. Rankings Section (Coming Soon layout) */
.rankings-soon-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.rankings-soon-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.rankings-soon-icon i {
    width: 32px;
    height: 32px;
}

.rankings-soon-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.rankings-soon-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.rankings-divider {
    height: 1.5px;
    background-color: rgba(241, 245, 249, 0.8);
    margin: 32px 0;
}

.rankings-soon-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.rankings-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 28px auto;
}

.ranking-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.r-tier-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border: 1.5px dashed var(--primary-light);
}

.r-tier-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.r-tier-badge.tier-1000 { background-color: rgba(255, 183, 3, 0.15); color: var(--secondary-dark); }
.r-tier-badge.tier-500 { background-color: rgba(0, 142, 217, 0.15); color: var(--primary-dark); }
.r-tier-badge.tier-100 { background-color: rgba(16, 185, 129, 0.15); color: #047857; }

.r-tier-item h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.r-tier-item p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 8. Academy Section Styles */
.academy-section {
    background-color: var(--bg-light);
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.academy-info-block h3, .academy-centers-block h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.academy-info-block p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.academy-cta-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
    display: flex;
    gap: 20px;
}

.cta-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    width: 22px;
    height: 22px;
}

.academy-cta-box h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.academy-cta-box p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.academy-email {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: var(--primary-color);
    border-bottom: 1.5px dashed var(--primary-color);
    padding-bottom: 2px;
}

.academy-email:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.center-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.center-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.center-card:hover {
    transform: translateX(4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.center-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
}

.center-card:hover .center-num {
    color: var(--primary-color);
}

.center-details h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.center-details p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 9. Services Offered Section (4 columns, updated registration layout) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards */
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.registration-steps {
    list-style: none;
    counter-reset: reg-counter;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.registration-steps li {
    counter-increment: reg-counter;
    font-size: 13.5px;
    color: var(--text-muted);
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
}

.registration-steps li::before {
    content: counter(reg-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 11px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-steps a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-color);
}

.service-link:hover {
    color: var(--primary-dark);
}



/* 11. Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.info-intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 20px;
    height: 20px;
}

.info-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.map-placeholder-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    overflow: hidden;
}

.map-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
}

.map-body {
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.map-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.map-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.map-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-main);
}

.form-group label .required {
    color: #EF4444;
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--primary-light);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg-light);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 142, 217, 0.1);
}

.btn-submit {
    margin-top: 12px;
}

.form-feedback {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.form-feedback.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* 12. Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.brand-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 14px;
}

.footer-links ul a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact p i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 13px;
}

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

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.mobile-only-link {
    display: none !important;
}

/* 13. Responsive Breakpoints */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-media {
        order: -1;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .calendar-layout {
        grid-template-columns: 1fr;
    }
    
    .academy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-normal);
        z-index: 999;
        border-top: 1px solid rgba(241, 245, 249, 0.6);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .btn-portal-login {
        display: none;
    }
    
    .hero-media {
        display: none !important;
    }
    
    .mobile-only-link {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        color: var(--primary-color) !important;
        font-weight: 700 !important;
        margin-top: 16px;
        border: 2px solid var(--primary-color);
        padding: 10px 20px !important;
        border-radius: var(--border-radius-sm);
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile-only-link::after {
        display: none !important;
    }
    
    .mobile-only-link:hover {
        background-color: var(--primary-light);
        color: var(--primary-dark) !important;
        border-color: var(--primary-dark);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .calendar-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    
    .form-select {
        width: 100%;
    }
    
    .calendar-widget-card {
        padding: 20px 16px;
    }
    
    .cal-day-cell {
        font-size: 13px;
    }
    
    /* Toggle listviews on Mobile */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .rankings-soon-card {
        padding: 32px 20px;
    }
    
    .ranking-tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
