/*
Theme Name: AzTU Incubation Center
Description: Modern & Professional WordPress theme for AzTU Incubation Center
Version: 2.0
Author: AzTU
*/

/* CSS Variables - Modern Color Palette */
:root {
    --primary-color: #1a365d;
    --secondary-color: #3182ce;
    --accent-color: #38b2ac;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'system-ui', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-primary);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header - Modern Sticky Design */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation - Modern Menu */
.main-navigation {
    position: relative;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section - Enhanced */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 10rem 0 8rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInFromBottom 1s ease-out 0.9s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--bg-secondary);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    animation: glow 2s ease-in-out infinite;
}

/* Statistics Section */
.stats-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Cards and Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.content-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.card-image {
    height: 250px;
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.card-content {
    padding: 2.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Information Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

/* Forms */
.form-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.application-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-white { background-color: white; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-muted { color: var(--text-muted); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation ul {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        gap: 1rem;
    }
    
    .main-navigation.active ul {
        transform: translateY(0);
    }
    
    .hero-section {
        padding: 8rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
}
/* Ana Səhifə yazısını bir sətirdə saxla */
.site-header .site-title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.site-header .site-title a {
    white-space: nowrap !important;
    display: inline !important;
}

/* Site description yazısını da bir sətirdə saxla */
.site-header .site-description {
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    margin: 2px 0 0 0 !important;
}

/* Logo və brand text arasında boşluq */
.site-header .brand-text {
    margin-left: 12px !important;
}

/* Container genişliyini artır */
.site-header .container {
    max-width: 100% !important;
    padding: 0 20px !important;
}
wp_enqueue_style('theme-style', get_stylesheet_uri(), array(), time());
/* Tərəfdaşlar üçün skroll effekti */
.partners-logos-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 100%;
}

.partners-logos-list {
    display: flex; /* Flexbox istifadə edərək ardıcıl düzülməni təmin edir */
    animation: scroll-partners-rtl 25s linear infinite; /* Sağdan sola hərəkət */
}

.partners-logos-list .partner-logo {
    flex-shrink: 0; /* Loqoların kiçilməsini önləyir */
    width: 200px;
    height: 100px;
    margin-right: 40px;
    background-color: #f1f5f9;
    border-radius: 10px;
    color: #0f172a;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
}

/* Kətanın bütün hissəsinin skrolla daxil olması üçün loqo siyahısının iki dəfə təkrarlanması */
.partners-logos-list:hover {
    animation-play-state: paused;
}

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

/* Responsivlik üçün */
@media (max-width: 768px) {
    .partners-logos-list {
        animation-duration: 40s; /* Mobil cihazlarda daha yavaş hərəkət etsin */
    }
}/* RESPONSIVE FIX */
@media (max-width: 992px) {
    /* Header düzəlişi */
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .site-logo {
        flex: 0 1 auto !important;
        max-width: 65% !important;
        overflow: hidden;
    }
    
    .site-logo img {
        max-height: 40px !important;
        width: auto;
    }
    
    .brand-text {
        margin-left: 8px !important;
        overflow: hidden;
    }
    
    .site-title {
        font-size: 0.95rem !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .site-description {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }
    
    /* Hamburger sağda */
    .menu-toggle {
        display: flex !important;
        flex: 0 0 50px !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
    }
    
    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: #1a365d;
        transition: 0.3s;
    }
    
    /* Navigation */
    .main-navigation {
        display: none !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 999;
    }
    
    .main-navigation.active {
        display: block !important;
    }
    
    .main-navigation ul {
        flex-direction: column !important;
        padding: 20px 0 !important;
    }
    
    .main-navigation li {
        width: 100% !important;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        display: block !important;
        padding: 15px 20px !important;
    }
}

@media (max-width: 576px) {
    .site-logo {
        max-width: 60% !important;
    }
    
    .site-logo img {
        max-height: 35px !important;
    }
    
    .site-title {
        font-size: 0.85rem !important;
    }
    
    .site-description {
        display: none !important;
    }
/* ==================================================
   PROFESSIONAL RESPONSIVE DESIGN
   ================================================== */

/* Smooth transitions */
* {
    transition: padding 0.3s ease, margin 0.3s ease, font-size 0.3s ease;
}

/* Container fluid scaling */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    /* Hero professional scaling */
    .hero-section {
        padding: 7rem 0 5rem !important;
        background-size: cover;
        background-position: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem) !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
        max-width: 90%;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }
    
    .cta-button {
        min-width: 200px;
        padding: 1rem 2rem;
    }
    
    /* Grid systems - professional gaps */
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 2rem;
    }
    
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 2rem;
    }
    
    /* Cards enhanced */
    .content-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .content-card:hover {
        transform: translateY(-5px);
    }
    
    .card-image {
        height: 240px !important;
        background-size: cover;
        background-position: center;
    }
    
    /* Forms professional styling */
    .application-form {
        padding: 2.5rem !important;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 8px;
        border: 2px solid #e2e8f0;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #3182ce;
        outline: none;
        box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    }
    
    /* Footer professional */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Typography scaling */
    h1 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
    h3 { font-size: clamp(1.3rem, 4vw, 1.7rem) !important; }
    
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    }
    
    /* Sections */
    .section {
        padding: 4rem 0 !important;
    }
    
    .hero-section {
        padding: 6rem 0 4rem !important;
    }
    
    /* Stats professional layout */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    
    /* Grid single column */
    .content-grid,
    .info-cards,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Cards */
    .content-card,
    .info-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .card-content {
        padding: 2rem !important;
    }
    
    .card-title {
        font-size: 1.4rem !important;
    }
    
    /* Forms */
    .application-form {
        padding: 2rem 1.5rem !important;
        border-radius: 16px;
    }
    
    .form-grid {
        gap: 1.5rem;
    }
    
    .submit-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
        border-radius: 50px;
    }
    
    /* Info icons */
    .info-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero compact */
    .hero-section {
        padding: 5rem 0 3.5rem !important;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
    }
    
    /* Typography mobile */
    .section-title {
        font-size: 1.6rem !important;
    }
    
    /* Stats compact */
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    /* Cards mobile */
    .card-image {
        height: 200px !important;
    }
    
    .card-content {
        padding: 1.5rem !important;
    }
    
    /* Forms mobile optimized */
    .application-form {
        padding: 1.5rem 1rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .submit-btn {
        padding: 1rem 2rem;
    }
    
    /* Tables responsive */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .submit-btn,
    a {
        min-height: 44px; /* iOS touch target */
    }
    
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Images optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}