/* Modern Design System - Women in AI */
: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, .stat-card-modern p, .footer-brand 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, .btn {
    text-align: inherit;
}

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;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.carousel-img {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(218, 8, 8, 0.45) 0%, rgba(184, 7, 7, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    width: 5%;
}

.carousel-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.carousel-content * {
    pointer-events: auto;
}

.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-calling {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    min-height: 2.5em;
}

.typewriter-cursor {
    visibility: hidden;
}

.typewriter-cursor::after {
    content: '|';
    animation: typewriter-blink 0.8s step-end infinite;
    color: #fff;
    margin-left: 2px;
}

@keyframes typewriter-blink {
    50% { opacity: 0; }
}

.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-subtitle-short {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.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 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.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;
    text-align: left;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

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

.hero-actions .btn-register-hero {
    min-width: 140px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    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(--dark);
}

.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;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    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;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #fff8e1 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(--brand-red);
    font-size: 1.25rem;
}

.about-image-wrapper {
    position: relative;
}

.image-card-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(218, 8, 8, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: var(--white);
}

.overlay-content {
    text-align: left;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Timeline Section */
.timeline-section {
    background: var(--white);
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-red), var(--brand-yellow));
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item-modern:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.marker-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

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

.timeline-content {
    width: 45%;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.timeline-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.timeline-date {
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fff8e1 100%);
}

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

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* 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/wai4.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;
}

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

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

.footer-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.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;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item-modern {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: auto;
    }
    
    .logo-img {
        width: 140px;
        max-height: 60px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem;
    }
    
    .stat-card-modern {
        margin-bottom: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .hero-info-card {
        padding: 0.625rem 0.75rem;
    }
    
    .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.75rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.75rem;
    }
    
    .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;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .image-card-large {
        height: 350px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        padding: 1.5rem;
    }
    
    .timeline-item-modern {
        margin-bottom: 2rem;
    }
    
    .marker-icon {
        width: 60px;
        height: 60px;
    }
    
    .marker-icon i {
        font-size: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .stat-card-modern {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .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;
    }
    
    .carousel-img {
        height: 100vh;
    }
    
    .carousel-inner,
    .carousel-item {
        height: 100vh;
    }
    
    .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);
    }
    
    .dropdown-item {
        color: var(--white);
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
}

/* 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;
    }
    
    .hero-calling {
        font-size: 1rem;
    }
    
    .hero-quote {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .hero-info-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-info-card {
        padding: 0.625rem 0.75rem;
    }
    
    .hero-info-card .info-value {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 1.75rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        padding: 1.25rem;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
    }
    
    .marker-icon i {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 100px;
        max-height: 45px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* 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;
    }
    
    .hero-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        padding: 1rem;
    }
}
