/* ===================================
   Millzik Landing Page - MK2 Style
   Navy/Orange Theme
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-navy: #1e3a8a;
    --primary-orange: #f97316;
    --secondary-blue: #3b82f6;
    --accent-yellow: #fbbf24;
    
    /* Neutrals */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-gray: #e2e8f0;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 32px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "PingFang TC", "Microsoft JhengHei", sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    margin-bottom: 16px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary,
.btn-primary-large {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary,
.btn-secondary-large {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 16px 48px;
    font-size: 18px;
}

.btn-icon {
    margin-right: 8px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-orange);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
}

.brand-logo {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-cta {
    padding: 8px 24px;
    background: var(--primary-orange);
    color: white !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #ea580c;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
}

/* ===================================
   Hero Slideshow
   =================================== */
.hero {
    position: relative;
    margin-top: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 100px 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slide-prev,
.slide-next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.slide-prev:hover,
.slide-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   Courses Section
   =================================== */
.courses-section {
    padding: var(--section-padding);
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: var(--card-padding);
    transition: var(--transition-normal);
    position: relative;
}

.course-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.course-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.course-card h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.course-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 0;
}

.course-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 14px;
    border-bottom: 1px solid var(--border-gray);
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li::before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 8px;
}

/* ===================================
   Events Section
   =================================== */
.events-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 64px;
}

.placeholder-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.event-content {
    padding: 24px;
}

.event-content h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.event-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.event-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   Spaces Section
   =================================== */
.spaces-section {
    padding: var(--section-padding);
    background: white;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.space-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.space-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.space-image {
    height: 180px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.space-content {
    padding: 24px;
}

.space-content h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.space-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.space-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: var(--text-gray);
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   Role Selection Section
   =================================== */
.role-selection {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.role-card {
    background: white;
    border: 3px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-normal);
    cursor: pointer;
    display: block;
}

.role-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.role-card.learner {
    border-color: var(--secondary-blue);
}

.role-card.learner:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.role-card.instructor {
    border-color: var(--primary-orange);
}

.role-card.instructor:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.role-card.community {
    border-color: var(--accent-yellow);
}

.role-card.community:hover {
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
}

.role-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.role-card h3 {
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-size: 26px;
}

.role-description {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.role-features {
    list-style: none;
    margin-bottom: 24px;
}

.role-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
}

.role-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--border-gray);
}

.cta-text {
    font-weight: 600;
    color: var(--primary-navy);
}

.cta-arrow {
    font-size: 24px;
    color: var(--primary-orange);
}

/* ===================================
   Platform Features Section
   =================================== */
.platform-features {
    padding: var(--section-padding);
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: var(--card-padding);
    transition: var(--transition-normal);
    position: relative;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card.featured {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border: 2px solid var(--primary-orange);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.platform-features .cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* ===================================
   GOD Preview Section
   =================================== */
.mzk-preview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.mzk-preview .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.mzk-preview .section-title {
    color: white;
}

.mzk-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tier-showcase {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.tier-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    min-width: 160px;
    transition: var(--transition-normal);
}

.tier-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tier-item.featured {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.tier-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 12px;
    display: inline-block;
}

.tier-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tier-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.tier-points {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tier-label {
    font-size: 14px;
    opacity: 0.9;
}

.mzk-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h4 {
    margin-bottom: 12px;
}

.benefit-item p {
    opacity: 0.9;
}

/* ===================================
   Core Services Section
   =================================== */
.core-services {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--primary-orange);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-size: 26px;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 12px;
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   Partners Section
   =================================== */
.partners {
    padding: var(--section-padding);
    background: white;
    overflow: hidden;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    margin: 40px 0;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.logo-marquee.reverse .logo-track {
    animation: scroll-reverse 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-logo {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

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

.logo-placeholder {
    background: var(--border-gray);
    padding: 20px 40px;
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 600;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text blockquote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 24px;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 32px;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
}

/* ===================================
   Cultural Program Section
   =================================== */
.cultural-program {
    padding: var(--section-padding);
    background: white;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.framework-item {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.framework-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.framework-number {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.framework-item h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.framework-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.course-domains,
.broadcast-culture {
    margin-bottom: 60px;
}

.course-domains h3,
.broadcast-culture h3 {
    text-align: center;
    color: var(--primary-navy);
    font-size: 32px;
    margin-bottom: 40px;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.domain-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.domain-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.domain-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.domain-item h4 {
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 18px;
}

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

.culture-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.culture-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pillar-item {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.pillar-item h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.pillar-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.program-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 40px;
    font-size: 18px;
}

.contact-info p {
    margin-bottom: 12px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 12px;
        display: block;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        margin-top: 60px;
    }

    .hero-slide {
        padding: 60px 0;
    }

    .hero-slideshow {
        min-height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    .slideshow-controls {
        bottom: 20px;
    }

    /* Typography */
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Sections */
    .courses-section,
    .events-section,
    .spaces-section,
    .role-selection,
    .platform-features,
    .mzk-preview,
    .core-services,
    .partners,
    .about-section,
    .cultural-program,
    .cta-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Grids */
    .courses-grid,
    .events-grid,
    .spaces-grid,
    .role-cards,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .framework-grid,
    .domains-grid,
    .culture-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Cards */
    .course-card,
    .event-card,
    .space-card,
    .role-card,
    .feature-card,
    .service-card {
        padding: 24px;
    }

    /* Tier Showcase */
    .tier-showcase {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .tier-item {
        width: 100%;
        max-width: 300px;
    }

    .tier-item.featured {
        transform: scale(1);
    }

    .mzk-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Partners */
    .logo-track {
        gap: 40px;
    }

    .partner-logo {
        min-width: 120px;
        height: 60px;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 14px 32px;
    }

    .program-cta {
        flex-direction: column;
    }

    .program-cta a {
        width: 100%;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .course-icon,
    .feature-icon,
    .service-icon {
        font-size: 40px;
    }

    .role-icon {
        font-size: 48px;
    }

    .tier-icon {
        font-size: 40px;
    }

    .slideshow-controls {
        gap: 12px;
    }

    .slide-prev,
    .slide-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .framework-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slideshow {
        min-height: 400px;
    }

    .hero-slide {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .slideshow-controls,
    .mobile-menu-toggle,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title {
        color: black;
    }

    .course-card,
    .event-card,
    .space-card,
    .role-card,
    .feature-card,
    .service-card {
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logo-track {
        animation: none !important;
    }

    .hero-slide {
        transition: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border-width: 3px;
    }

    .course-card,
    .event-card,
    .space-card,
    .role-card {
        border-width: 3px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Keep light theme for now, but structure is ready */
    /* Uncomment below to enable dark mode */
    /*
    :root {
        --bg-light: #1e293b;
        --bg-white: #0f172a;
        --text-dark: #f1f5f9;
        --text-gray: #cbd5e1;
        --border-gray: #334155;
    }
    */
}

/* End of Responsive Styles */
