/* =====================================================
   Kres - Sevgi Bahçesi Anaokulu — Ana CSS
   ===================================================== */

:root {
    --primary-color: #FF6B9D;
    --secondary-color: #FFA07A;
    --accent-color: #87CEEB;
    --yellow-color: #FFD93D;
    --purple-color: #9B59B6;
    --dark-color: #2C3E50;
    --light-bg: #FFF9F5;
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #FFA07A 100%);
    --gradient-secondary: linear-gradient(135deg, #87CEEB 0%, #9B59B6 100%);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Baloo 2', sans-serif; }

/* ── Top Info Bar ──────────────────────────────────── */
.top-info-bar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 99;
}
.top-info-bar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color .3s;
}
.top-info-bar a:hover { color: var(--primary-color); }

@media (max-width: 768px) {
    .top-info-bar .d-flex { flex-wrap: wrap; gap: 6px 0; justify-content: center !important; }
    .top-info-bar a, .top-info-bar span { font-size: 12px; margin: 0 8px; }
}

/* ── Navbar ────────────────────────────────────────── */
.navbar-custom {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    padding: 10px 0 10px;
    padding-top: 15px;
    transition: all .3s;
    overflow: visible !important;
    position: relative;
    z-index: 100;
}
.navbar-custom.scrolled { padding-top: 10px; padding-bottom: 6px; box-shadow: 0 5px 30px rgba(0,0,0,.12); }
.navbar-custom .container { position: relative; overflow: visible; }

.navbar-brand {
    position: absolute;
    left: 12px; bottom: 0;
    transform: translateY(65%);
    z-index: 200; margin: 0; padding: 0;
    transition: z-index 0s;
}
.navbar-custom:has(.navbar-collapse.show) .navbar-brand { z-index: 50; }
.navbar-brand img { height: 150px; transition: all .3s; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); }
.navbar-custom.scrolled .navbar-brand img { height: 100px; }

.navbar-nav.nav-right { margin-left: auto; }
.nav-link { color: var(--dark-color) !important; font-weight: 600; margin: 0 15px; position: relative; transition: all .3s; font-size: 16px; }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%; height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px; transition: transform .3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: var(--primary-color) !important; }

.btn-nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: .95rem;
    text-decoration: none; margin-left: 20px; display: inline-flex; align-items: center;
    box-shadow: 0 4px 15px rgba(255,107,157,.35); transition: all .3s ease;
    white-space: nowrap; flex-shrink: 0;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,.5); color: white !important; }
.navbar-custom.scrolled .btn-nav-cta { padding: 8px 20px; font-size: .9rem; }

/* ── Video Hero ────────────────────────────────────── */
.video-hero-section { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,107,157,.85) 0%, rgba(255,160,122,.85) 100%);
    z-index: 2;
}
.video-content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }

.hero-title { font-size: 4.5rem; font-weight: 700; color: white; text-shadow: 3px 3px 6px rgba(0,0,0,.3); margin-bottom: 25px; line-height: 1.2; }
.hero-subtitle { font-size: 1.8rem; color: white; margin-bottom: 15px; font-weight: 500; }
.hero-description { font-size: 1.2rem; color: rgba(255,255,255,.95); margin-bottom: 40px; max-width: 700px; }

.btn-hero {
    background: white; color: #c0185a;
    padding: 18px 45px; border-radius: 50px; font-weight: 700; font-size: 1.1rem;
    border: none; box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
    text-decoration: none; display: inline-block; margin: 10px;
}
.btn-hero:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.3); background: var(--dark-color); color: white; }
.btn-hero-outline { background: transparent; color: white; border: 3px solid white; }
.btn-hero-outline:hover { background: white; color: var(--primary-color); }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; animation: bounce 2s infinite; }
.scroll-indicator i { font-size: 2.5rem; color: white; }

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

/* ── Sections ──────────────────────────────────────── */
.section-padding { padding: 100px 0; }
.section-title { font-size: 3rem; font-weight: 700; color: var(--dark-color); margin-bottom: 20px; position: relative; display: inline-block; }
.section-title::before { content: ''; position: absolute; bottom: -15px; left: 0; width: 100px; height: 5px; background: var(--gradient-primary); border-radius: 3px; }
.section-subtitle { color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: .95rem; margin-bottom: 15px; display: inline-block; }

/* ── Feature Cards ─────────────────────────────────── */
.feature-card {
    background: white; border-radius: 30px; padding: 40px 30px; text-align: center;
    transition: all .4s ease; border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0,0,0,.08); height: 100%; position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-primary); opacity: 0; transition: opacity .4s; z-index: 0; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-15px); border-color: var(--primary-color); box-shadow: 0 20px 60px rgba(255,107,157,.3); }
.feature-card:hover * { color: white !important; position: relative; z-index: 1; }
.feature-icon { width: 100px; height: 100px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2.5rem; color: white; transition: all .4s; box-shadow: 0 10px 30px rgba(255,107,157,.3); position: relative; z-index: 1; }
.feature-card:hover .feature-icon { background: white; color: var(--primary-color); }
.feature-card h5 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: var(--dark-color); position: relative; z-index: 1; }
.feature-card p { color: #666; font-size: 1rem; position: relative; z-index: 1; }

/* ── Stats ─────────────────────────────────────────── */
.stats-section { background: var(--gradient-primary); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: rgba(255,255,255,.1); border-radius: 50%; }
.stats-section::after { content: ''; position: absolute; bottom: -40%; left: -5%; width: 500px; height: 500px; background: rgba(255,255,255,.1); border-radius: 50%; }
.stat-item { text-align: center; padding: 30px; position: relative; z-index: 1; }
.stat-number { font-size: 4rem; font-weight: 700; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,.2); }
.stat-label { font-size: 1.3rem; opacity: .95; font-weight: 600; }

/* ── Program Cards ─────────────────────────────────── */
.program-card { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.1); transition: all .4s ease; height: 100%; position: relative; }
.program-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 20px 60px rgba(255,107,157,.25); }
.program-image { position: relative; overflow: hidden; height: 280px; }
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.program-card:hover .program-image img { transform: scale(1.1) rotate(2deg); }
.program-badge { position: absolute; top: 20px; right: 20px; background: var(--gradient-primary); color: white; padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: .85rem; box-shadow: 0 5px 15px rgba(255,107,157,.4); }
.program-content { padding: 35px; }
.program-title { font-size: 1.6rem; font-weight: 700; color: var(--dark-color); margin-bottom: 18px; }
.program-description { color: #666; font-size: 1rem; line-height: 1.7; margin-bottom: 25px; }
.btn-program { background: var(--gradient-primary); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; display: inline-block; font-weight: 600; transition: all .3s; box-shadow: 0 5px 20px rgba(255,107,157,.3); }
.btn-program:hover { transform: translateX(10px); box-shadow: 0 8px 30px rgba(255,107,157,.4); color: white; }

/* ── About ─────────────────────────────────────────── */
.about-section { background: var(--light-bg); }
.about-image { border-radius: 30px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.about-image:hover img { transform: scale(1.05); }
.about-points { list-style: none; padding: 0; margin: 30px 0; }
.about-points li { padding: 15px 0; font-size: 1.1rem; color: var(--dark-color); display: flex; align-items: center; border-bottom: 1px solid rgba(0,0,0,.05); }
.about-points li i { color: var(--primary-color); font-size: 1.8rem; margin-right: 20px; background: rgba(255,107,157,.1); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* ── Age Groups ────────────────────────────────────── */
.age-groups-section { background: linear-gradient(160deg,#FFF8F0 0%,#FFF0E8 50%,#FFF8F0 100%); padding: 100px 0; position: relative; overflow: hidden; }
.age-groups-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle,rgba(255,107,157,.12) 0%,transparent 70%); border-radius: 50%; }
.age-groups-section::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; background: radial-gradient(circle,rgba(135,206,235,.15) 0%,transparent 70%); border-radius: 50%; }
.age-card { background: white; border-radius: 28px; overflow: hidden; box-shadow: 0 8px 0 #FFD0C0, 0 12px 40px rgba(255,107,157,.15); border: 3px solid #FFE8DF; transition: all .3s cubic-bezier(.175,.885,.32,1.275); cursor: pointer; height: 100%; }
.age-card:hover { transform: translateY(-8px); box-shadow: 0 14px 0 #FFD0C0, 0 20px 60px rgba(255,107,157,.25); }
.age-card-image { position: relative; height: 240px; overflow: hidden; }
.age-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.age-card:hover .age-card-image img { transform: scale(1.07); }
.age-badge { position: absolute; top: 18px; left: 18px; background: var(--gradient-primary); color: white; font-family: 'Baloo 2', sans-serif; font-size: 1.4rem; font-weight: 700; padding: 8px 22px; border-radius: 50px; box-shadow: 0 4px 15px rgba(255,107,157,.4); letter-spacing: .5px; }
.age-card-body { padding: 28px 30px 32px; }
.age-card-body h4 { font-family: 'Baloo 2', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--dark-color); margin-bottom: 12px; }
.age-card-body p { color: #666; font-size: .97rem; line-height: 1.75; margin-bottom: 22px; }
.btn-age { display: inline-block; background: var(--gradient-primary); color: white; padding: 12px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 4px 0 #d9477a, 0 6px 20px rgba(255,107,157,.3); transition: all .2s ease-out; font-family: 'Baloo 2', sans-serif; letter-spacing: .3px; }
.btn-age:hover { transform: translateY(-3px); box-shadow: 0 7px 0 #d9477a, 0 10px 30px rgba(255,107,157,.4); color: white; }
.btn-age:active { transform: translateY(2px); box-shadow: 0 2px 0 #d9477a, 0 4px 15px rgba(255,107,157,.3); }

/* ── Nutrition ─────────────────────────────────────── */
.nutrition-section { background: linear-gradient(160deg,#F0FFF8 0%,#E8FFF4 50%,#F5FFF0 100%); padding: 100px 0; position: relative; overflow: hidden; }
.nutrition-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(72,199,142,.1) 0%,transparent 70%); border-radius: 50%; }
.nutrition-title-tag { display: inline-block; font-family: 'Baloo 2', sans-serif; font-size: 2.6rem; font-weight: 700; color: #28a745; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.nutrition-subtitle { font-family: 'Baloo 2', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--dark-color); margin-bottom: 18px; }
.nutrition-text { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }
.nutrition-list { list-style: none; padding: 0; margin: 0; }
.nutrition-list li { padding: 9px 0; font-size: 1.02rem; color: #444; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.nutrition-list li::before { content: ''; display: inline-block; width: 20px; height: 20px; background: #28a745; border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }
.nutrition-image-wrap { position: relative; }
.nutrition-image-blob { width: 100%; border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; overflow: hidden; box-shadow: 0 20px 60px rgba(40,167,69,.2), 0 8px 0 #b8f0cb; border: 4px solid rgba(40,167,69,.15); aspect-ratio: 1; }
.nutrition-image-blob img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nutrition-floating-badge { position: absolute; top: 10px; left: -10px; background: white; border-radius: 20px; padding: 12px 20px; box-shadow: 0 8px 30px rgba(40,167,69,.2), 0 3px 0 #b8f0cb; border: 2px solid #d4edda; display: flex; align-items: center; gap: 10px; animation: float 3s ease-in-out infinite; }
.nutrition-floating-badge span { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: .95rem; color: #28a745; }

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

/* ── App Section ───────────────────────────────────── */
.app-section { background: #fff; padding: 80px 0; }
.app-card { background: linear-gradient(135deg,#FFF8F0 0%,#FFF0FA 100%); border-radius: 30px; padding: 50px 60px; display: flex; align-items: center; gap: 50px; box-shadow: 0 10px 50px rgba(255,107,157,.1); border: 2px solid #FFE8DF; }
.app-icon-wrap { flex-shrink: 0; }
.app-icon-wrap img { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(0 10px 25px rgba(255,107,157,.25)); animation: float 3s ease-in-out infinite; }
.app-content h3 { font-family: 'Baloo 2', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 6px; }
.app-content h4 { font-family: 'Baloo 2', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--dark-color); margin-bottom: 16px; }
.app-content p { color: #555; font-size: 1rem; line-height: 1.8; }

@media (max-width: 768px) { .app-card { flex-direction: column; padding: 35px 25px; text-align: center; } }

/* ── Register / CF7 Form ───────────────────────────── */
.register-section { background: linear-gradient(160deg,#fff5f8 0%,#fff 100%); padding: 100px 0; }
.register-eyebrow { font-size: .95rem; color: var(--primary-color); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.register-title { font-family: 'Baloo 2', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--dark-color); margin-bottom: 50px; line-height: 1.3; }
.register-form-wrap { background: linear-gradient(135deg,#FF6B9D 0%,#FFA07A 100%); border-radius: 30px; padding: 50px; box-shadow: 0 20px 60px rgba(255,107,157,.3); }

/* CF7 override — görünümü bozmamak için */
.register-form-wrap .wpcf7-form { width: 100%; }
.register-form-wrap .wpcf7-form p { margin-bottom: 0; }
.register-form-wrap .kres-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.register-form-wrap .kres-col { flex: 1 1 calc(50% - 8px); min-width: 0; }
.register-form-wrap .kres-col-full { flex: 1 1 100%; }
.register-form-wrap input[type="text"],
.register-form-wrap input[type="email"],
.register-form-wrap input[type="tel"],
.register-form-wrap textarea,
.register-form-wrap select {
    background: white; border: none; border-radius: 14px; padding: 16px 22px;
    font-size: 1rem; font-family: 'Quicksand', sans-serif; font-weight: 500;
    color: var(--dark-color); box-shadow: none; transition: all .3s;
    width: 100%; display: block;
}
.register-form-wrap input[type="text"]:focus,
.register-form-wrap input[type="email"]:focus,
.register-form-wrap input[type="tel"]:focus,
.register-form-wrap textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.5); outline: none; }
.register-form-wrap input::placeholder,
.register-form-wrap textarea::placeholder { color: #aaa; }
.register-form-wrap textarea { min-height: 100px; resize: vertical; }
.register-form-wrap .wpcf7-submit,
.btn-register {
    background: var(--dark-color); color: white; border: none; padding: 16px 45px;
    border-radius: 50px; font-family: 'Baloo 2', sans-serif; font-size: 1.15rem;
    font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all .3s;
    box-shadow: 0 6px 20px rgba(0,0,0,.25); display: inline-flex; align-items: center; gap: 10px;
}
.register-form-wrap .wpcf7-submit:hover,
.btn-register:hover { background: #1a2531; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.wpcf7-spinner { display: none !important; }
.register-form-wrap .wpcf7-response-output {
    border-radius: 12px !important; color: white !important;
    border-color: rgba(255,255,255,.3) !important; background: rgba(255,255,255,.15) !important;
    margin-top: 16px;
}
.register-form-wrap .wpcf7-not-valid-tip { color: #FFD93D; font-size: .85rem; }
.kvkk-check { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; }
.kvkk-check input[type="checkbox"] { width: 20px; height: 20px; min-width: 20px; cursor: pointer; margin-top: 2px; accent-color: white; }
.kvkk-check label { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.5; cursor: pointer; }
.kvkk-check label a { color: white; font-weight: 700; text-decoration: underline; }
/* CF7 acceptance */
.register-form-wrap .wpcf7-acceptance label { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.5; }
.register-form-wrap .wpcf7-acceptance label a { color: white; font-weight: 700; text-decoration: underline; }

/* ── Testimonials ──────────────────────────────────── */
.testimonial-card { background: white; border-radius: 25px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,.08); margin: 20px 0; transition: all .3s; border-left: 5px solid var(--primary-color); }
.testimonial-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(255,107,157,.2); }
.testimonial-header { display: flex; align-items: center; margin-bottom: 25px; }
.testimonial-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: 700; margin-right: 20px; }
.testimonial-info h5 { margin: 0; color: var(--dark-color); font-weight: 700; }
.testimonial-info p { margin: 5px 0 0; color: #666; font-size: .9rem; }
.testimonial-text { color: #555; font-size: 1.05rem; line-height: 1.8; font-style: italic; }
.testimonial-rating { color: #FFD700; font-size: 1.2rem; margin-top: 15px; }

/* ── Gallery ───────────────────────────────────────── */
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); margin-bottom: 30px; position: relative; cursor: pointer; transition: all .3s; }
.gallery-item:hover { transform: scale(1.05); box-shadow: 0 15px 50px rgba(255,107,157,.3); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform .5s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* ── Contact Cards ─────────────────────────────────── */
.contact-card { background: white; border-radius: 25px; padding: 50px; box-shadow: 0 10px 40px rgba(0,0,0,.08); text-align: center; transition: all .3s; height: 100%; }
.contact-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(255,107,157,.2); }
.contact-icon { width: 90px; height: 90px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2.5rem; color: white; box-shadow: 0 10px 30px rgba(255,107,157,.3); }
.contact-card h4 { font-weight: 700; margin-bottom: 20px; color: var(--dark-color); }
.contact-card p, .contact-card a { color: #666; text-decoration: none; font-size: 1.1rem; }
.contact-card a:hover { color: var(--primary-color); }

/* ── Footer ────────────────────────────────────────── */
.footer { background: var(--dark-color); color: white; padding: 80px 0 30px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-primary); }
.footer-logo { max-width: 200px; margin-bottom: 25px; }
.footer h5 { color: var(--primary-color); margin-bottom: 25px; font-weight: 700; font-size: 1.3rem; }
.footer p { color: rgba(255,255,255,.8); line-height: 1.8; }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; display: block; padding: 8px 0; transition: all .3s; }
.footer a:hover { color: var(--primary-color); padding-left: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 30px; margin-top: 50px; text-align: center; }
.social-links { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(255,255,255,.12); border-radius: 50%; font-size: 1.15rem; border: 1.5px solid rgba(255,255,255,.15); transition: all .3s ease; color: white; padding: 0; }
.social-links a.fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-4px); }
.social-links a.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #E1306C; transform: translateY(-4px); }
.social-links a.tw:hover { background: #000; border-color: #000; transform: translateY(-4px); }
.social-links a.yt:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-4px); }

/* ── Loading ────────────────────────────────────────── */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: white; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .5s, visibility .5s; }
.loading-overlay.hidden { opacity: 0; visibility: hidden; }
.loader { width: 100px; height: 100px; border: 5px solid #f3f3f3; border-top: 5px solid var(--primary-color); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.4rem; }
    .section-title { font-size: 2.2rem; }
    .video-hero-section { height: 80vh; min-height: 600px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-description { font-size: 1rem; }
    .btn-hero { padding: 14px 30px; font-size: 1rem; }
    .section-padding { padding: 60px 0; }
    .stat-number { font-size: 3rem; }
    .register-form-wrap .kres-col { flex: 1 1 100%; }
}
