/*
=======================================================================
Neşeli Kaşifler Anaokulu - WordPress Tema CSS
Tüm sayfalar için birleştirilmiş stil dosyası
Version: 1.0.0
=======================================================================
*/

/* =======================================================================
   1. BASE STYLES - Reset & Variables
   ======================================================================= */

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

:root {
    --primary-yellow: #FFD700;
    --secondary-red: #FF6B35;
    --blue-accent: #4ECDC4;
    --green-accent: #45B7D1;
    --purple-accent: #9B59B6;
    --orange-accent: #FFA726;
    --white: #FFFEF7;
    --dark-text: #333333;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #FFE066 0%, #FF6B35 50%, #4ECDC4 100%);
    min-height: 100vh;
    color: var(--dark-text);
}

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

/* =======================================================================
   2. HEADER & NAVIGATION
   ======================================================================= */

.header {
    background: rgba(255, 254, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.logo-text {
    margin-left: 10px;
}

.logo-main {
    font-size: 1.4rem;
    color: var(--secondary-red);
    line-height: 1.1;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    transition: all 0.3s ease;
}

.logo-sub {
    font-size: 1.1rem;
    color: #663399;
    line-height: 1.1;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    transition: all 0.3s ease;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: contain;
    animation: logoWiggle 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-right: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: sunRotate 8s linear infinite;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 8px 15px !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%,#cc2366 25%,#dc2743 50%,#e6683c 75%,#f09433 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4) !important;
}

.register-btn {
    background: var(--secondary-red);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-contact {
    display: none;
    gap: 1rem;
}

.mobile-contact a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-yellow);
    color: var(--dark-text);
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-contact a:hover {
    transform: translateY(-2px);
    background: var(--secondary-red);
    color: white;
}

.mobile-contact .phone-icon {
    background: #25D366;
    color: white;
}

.mobile-contact .instagram-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

/* =======================================================================
   3. FLOATING SHAPES (WordPress)
   ======================================================================= */

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite linear;
}

.floating-shape.shape1 {
    width: 100px;
    height: 100px;
    background: var(--primary-yellow);
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.floating-shape.shape2 {
    width: 60px;
    height: 60px;
    background: var(--secondary-red);
    top: 60%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.floating-shape.shape3 {
    width: 80px;
    height: 80px;
    background: var(--blue-accent);
    bottom: 20%;
    left: 50%;
    animation-duration: 35s;
}

/* =======================================================================
   4. HERO SECTION (Home Page)
   ======================================================================= */

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), 
                url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
}

.welcome-overlay {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-welcome {
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 2rem 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 784px;
    z-index: 3;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.4rem;
    color: #663399;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-red);
    margin-top: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
    animation: pulse 2s ease-in-out infinite alternate;
}

/* =======================================================================
   5. ACTION BUTTONS (Home Page)
   ======================================================================= */

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

.action-btn {
    background: var(--white);
    border: none;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
}

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

.action-btn:hover:before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.action-btn.programs {
    background: var(--secondary-red);
    color: white;
}

.action-btn.gallery {
    background: #663399;
    color: white;
}

.action-btn.contact {
    background: var(--primary-yellow);
    color: var(--dark-text);
}

.btn-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.btn-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.btn-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* =======================================================================
   6. FEATURES SECTION (Home Page)
   ======================================================================= */

.features {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 30px;
}

.features h2 {
    font-family: 'Nunito', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--light-gray);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card:nth-child(1) {
    border-color: var(--secondary-red);
}
.feature-card:nth-child(2) {
    border-color: var(--green-accent);
}
.feature-card:nth-child(3) {
    border-color: var(--purple-accent);
}
.feature-card:nth-child(4) {
    border-color: var(--orange-accent);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card:nth-child(1) i { color: var(--secondary-red); }
.feature-card:nth-child(2) i { color: var(--green-accent); }
.feature-card:nth-child(3) i { color: var(--purple-accent); }
.feature-card:nth-child(4) i { color: var(--orange-accent); }

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =======================================================================
   7. FOOTER
   ======================================================================= */

.footer {
    background: linear-gradient(45deg, var(--purple-accent), #2C3E50);
    color: white;
    text-align: center;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-links a {
    display: block;
    margin: 0.5rem 0;
}

.social-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-header h3 {
    margin: 0 !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--dark-text);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: var(--secondary-red);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* =======================================================================
   8. BADGES (Home Page)
   ======================================================================= */

.weekend-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--secondary-red), var(--orange-accent));
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: badgePulse 3s ease-in-out infinite;
}

.weekend-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.enrollment-badge {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(45deg, var(--green-accent), #2ECC71);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: enrollmentBounce 4s ease-in-out infinite;
}

.enrollment-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.6);
}

/* =======================================================================
   9. MODAL (Global)
   ======================================================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: var(--secondary-red);
}

.modal h2 {
    color: var(--secondary-red);
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.image-modal .modal-content {
    max-width: 600px;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.image-modal .modal-content img {
    max-height: 40vh;
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    margin: 15px 0;
}

.modal-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-red);
}

/* =======================================================================
   10. PAGE HEADER (Common for all pages)
   ======================================================================= */

.page-header {
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 250%;
    height: 250%;
    opacity: 0.12;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 120px 120px;
    transform: rotate(-15deg);
}

/* Hakkimizda pattern */
.page-template-page-hakkimizda .page-header::before,
body.page-template-page-hakkimizda .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%E2%9D%A4%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%F0%9F%8E%93%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%E2%AD%90%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%91%A8%E2%80%8D%F0%9F%8F%AB%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%8C%9F%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%91%A9%E2%80%8D%F0%9F%8F%AB%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%F0%9F%93%9A%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%E2%9D%A4%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%91%AB%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%E2%9C%A8%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%8F%AB%3C/text%3E%3C/svg%3E");
}

/* Programlar pattern */
.page-template-page-programlar .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%8E%A8%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%F0%9F%94%AC%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%8E%B5%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%93%90%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%8C%8D%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%8F%83%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%F0%9F%92%BB%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%A7%A9%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%8C%BF%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%E2%9C%8F%EF%B8%8F%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%93%96%3C/text%3E%3C/svg%3E");
}

/* Galeri pattern */
.page-template-page-galeri .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%93%B7%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%F0%9F%96%BC%EF%B8%8F%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%8E%AC%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%E2%9C%A8%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%8C%88%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%8E%9E%EF%B8%8F%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%F0%9F%93%B8%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%8C%9F%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%93%B7%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%F0%9F%8E%A8%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%96%BC%EF%B8%8F%3C/text%3E%3C/svg%3E");
}

/* Iletisim pattern */
.page-template-page-iletisim .page-header::before,
body.page-template-page-iletisim .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%93%9E%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%E2%9C%89%EF%B8%8F%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%93%8D%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%92%AC%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%E2%8F%B0%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%93%B1%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%E2%9D%93%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%97%BA%EF%B8%8F%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%93%A7%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%F0%9F%A4%9D%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%93%9E%3C/text%3E%3C/svg%3E");
}

/* Kayit pattern */
.page-template-page-kayit .page-header::before,
body.page-template-page-kayit .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%93%9D%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%E2%9C%85%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%93%8B%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%8E%92%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%91%B6%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%93%85%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%E2%9C%8D%EF%B8%8F%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%8E%93%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%93%9D%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%E2%9C%85%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%8E%92%3C/text%3E%3C/svg%3E");
}

/* Is Basvurusu pattern */
.page-template-page-is-basvurusu .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%92%BC%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%F0%9F%91%94%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%93%84%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%A4%9D%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%92%AA%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%F0%9F%8E%AF%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%F0%9F%93%8A%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%92%BC%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%E2%9C%A8%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%F0%9F%91%94%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%F0%9F%93%84%3C/text%3E%3C/svg%3E");
}

/* Ev Okulu Ankara pattern */
.page-template-page-ev-okulu-ankara .page-header::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='10' y='25' font-size='20' fill='white'%3E%F0%9F%8F%A0%3C/text%3E%3Ctext x='50' y='25' font-size='20' fill='white'%3E%F0%9F%93%96%3C/text%3E%3Ctext x='85' y='25' font-size='20' fill='white'%3E%F0%9F%8C%B1%3C/text%3E%3Ctext x='10' y='55' font-size='20' fill='white'%3E%F0%9F%91%A8%E2%80%8D%F0%9F%91%A9%E2%80%8D%F0%9F%91%A7%3C/text%3E%3Ctext x='55' y='55' font-size='20' fill='white'%3E%F0%9F%8E%93%3C/text%3E%3Ctext x='90' y='55' font-size='20' fill='white'%3E%E2%9C%8F%EF%B8%8F%3C/text%3E%3Ctext x='10' y='85' font-size='20' fill='white'%3E%F0%9F%8C%BF%3C/text%3E%3Ctext x='50' y='85' font-size='20' fill='white'%3E%F0%9F%8F%A0%3C/text%3E%3Ctext x='85' y='85' font-size='20' fill='white'%3E%F0%9F%93%96%3C/text%3E%3Ctext x='30' y='110' font-size='20' fill='white'%3E%F0%9F%8C%B1%3C/text%3E%3Ctext x='65' y='110' font-size='20' fill='white'%3E%E2%9D%A4%3C/text%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Page Header Backgrounds - Specific Colors */
.page-template-page-hakkimizda .page-header,
.page-id-hakkimizda .page-header,
body.page-template-page-hakkimizda .page-header {
    background: linear-gradient(45deg, var(--purple-accent), var(--blue-accent));
}

.page-template-page-programlar .page-header,
.page-id-programlar .page-header {
    background: linear-gradient(45deg, var(--secondary-red), var(--orange-accent));
}

.page-template-page-galeri .page-header,
.page-id-galeri .page-header {
    background: linear-gradient(45deg, var(--blue-accent), var(--green-accent));
}

.page-template-page-iletisim .page-header,
.page-id-iletisim .page-header,
body.page-template-page-iletisim .page-header {
    background: linear-gradient(45deg, var(--orange-accent), var(--secondary-red));
}

.page-template-page-kayit .page-header,
.page-id-kayit .page-header,
body.page-template-page-kayit .page-header,
.registration-header {
    background: linear-gradient(45deg, var(--primary-yellow), var(--orange-accent));
    color: white;
}

.page-template-page-is-basvurusu .page-header,
.page-id-is-basvurusu .page-header {
    background: linear-gradient(45deg, var(--purple-accent), var(--blue-accent));
}

.page-template-page-ev-okulu-ankara .page-header,
.page-id-ev-okulu-ankara .page-header {
    background: linear-gradient(45deg, var(--green-accent), var(--blue-accent));
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =======================================================================
   11. CONTENT SECTIONS (Common)
   ======================================================================= */

.content-section {
    background: var(--white);
    margin: 2rem 0;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--purple-accent);
    margin-bottom: 2rem;
    text-align: center;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    text-align: justify;
}

/* =======================================================================
   12. HAKKIMIZDA PAGE - Mission & Vision
   ======================================================================= */

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.mv-card {
    background: linear-gradient(45deg, var(--primary-yellow), var(--orange-accent));
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mv-card:nth-child(2) {
    background: linear-gradient(45deg, var(--blue-accent), var(--green-accent));
}

/* =======================================================================
   13. HAKKIMIZDA PAGE - Team
   ======================================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-member:nth-child(5n+1) {
    background: linear-gradient(135deg, #FFE5E5, #FFF);
    border-color: var(--secondary-red);
}
.team-member:nth-child(5n+1):hover {
    background: linear-gradient(135deg, #FFD0D0, #FFF);
}

.team-member:nth-child(5n+2) {
    background: linear-gradient(135deg, #E5F3FF, #FFF);
    border-color: var(--blue-accent);
}
.team-member:nth-child(5n+2):hover {
    background: linear-gradient(135deg, #CCE7FF, #FFF);
}

.team-member:nth-child(5n+3) {
    background: linear-gradient(135deg, #F0E5FF, #FFF);
    border-color: var(--purple-accent);
}
.team-member:nth-child(5n+3):hover {
    background: linear-gradient(135deg, #E6CCFF, #FFF);
}

.team-member:nth-child(5n+4) {
    background: linear-gradient(135deg, #E5FFEB, #FFF);
    border-color: var(--green-accent);
}
.team-member:nth-child(5n+4):hover {
    background: linear-gradient(135deg, #CCFFD6, #FFF);
}

.team-member:nth-child(5n+5) {
    background: linear-gradient(135deg, #FFF5E5, #FFF);
    border-color: var(--orange-accent);
}
.team-member:nth-child(5n+5):hover {
    background: linear-gradient(135deg, #FFE8CC, #FFF);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.team-member:nth-child(5n+1) .team-avatar {
    background: linear-gradient(45deg, var(--secondary-red), #E74C3C);
}

.team-member:nth-child(5n+2) .team-avatar {
    background: linear-gradient(45deg, var(--blue-accent), #3498DB);
}

.team-member:nth-child(5n+3) .team-avatar {
    background: linear-gradient(45deg, var(--purple-accent), #8E44AD);
}

.team-member:nth-child(5n+4) .team-avatar {
    background: linear-gradient(45deg, var(--green-accent), #27AE60);
}

.team-member:nth-child(5n+5) .team-avatar {
    background: linear-gradient(45deg, var(--orange-accent), #F39C12);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--purple-accent);
}

.team-role {
    color: var(--secondary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* =======================================================================
   14. PROGRAMLAR PAGE - Age Groups
   ======================================================================= */

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

.age-group-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.age-group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-red));
}

.age-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.age-group-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--blue-accent);
}

.age-group-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--purple-accent);
}

.age-range {
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* =======================================================================
   15. PROGRAMLAR PAGE - Multibem Section
   ======================================================================= */

.multibem-content {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.multibem-content p {
    margin-bottom: 1.5rem;
}

.multibem-highlights {
    background: linear-gradient(135deg, var(--primary-yellow), #fff5b3);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.multibem-highlights h3 {
    color: var(--secondary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.multibem-highlights ul {
    list-style: none;
    padding: 0;
}

.multibem-highlights li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.multibem-highlights li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* =======================================================================
   16. PROGRAMLAR PAGE - Activities
   ======================================================================= */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.activity-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.activity-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-card .activity-title,
.activity-card p {
    padding: 0 1.5rem;
}

.activity-card .activity-title {
    padding-top: 1.5rem;
}

.activity-card p {
    padding-bottom: 1.5rem;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =======================================================================
   17. PROGRAMLAR PAGE - Schedule
   ======================================================================= */

.schedule-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.schedule-tab {
    background: var(--white);
    border: 3px solid var(--primary-yellow);
    color: var(--dark-text);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tab:hover,
.schedule-tab.active {
    background: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.schedule-content {
    display: none;
}

.schedule-content.active {
    display: block;
}

.schedule-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray), #fff);
    border-radius: 20px;
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item:hover {
    background: linear-gradient(135deg, var(--primary-yellow), #fff5b3);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.schedule-time {
    font-weight: 800;
    color: var(--secondary-red);
    font-size: 1.2rem;
    text-align: center;
}

.schedule-activity {
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.schedule-activity ul {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.schedule-activity li {
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 1rem;
}

.schedule-activity strong {
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.8rem;
}

/* =======================================================================
   18. GALERI PAGE - Filters
   ======================================================================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--dark-text);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* =======================================================================
   19. GALERI PAGE - Gallery Grid
   ======================================================================= */

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

.gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-red), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-placeholder {
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image::before {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: var(--dark-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* =======================================================================
   20. GALERI PAGE - Lightbox
   ======================================================================= */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 900px;
    width: auto;
    max-height: 90vh;
    background: var(--white);
    border-radius: 20px;
    padding: 0.8rem;
    text-align: center;
    position: relative;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: rgba(255,255,255,0.85);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-red);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    background: #f0f0f0;
    min-height: 60px;
}

.lightbox-media.has-image {
    background: transparent;
}

.lightbox-media.has-image.is-portrait {
    max-width: 100%;
}

.lightbox-media.has-image.is-portrait .lightbox-img {
    max-height: 82vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lightbox-media.has-image.is-portrait .lightbox-img {
        max-height: 78vh;
    }
}

.lightbox-media .lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.lightbox-media.has-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.lightbox-media.has-video iframe.lightbox-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.lightbox-video-link {
    padding: 3rem 2rem;
    text-align: center;
}

.lightbox-video-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-red, #FF6B35);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.lightbox-video-link a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.lightbox-placeholder {
    padding: 3rem;
    text-align: center;
    font-size: 3rem;
    color: #ccc;
}

/* Dikey video (Shorts/Reels) lightbox */
.lightbox-media.has-video-vertical {
    position: relative;
    width: 320px;
    max-width: 90%;
    height: 0;
    padding-bottom: min(568px, 80vh);
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.lightbox-media.has-video-vertical iframe.lightbox-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

#lightbox-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin: 0.5rem 0 0;
    padding: 0 0.5rem;
}

#lightbox-description {
    font-size: 0.85rem;
    color: var(--dark-text);
    opacity: 0.7;
    margin: 0.2rem 0 0.3rem;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .lightbox-media.has-video-vertical {
        width: 100%;
        max-width: 300px;
        padding-bottom: min(533px, 75vh);
    }
    .lightbox-content {
        padding: 0.5rem;
        margin: 0 5px;
    }
}

/* =======================================================================
   21. GALERI PAGE - Stats
   ======================================================================= */

.stats-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.stat-item {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--orange-accent));
    color: white;
    transition: all 0.3s ease;
}

.stat-item:nth-child(2n) {
    background: linear-gradient(45deg, var(--blue-accent), var(--green-accent));
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* =======================================================================
   22. İLETİŞİM PAGE - Contact Grid
   ======================================================================= */

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Form 7 Styling */
.contact-form .wpcf7 {
    margin: 0;
}

.contact-form .wpcf7-form p {
    margin-bottom: 2rem;
}

.contact-form .wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--purple-accent);
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea,
.contact-form .wpcf7-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .wpcf7-form input[type="text"]:focus,
.contact-form .wpcf7-form input[type="email"]:focus,
.contact-form .wpcf7-form input[type="tel"]:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form .wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.contact-form .wpcf7-form input[type="submit"] {
    background: linear-gradient(45deg, var(--secondary-red), var(--orange-accent));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.contact-form .wpcf7-response-output {
    margin: 2rem 0 0;
    padding: 1rem;
    border-radius: 10px;
}

.contact-form .wpcf7-validation-errors {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

.contact-form .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.contact-form .wpcf7-not-valid-tip {
    color: var(--secondary-red);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--primary-yellow);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
    color: var(--secondary-red);
    margin-right: 1.5rem;
    min-width: 50px;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--purple-accent);
}

/* =======================================================================
   23. İLETİŞİM PAGE - FAQ
   ======================================================================= */

.faq-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-accent);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-red);
}

.faq-answer {
    margin-top: 1rem;
    padding-left: 1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =======================================================================
   24. İLETİŞİM PAGE - Map
   ======================================================================= */

.map-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 1rem;
}

.map-section p {
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--blue-accent), var(--green-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-top: 2rem;
}

/* =======================================================================
   25. KAYIT PAGE - Steps
   ======================================================================= */

.steps-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
}

/* =======================================================================
   26. KAYIT PAGE - Registration Form
   ======================================================================= */

.registration-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--purple-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(45deg, var(--secondary-red), var(--orange-accent));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* =======================================================================
   27. KAYIT PAGE - Age Groups Selection
   ======================================================================= */

.age-groups,
.age-groups-selection {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.age-group-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin: 1rem 0;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.age-group-item:hover {
    background: var(--primary-yellow);
    transform: translateX(10px);
}

.age-group-item.selected {
    background: var(--primary-yellow);
    border: 2px solid var(--secondary-red);
}

.age-group-item input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.age-icon {
    font-size: 2rem;
    margin-right: 1rem;
    width: 60px;
    text-align: center;
}

.age-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
}

.age-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =======================================================================
   28. KAYIT PAGE - Info Cards
   ======================================================================= */

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card:nth-child(1) i { color: var(--blue-accent); }
.info-card:nth-child(2) i { color: var(--green-accent); }
.info-card:nth-child(3) i { color: var(--purple-accent); }

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 1rem;
}

/* =======================================================================
   29. İŞ BAŞVURUSU PAGE - Job Positions
   ======================================================================= */

.positions-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.job-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.job-card.selected {
    background: var(--primary-yellow);
    border: 2px solid var(--secondary-red);
}

.job-icon {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
}

.job-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* =======================================================================
   30. İŞ BAŞVURUSU PAGE - Application & Requirements
   ======================================================================= */

.application-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    background: var(--light-gray);
    border: 2px dashed var(--purple-accent);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    background: var(--primary-yellow);
    border-color: var(--secondary-red);
}

.requirements-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.requirement-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 1rem 0;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: var(--primary-yellow);
    transform: translateX(10px);
}

.requirement-icon {
    font-size: 1.5rem;
    color: var(--secondary-red);
    margin-right: 1rem;
    min-width: 40px;
}

/* =======================================================================
   31. İŞ BAŞVURUSU PAGE - Benefits
   ======================================================================= */

.benefits-section {
    background: var(--white);
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card:nth-child(1) i { color: var(--blue-accent); }
.benefit-card:nth-child(2) i { color: var(--green-accent); }
.benefit-card:nth-child(3) i { color: var(--purple-accent); }
.benefit-card:nth-child(4) i { color: var(--orange-accent); }

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
}

/* =======================================================================
   32. EV OKULU ANKARA PAGE - About & Features
   ======================================================================= */

.about-content {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--blue-accent), #E3F2FD);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border-left: 5px solid var(--secondary-red);
}

.highlight-box h3 {
    color: var(--secondary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-red);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

/* =======================================================================
   33. EV OKULU ANKARA PAGE - Workshops
   ======================================================================= */

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.workshop-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
}

.workshop-card:nth-child(1) { border-left-color: var(--blue-accent); }
.workshop-card:nth-child(2) { border-left-color: var(--green-accent); }
.workshop-card:nth-child(3) { border-left-color: var(--purple-accent); }
.workshop-card:nth-child(4) { border-left-color: var(--orange-accent); }

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.workshop-header {
    padding: 2rem;
    text-align: center;
}

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

.workshop-card:nth-child(1) .workshop-icon { color: var(--blue-accent); }
.workshop-card:nth-child(2) .workshop-icon { color: var(--green-accent); }
.workshop-card:nth-child(3) .workshop-icon { color: var(--purple-accent); }
.workshop-card:nth-child(4) .workshop-icon { color: var(--orange-accent); }

.workshop-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.workshop-age {
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.workshop-description {
    padding: 0 2rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.workshop-details {
    padding: 0 2rem 2rem;
}

.workshop-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.workshop-details li {
    padding: 0.3rem 0;
    color: #666;
}

.workshop-details li i {
    width: 20px;
    color: var(--secondary-red);
    margin-right: 0.5rem;
}

.register-workshop-btn {
    background: var(--secondary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.register-workshop-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* =======================================================================
   34. ANIMATIONS
   ======================================================================= */

@keyframes logoWiggle {
    0%, 70% { transform: rotate(0deg); }
    75% { transform: rotate(30deg); }
    85% { transform: rotate(-30deg); }
    90%, 100% { transform: rotate(0deg); }
}

@keyframes sunRotate {
    0% { transform: rotate(0deg); }
    8% { transform: rotate(360deg); }
    92% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes enrollmentBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
}

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

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-100px) rotate(90deg); }
    50% { transform: translateY(-200px) rotate(180deg); }
    75% { transform: translateY(-100px) rotate(270deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* =======================================================================
   35. RESPONSIVE - MOBILE
   ======================================================================= */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: rgba(255, 254, 247, 0.98);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        z-index: 1001;
    }
    
    .nav-menu li a {
        padding: 0.6rem 1rem;
        text-align: left;
        border-radius: 8px;
        margin: 0.25rem 0;
        display: block;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: var(--primary-yellow);
        transform: none;
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .register-btn {
        display: none;
    }

    .mobile-contact {
        display: flex;
        margin-left: auto;
        margin-right: 1rem;
    }

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

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

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .action-btn {
        padding: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .page-title { 
        font-size: 2.5rem; 
    }

    .mission-vision,
    .contact-grid,
    .registration-section,
    .application-section { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }

    .age-groups,
    .gallery-grid,
    .steps-grid,
    .job-positions,
    .benefits-grid,
    .workshops-grid { 
        grid-template-columns: 1fr; 
    }

    .content-section, 
    .form-section, 
    .positions-section, 
    .requirements-section, 
    .benefits-section,
    .steps-section,
    .faq-section,
    .map-section { 
        padding: 2rem; 
        margin: 1.5rem 0; 
    }

    .form-row { 
        grid-template-columns: 1fr; 
    }

    .schedule-item { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 1rem; 
    }

    .schedule-tabs {
        flex-direction: column;
        align-items: center;
    }

    .schedule-tab {
        width: 100%;
        max-width: 300px;
    }

    .gallery-filters { 
        gap: 0.5rem; 
    }

    .filter-btn { 
        padding: 0.6rem 1rem; 
        font-size: 0.9rem; 
    }
}

/* ========================================
   STICKY ACTION BAR
   ======================================== */

.sticky-action-bar {
    position: sticky;
    bottom: 0;
    z-index: 999;
    padding: 0 1rem;
    margin-top: 2rem;
}

.sticky-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFDE7 50%, #FFF8E1 100%);
    border: 3px solid #FFD700;
    border-radius: 20px 20px 0 0;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.25);
}

.sticky-bar-illustration {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.sticky-bar-child {
    margin-bottom: -12px;
}

.sticky-bar-plane {
    margin-bottom: -5px;
}

.sticky-bar-plane svg {
    animation: planeFloat 3s ease-in-out infinite;
}

@keyframes planeFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.sticky-bar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.sticky-bar-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #8D6E63;
    font-weight: 600;
}

.sticky-bar-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.sticky-btn-kayit { background: #FF6B35; }
.sticky-btn-atolye { background: #4ECDC4; }
.sticky-btn-yaz { background: #9B59B6; }
.sticky-btn-wa { background: #25D366; }

.sticky-bar-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #5D4037;
    letter-spacing: 1px;
}

/* Eski floating badge'leri gizle */
.weekend-badge,
.enrollment-badge {
    display: none !important;
}

/* Tablet */
@media (max-width: 992px) {
    .sticky-bar-illustration svg {
        width: 70px;
        height: auto;
    }
    .sticky-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .sticky-bar-illustration {
        display: none;
    }
    .sticky-action-bar {
        padding: 0;
    }
    .sticky-bar-inner {
        border-radius: 16px 16px 0 0;
        padding: 10px 12px;
        gap: 6px;
    }
    .sticky-bar-text {
        font-size: 0.75rem;
    }
    .sticky-bar-buttons {
        gap: 6px;
    }
    .sticky-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
    .sticky-btn span {
        display: inline;
    }
    .sticky-bar-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn span {
        display: none;
    }
    .sticky-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
    .sticky-bar-title {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

/* Footer QR Code */
.footer-qr-code {
    margin-top: 20px;
    text-align: center;
}

.footer-qr-code h4 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-qr-code a {
    display: inline-block;
    padding: 8px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-qr-code a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-qr-code img {
    display: block;
    border-radius: 8px;
}

.footer-qr-code .qr-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .footer-qr-code img {
        width: 100px;
        height: 100px;
    }
}

/* =======================================================================
   BREADCRUMB (SEO) - page-header içinde, title + subtitle altında
   ======================================================================= */

.breadcrumb {
    margin-top: 15px;
    padding: 0;
    font-size: 0.85rem;
    background: none;
}

.breadcrumb .container {
    padding: 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: '\203A';
    margin-left: 6px;
    opacity: 0.6;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb li:last-child span {
    color: #fff;
    font-weight: 700;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
}

/* END OF CSS */