/* Modern Design System */
:root {
    --brand-yellow: #f9e604;
    --brand-red: #da0808;
    --brand-gray: #52565e;
    --primary: #da0808;
    --primary-dark: #b80707;
    --secondary: #f9e604;
    --accent: #f9e604;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #52565e;
    --gray-light: #94a3b8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #da0808 0%, #b80707 100%);
    --gradient-secondary: linear-gradient(135deg, #f9e604 0%, #ffd700 100%);
    --gradient-accent: linear-gradient(135deg, #f9e604 0%, #ffd700 100%);
    --shadow-sm: 0 2px 4px 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);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
    a, button {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        min-height: 44px;
    }
}

/* Text Justification */
p, .section-text, .hero-subtitle, .about-section p, .timeline-content p, .expect-card p, .showcase-card p, .package-features li, .footer-brand p, .coming-soon-box p, .cta-content p {
    text-align: justify;
}

/* Keep headings and titles centered */
h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .stat-label, .stat-number, .package-price, .btn {
    text-align: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.modern-navbar {
    background: var(--dark);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    background: var(--dark);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
}

.logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.btn-register-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
}

.btn-register-nav::after {
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/2025/767A8000_Original.jpg') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(218, 8, 8, 0.9) 0%, rgba(184, 7, 7, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #f9e604 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.hero-info-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 200px;
}

.hero-info-card i {
    font-size: 1.5rem;
    color: var(--brand-yellow);
}

.hero-info-card .info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.hero-info-card .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-main-image {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section-padding {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Goal Section */
.goal-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.goal-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

.goal-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.goal-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.goal-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* Schedule Overview */
.schedule-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-day-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--brand-red);
}

.schedule-day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.day-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.schedule-day-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.schedule-day-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 500px;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.image-card-1 {
    grid-row: 1 / 2;
}

.image-card-2 {
    grid-row: 1 / 2;
}

.image-card-3 {
    grid-row: 2 / 3;
}

.image-card-4 {
    grid-row: 2 / 3;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Expect Section */
.expect-section {
    background: var(--dark);
    color: var(--white);
}

.expect-section .section-title,
.expect-section .section-text {
    color: var(--white);
}

.expect-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.expect-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.expect-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expect-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expect-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expect-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Speakers Section */
.speakers-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.coming-soon-box {
    background: rgba(218, 8, 8, 0.05);
    border: 2px dashed var(--brand-red);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}

.coming-soon-box i {
    font-size: 4rem;
    color: var(--brand-red);
    margin-bottom: 1.5rem;
}

.coming-soon-box h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.coming-soon-box p {
    color: var(--gray);
}

/* Schedule Section */
.schedule-section {
    background: var(--white);
}

/* Packages Section */
.packages-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card.package-premium {
    background: var(--gradient-primary);
    color: var(--white);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-badge.premium {
    background: var(--gradient-secondary);
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.package-premium h3 {
    color: var(--white);
}

.package-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray);
}

.package-premium .currency {
    color: rgba(255, 255, 255, 0.8);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-left: 0.5rem;
}

.package-premium .amount {
    color: var(--white);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.package-premium .package-features li {
    color: rgba(255, 255, 255, 0.9);
}

.package-features i {
    color: var(--primary);
    font-size: 1.125rem;
}

.package-premium .package-features i {
    color: var(--white);
}

.package-note {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.package-premium .package-note {
    color: rgba(255, 255, 255, 0.9);
}

/* Showcase Section */
.showcase-section {
    background: var(--white);
}

.showcase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

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

.showcase-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.showcase-icon i {
    font-size: 2rem;
    color: var(--white);
}

.showcase-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.showcase-details h4 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.showcase-details ul {
    list-style: none;
    padding-left: 0;
}

.showcase-details ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.showcase-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: 700;
}

.timeline {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--brand-red);
}

.timeline-item {
    padding: 0.75rem 0;
    color: var(--gray);
}

.timeline-item strong {
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/2025/767A8463_Original.jpg') center/cover;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sponsors Section */
.sponsors-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

/* Footer */
.footer-section {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--brand-red);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Registration Notification */
.registration-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
}

.notification-content {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--brand-red);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-content i.fa-clock {
    font-size: 2rem;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.notification-content h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin: 0;
    text-align: left;
}

.notification-content p {
    color: var(--gray);
    margin: 0;
    text-align: left;
    font-size: 0.875rem;
}

.notification-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .registration-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 80px;
    }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-images-grid {
        height: 400px;
    }
    
    .logo-img {
        width: 140px;
        max-height: 60px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem;
    }
    
    .schedule-overview {
        grid-template-columns: 1fr;
    }
    
    .goal-card {
        margin-bottom: 1rem;
    }
    
    .package-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-info-cards {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-info-card {
        min-width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .hero-info-card i {
        font-size: 1.25rem;
    }
    
    .hero-info-card .info-label {
        font-size: 0.7rem;
    }
    
    .hero-info-card .info-value {
        font-size: 0.875rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.75rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .about-images-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 0.75rem;
    }
    
    .image-card {
        min-height: 200px;
    }
    
    .image-card-1,
    .image-card-2,
    .image-card-3,
    .image-card-4 {
        grid-row: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .expect-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .expect-card h3 {
        font-size: 1.25rem;
    }
    
    .schedule-day-card {
        padding: 1.5rem;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .schedule-day-card h3 {
        font-size: 1.125rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .showcase-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .goal-card {
        padding: 1.5rem;
    }
    
    .goal-card i {
        font-size: 2.5rem;
    }
    
    .stat-card-modern {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section .row {
        margin-bottom: 2rem;
    }
    
    .footer-section .col-lg-4,
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo-img {
        width: 120px;
        max-height: 50px;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .btn-register-nav {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
    }
    
    .image-card {
        min-height: 250px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 1.75rem;
    }
    
    .package-price .amount {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 100px;
        max-height: 45px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-info-card {
        padding: 0.625rem 0.75rem;
    }
    
    .hero-info-card .info-value {
        font-size: 0.75rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Improvements */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .dropdown-menu {
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        color: var(--white);
        padding: 0.75rem 1rem;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
}
