/* ==========================================================================
   КГАФКиС - Стили веб-сайта
   ========================================================================== */

/* Базовые стили
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Анимированный фон
   ========================================================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="600" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="700" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="100" cy="800" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

/* Анимации
   ========================================================================== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

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

/* Шапка сайта
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Главная секция (Hero)
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7), rgba(118, 75, 162, 0.7)), 
                url('https://i.ibb.co/Kjbb04qj/47e4a6c4-7007-48f9-b2ff-ab11a04b734b.png') center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA кнопка
   ========================================================================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    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.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

/* Секция поступления
   ========================================================================== */
.admission-main {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.admission-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(102,126,234,0.1)"/><circle cx="800" cy="300" r="1.5" fill="rgba(118,75,162,0.1)"/><circle cx="400" cy="600" r="3" fill="rgba(102,126,234,0.1)"/><circle cx="900" cy="700" r="1.5" fill="rgba(118,75,162,0.1)"/><circle cx="100" cy="800" r="2.5" fill="rgba(102,126,234,0.1)"/></svg>') repeat;
    animation: float 30s ease-in-out infinite;
    z-index: -1;
}

.admission-main h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.admission-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.admission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Карточки поступления
   ========================================================================== */
.admission-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.admission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.admission-card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    text-align: center;
}

.admission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admission-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.admission-card-content {
    padding: 2rem;
}

.admission-card-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.admission-list {
    list-style: none;
    padding: 0;
}

.admission-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

.admission-list li:last-child {
    border-bottom: none;
}

.admission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Контактная секция в поступлении
   ========================================================================== */
.admission-contact-section {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.admission-contact-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-header-text h3 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.contact-header-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.admission-contact-cards {
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Карточки контактов
   ========================================================================== */
.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.contact-card-content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-card-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* CTA секция в поступлении
   ========================================================================== */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.contact-cta-content h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.contact-cta-content p {
    color: #666;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-btn.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-btn.secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.contact-btn.secondary:hover svg path {
    fill: white;
}

/* Секция особенностей
   ========================================================================== */
.features {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Секция статистики
   ========================================================================== */
.stats {
    padding: 6rem 5%;
    background: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    z-index: -1;
}

.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Секция контактов
   ========================================================================== */
.contact {
    padding: 0;
    background: white;
    position: relative;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="600" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="700" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="100" cy="800" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.contact-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    color: white;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Основная секция контактов
   ========================================================================== */
.contact-info-section {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.contact-info-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-main-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-main-text h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.contact-main-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-cards-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Современные карточки контактов
   ========================================================================== */
.modern-contact-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.modern-contact-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    background: white;
}

.modern-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.modern-contact-card:hover .modern-contact-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.modern-contact-content h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.modern-contact-content p {
    margin: 0 0 1rem 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modern-contact-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modern-contact-content a:hover {
    color: #764ba2;
}

.contact-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Секция карты
   ========================================================================== */
.contact-map-section {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    height: fit-content;
    position: sticky;
    top: 100px;
    z-index: 100;
    transition: all 0.3s ease;
}

.contact-map-section.stuck {
    box-shadow: 0 30px 100px rgba(0,0,0,0.2);
    transform: scale(0.98);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-icon {
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 3px solid rgba(102, 126, 234, 0.2);
}

.map-placeholder h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.map-placeholder p {
    color: #666;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.map-actions {
    width: 100%;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Подвал
   ========================================================================== */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Анимации скролла
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Оптимизация производительности
   ========================================================================== */
/* Заменяем прямые изменения стилей через JS на CSS классы */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
}

.contact-map-section.contact-visible {
    position: sticky;
    top: 100px;
}

/* Улучшенные стили фокуса для доступности */
.focus-visible {
    outline: 2px solid #667eea !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Оптимизация анимаций */
.animate-on-scroll {
    will-change: transform, opacity;
}

.animate-on-scroll.animated {
    will-change: auto;
}

/* Оптимизация для быстрого рендеринга */
.cta-button,
.contact-btn,
.map-btn {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.cta-button:hover,
.contact-btn:hover,
.map-btn:hover {
    will-change: auto;
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    .contact-map-section.contact-visible,
    .contact-map-section.stuck {
        position: relative !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Адаптивность
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .features {
        padding: 4rem 5%;
    }

    .admission-main {
        padding: 4rem 5%;
    }

    .admission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .admission-contact-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .contact-header-icon {
        width: 60px;
        height: 60px;
    }

    .contact-header-text h3 {
        font-size: 1.5rem;
    }

    .admission-contact-cards {
        padding: 2rem 1rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-hero {
        padding: 4rem 5% 3rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .contact-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-content {
        padding: 3rem 5%;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-section {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        order: -1;
        margin-bottom: 2rem;
    }

    .contact-info-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .contact-main-icon {
        width: 60px;
        height: 60px;
    }

    .contact-main-text h3 {
        font-size: 1.4rem;
    }

    .contact-cards-grid {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-contact-card {
        padding: 1.5rem;
    }

    .modern-contact-icon {
        width: 50px;
        height: 50px;
    }

    .map-placeholder {
        padding: 2rem 1rem;
    }

    .map-icon {
        width: 80px;
        height: 80px;
    }

    .map-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
} 