/**
 * Homepage Styles - Modern Eğitim Merkezi
 * Ana sayfa için özel stil dosyası
 */

/* ======================================================= 
   HEADER STYLES OVERRIDE
======================================================= */
/* Logo Alignment */
.main-header .main-header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px 0;
}

.main-header .main-header-info .logo {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.main-header .main-header-info .logo img {
    height: auto;
    transition: all 0.3s ease;
}

.main-header .main-header-info .humburger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

/* Logo styles */
header .main-header .main-header-info .logo img {
    max-width: 200px;
    height: auto;
}

header .main-header .main-header-info .logo:hover {
    filter: none;
}

header .main-header .main-header-info .logo img {
    animation: none;
}

header .main-header .main-header-info .logo::before,
header .main-header .main-header-info .logo::after {
    display: none;
}

/* Navigation styles */
header .main-header .main-header-info .main-menu > ul > li > a {
    font-size: 14px;
    padding: 8px 12px;
}

header .main-header .main-header-info .main-menu ul li ul li a {
    font-size: 13px;
    padding: 6px 10px;
}

.mobile-menu-btn {
    transform: scale(0.8);
}

/* ======================================================= 
   MOBILE HEADER RESPONSIVE
======================================================= */
@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .main-header .main-header-info {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 10px 0 0 0;
        position: relative;
    }
    .main-header .main-header-info img[src*="IMG_2070.png"],
    .main-header .main-header-info img[src*="IMG_0209.png"] {
        display: block !important;
        height: 65px !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0;
    }
    .main-header .main-header-info .logo img {
        max-width: 80px;
        height: auto;
    }
    .main-header .main-header-info .humburger {
        position: absolute;
        right: 0px;
        top: 25%;
        transform: translateY(-50%);
        z-index: 1000;
        padding: 2px;
        background: transparent;
        border-radius: 0;
        cursor: pointer;
    }
    
    /* Mobil Navigasyon - Yeni Tasarım */
    .header-nav {
        position: fixed;
        top: 60px;
        right: 0;
        width: 300px;
        height: calc(100vh - 60px);
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 9999;
        padding: 20px 0;
        border-radius: 0;
    }
    
    .header-nav .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .header-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .header-nav-list > li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .header-nav-list > li > a,
    .header-nav-list > li .wrap-to-show > p {
        display: block;
        padding: 15px 20px;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }
    
    .header-nav-list .hide-lvl {
        background: #f8f9fa;
        border-left: 3px solid #ff69b4;
    }
    
    .header-nav-list .hide-lvl li a {
        padding: 12px 20px 12px 40px;
        color: #666;
        font-size: 16px;
        display: block;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .main-header .main-header-info .logo img {
        max-width: 120px !important;
        height: 60px !important;
    }
    
    .main-header .main-header-info {
        padding: 10px 20px !important;
    }
    
    /* Pro Max ve büyük mobil telefonlar için hamburger konumu */
    .main-header .main-header-info .humburger {
        right: 20px !important;
    }
    
    .contact-list li {
        font-size: 11px;
    }
}

/* ======================================================= 
   SIMPLE HOME SLIDER STYLES 
======================================================= */
.slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    background: transparent;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.slider-container .container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.home-slider-wrap {
    position: relative;
    width: 100%;
    height: 650px;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.home-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider İçerik */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 0;
    padding: 0;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img.home-slider-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.slide-item picture.home-slider-picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* Slider Navigasyon */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.arrow-right:hover {
    transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.slider-arrow i {
    color: #ff69b4;
    font-size: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
}

.slider-dots .dot {
    width: 35px;
    height: 5px;
    background: rgba(255, 140, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.slider-dots .dot:hover {
    background: rgba(255, 140, 0, 0.8);
}

.slider-dots .dot.active {
    background: #FF8C00;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

/* Tablet için responsive ayarlar */
@media (max-width: 1024px) {
    .home-slider-wrap {
        height: 500px;
        border-radius: 10px;
    }
    
    .slide-item img.home-slider-bg {
        border-radius: 10px;
    }
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .home-slider-wrap {
        height: 650px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .slide-item img.home-slider-bg {
        border-radius: 12px;
        object-position: center center;
        object-fit: cover;
    }
    

    
    .slider-arrow {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slider-arrow i {
        font-size: 24px;
        color: #ff69b4;
        font-weight: bold;
    }
    
    .arrow-left {
        left: 15px;
    }
    
    .arrow-right {
        right: 15px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 6px;
        padding: 5px 10px;
    }
    
    .slider-dots .dot {
        width: 20px;
        height: 3px;
    }
    
    /* Slider container mobile */
    .slider-container {
        padding: 0 10px;
    }
}

/* ======================================================= 
   HOME PAGE SECTIONS 
======================================================= */

/* Age Groups Section */
.age-groups-section {
    padding: 20px 0;
    background: linear-gradient(45deg, #FFE4E1, #E6F3FF, #F0FFF0);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.age-groups-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    background: none;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
    animation: bounce 4s ease-in-out infinite;
}

.age-groups-section::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 140px;
    height: 140px;
    background: none;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

.age-groups-section h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 32px;
    text-align: center;
}

.age-groups-section p {
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
    text-align: center;
}

.age-group-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}

.age-group-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.age-group-card:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.age-group-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: #FFB6C1;
}

.age-group-card i {
    font-size: 70px;
    margin-bottom: 20px;
    margin-top: 40px;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    position: relative;
    z-index: 5;
}

.age-group-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.2));
}

.age-group-card h4 {
    margin: 15px 0 10px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 5;
}

.age-group-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 5;
}

/* Age Group Colors - Çocuksu Renkler */
.age-group-card:nth-child(1) i {
    color: #FF69B4; /* Pembe */
}

.age-group-card:nth-child(2) i {
    color: #00CED1; /* Turkuaz */
}

.age-group-card:nth-child(3) i {
    color: #FFD700; /* Altın Sarı */
}

.age-group-card:nth-child(4) i {
    color: #32CD32; /* Lime Yeşil */
}

.age-group-card:nth-child(5) i {
    color: #FF6347; /* Domates Kırmızı */
}

.age-group-card:nth-child(6) i {
    color: #9370DB; /* Orta Mor */
}

/* Hover'da kart arka planı da renklensin */
.age-group-card:nth-child(1):hover {
    background: linear-gradient(135deg, #FFE4E6, white);
}

.age-group-card:nth-child(2):hover {
    background: linear-gradient(135deg, #E0FFFF, white);
}

.age-group-card:nth-child(3):hover {
    background: linear-gradient(135deg, #FFFACD, white);
}

.age-group-card:nth-child(4):hover {
    background: linear-gradient(135deg, #F0FFF0, white);
}

.age-group-card:nth-child(5):hover {
    background: linear-gradient(135deg, #FFE4E1, white);
}

.age-group-card:nth-child(6):hover {
    background: linear-gradient(135deg, #E6E6FA, white);
}

/* Activities Showcase Section */
.activities-showcase {
    padding: 35px 0;
    background: linear-gradient(135deg, #FFF8DC, #F0F8FF, #F5FFFA);
    position: relative;
    overflow: hidden;
}

.activities-showcase::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 130px;
    background: none;
    background-size: contain;
    opacity: 0.5;
    animation: float 5s ease-in-out infinite;
    z-index: 1;
}

.activities-showcase::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 25px;
    width: 105px;
    height: 135px;
    background: none;
    background-size: contain;
    opacity: 0.5;
    animation: float 5s ease-in-out infinite reverse;
    z-index: 1;
}

.activities-showcase h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 32px;
    text-align: center;
}

.activities-showcase p {
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
    text-align: center;
}

.activity-card {
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 30px;
    border-radius: 15px;
    background: white;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    z-index: 2;
}

.activity-card::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.activity-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

.activity-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #FF69B4;
}

.activity-card a {
    text-decoration: none;
    color: #333;
    display: block;
    height: 100%;
}

.activity-card img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #FFE4E1;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.activity-card:hover img {
    transform: scale(1.05) rotate(-3deg);
    border-color: #FFB6C1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.activity-card h4 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.activity-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    padding: 35px 0;
    background: linear-gradient(45deg, #FFE4E1, #E0FFFF, #F0FFF0, #FFFACD);
    color: #333;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 30px;
    width: 140px;
    height: 160px;
    background: none;
    background-size: contain;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 150px;
    height: 150px;
    background: none;
    background-size: contain;
    opacity: 0.25;
    animation: float 3s ease-in-out infinite reverse;
}

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

.testimonials h2 {
    margin-bottom: 15px;
    font-size: 28px;
    text-align: center;
    color: #333;
}

.testimonials > .container > .row > .col-md-12 > p {
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
    color: #666;
}

.testimonial-card {
    background: white;
    padding: 35px 25px;
    border-radius: 25px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 3px solid #FFE4E1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.testimonial-card::before {
    content: '💝';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0) rotate(0deg);
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: #FFB6C1;
}

.testimonial-card > div:first-child {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-card i {
    font-size: 60px;
    color: #FF69B4;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.testimonial-card:hover i {
    transform: scale(1.1) rotate(10deg);
    color: #FFB6C1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.testimonial-card > div:last-child {
    text-align: center;
}

.testimonial-card h5 {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
    font-size: 17px;
}

.testimonial-card small {
    color: #666;
    font-size: 14px;
}

/* Call to Action Section */
.call-to-action {
    padding: 25px 0;
    background: linear-gradient(135deg, #FFF0F5, #F0FFFF, #F5FFFA);
    border-top: 3px solid #FFB6C1;
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: none;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.call-to-action::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 110px;
    height: 110px;
    background: none;
    background-size: contain;
    opacity: 0.4;
    animation: bounce 2s ease-in-out infinite reverse;
    z-index: 1;
}

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

.call-to-action h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 28px;
    text-align: center;
}

.call-to-action > .container > .row > .col-md-8 > p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.cta-buttons {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin: 0 8px 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
    font-weight: bold;
}

.btn-secondary {
    background: transparent;
    color: #FF69B4;
    border: 2px solid #FF69B4;
    padding: 13px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin: 0 8px 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,105,180,0.4);
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

/* CTA Button Variants */
.btn-register {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3) !important;
}

.btn-register:hover {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
    box-shadow: 0 8px 25px rgba(40,167,69,0.4) !important;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,105,180,0.3);
    background: #FF69B4;
    color: white;
}

.contact-info {
    margin-top: 25px;
    text-align: center;
}

.contact-info p {
    color: #666;
    font-size: 14px;
    margin: 3px 0;
}

.contact-info i {
    color: #667eea;
    margin-right: 8px;
}

/* Preview Cards - Ana Sayfa Kartları */
.home-preview {
    padding: 20px 0;
    background: linear-gradient(135deg, #F0F8FF, #FFF0F5, #F5FFFA);
    position: relative;
    overflow: hidden;
}

/* Floating Balloons */
.home-preview::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 120px;
    height: 160px;
    background: none;
    background-size: contain;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.home-preview::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 110px;
    height: 150px;
    background: none;
    background-size: contain;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite reverse;
    z-index: 1;
}

.preview-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    z-index: 2;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.preview-card:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

.preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: #FFB6C1;
}

.preview-card-logo {
    text-align: center;
    margin-bottom: 15px;
}

.preview-card-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFE4E1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.preview-card:hover .preview-card-logo img {
    transform: scale(1.1) rotate(-3deg);
    border-color: #FFB6C1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.preview-card-info h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.preview-card-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.preview-card .read-more {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
    width: 100%;
    text-align: center;
}

.preview-card .read-more:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,105,180,0.4);
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    color: white;
    text-decoration: none;
}

.preview-card .read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.preview-card:hover .read-more i {
    transform: translateX(5px);
}

/* Kartlara farklı renkler */
.preview-card:nth-child(1):hover {
    border-color: #FF69B4;
}

.preview-card:nth-child(2):hover {
    border-color: #00CED1;
}

.preview-card:nth-child(3):hover {
    border-color: #32CD32;
}

/* Contact Card - İletişim Kartı Özel Stilleri */
.contact-card {
    background: linear-gradient(135deg, #f8f9ff, #fff8f8) !important;
    min-height: 420px !important;
}

.contact-card .preview-card-info h3 {
    color: #32CD32;
    font-size: 20px;
    margin-bottom: 18px;
    border-bottom: 2px solid #E0FFE0;
    padding-bottom: 10px;
}

.contact-card .preview-card-info h3 i {
    margin-right: 8px;
    font-size: 22px;
}

.contact-details {
    margin-bottom: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.contact-item i {
    color: #32CD32;
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.working-hours {
    background: rgba(50, 205, 50, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #32CD32;
}

.working-hours h4 {
    color: #32CD32;
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.working-hours h4 i {
    margin-right: 8px;
}

.hours-list {
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.hours-item .day {
    color: #333;
    font-weight: 500;
}

.hours-item .time {
    font-weight: 600;
    color: #333;
}

.hours-item.weekend .time {
    color: #ff0000;
    font-weight: 700;
}

.contact-card .read-more {
    background: linear-gradient(135deg, #32CD32, #90EE90) !important;
    margin-top: 10px;
}

.contact-card .read-more:hover {
    background: linear-gradient(135deg, #90EE90, #32CD32) !important;
}

.contact-card .read-more i {
    margin-right: 8px !important;
    margin-left: 0 !important;
}

/* Floating Animals in Home Preview */
.home-preview .floating-animal {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 130px;
    height: 130px;
    background: none;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
}

/* Additional decorative element for activities */
.activities-showcase .floating-elephant {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: none;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    animation: bounce 8s ease-in-out infinite;
    pointer-events: none;
}

/* ======================================================= 
   RESPONSIVE DESIGN 
======================================================= */
@media (max-width: 768px) {
    /* Mobile Navigation - Yeniden Tasarlanmış */
    .header-nav {
        position: fixed;
        top: 60px;
        right: -15px;
        width: 320px;
        height: calc(100vh - 60px);
        background: #ffffff;
        box-shadow: -8px 0 25px rgba(0,0,0,0.15);
        z-index: 9999;
        padding: 0;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .header-nav .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .header-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #fff;
    }
    
    /* Ana menü öğeleri - Tamamen tutarlı tasarım */
    .header-nav-list > li {
        border-bottom: 1px solid #e8e8e8;
        background: #fff;
    }
    
    .header-nav-list > li > a,
    .header-nav-list > li .wrap-to-show > p {
        display: block !important;
        padding: 18px 20px !important;
        color: #333 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        font-family: "Roboto", sans-serif !important;
        line-height: 1.4 !important;
        border: none !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
    }
    
    /* Hover efektleri - tutarlı */
    .header-nav-list > li > a:hover,
    .header-nav-list > li .wrap-to-show > p:hover {
        background: #f8f9fa !important;
        color: #ff69b4 !important;
        padding-left: 25px !important;
    }
    
    /* Alt menü bölümü */
    .header-nav-list .hide-lvl {
        background: #f8f9fa !important;
        border-left: 3px solid #ff69b4 !important;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .header-nav-list .hide-lvl li {
        border-bottom: 1px solid #e0e0e0 !important;
        background: #f8f9fa !important;
    }
    
    .header-nav-list .hide-lvl li a {
        padding: 15px 20px 15px 35px !important;
        color: #555 !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        display: block !important;
        text-decoration: none !important;
        font-family: "Roboto", sans-serif !important;
        background: transparent !important;
        border: none !important;
        line-height: 1.4 !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }
    
    .header-nav-list .hide-lvl li a:hover {
        background: #ff69b4 !important;
        color: #fff !important;
        padding-left: 40px !important;
    }
    
    /* Tüm navigasyon elemanlarını zorla düzenle */
    .header-nav *,
    .header-nav-list *,
    .header-nav a,
    .header-nav p {
        box-sizing: border-box !important;
    }
    
    /* Renk çakışmalarını önle */
    .header-nav-list > li:nth-child(n) > a,
    .header-nav-list > li:nth-child(n) .wrap-to-show > p {
        color: #333 !important;
    }
    
    .header-nav-list > li:nth-child(n) > a:hover,
    .header-nav-list > li:nth-child(n) .wrap-to-show > p:hover {
        color: #ff69b4 !important;
    }
    
    /* Dropdown okları */
    .header-nav-list .wrap-to-show i {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #999 !important;
        font-size: 14px !important;
    }
    
    .header-nav-list .wrap-to-show {
        position: relative !important;
    }
    
    /* Kapatma butonu */
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff69b4;
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        z-index: 10001;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .close-menu:hover {
        background: #e91e63;
        transform: scale(1.05);
    }
    /* Hide decorative images on mobile */
    .home-preview::before, 
    .home-preview::after, 
    .home-preview .floating-animal, 
    .age-groups-section::before, 
    .age-groups-section::after, 
    .activities-showcase::before, 
    .activities-showcase::after, 
    .activities-showcase .floating-elephant, 
    .testimonials::before, 
    .testimonials::after, 
    .call-to-action::before, 
    .call-to-action::after {
        display: none !important;
    }

    /* Section Headings */
    .preview-card-info h3, 
    .age-groups-section h2, 
    .activities-showcase h2, 
    .testimonials h2, 
    .call-to-action h2 {
        font-size: 20px !important;
    }

    /* Preview Cards Mobile */
    .preview-card {
        margin-bottom: 15px !important;
        min-height: 320px !important;
        padding: 20px 15px !important;
    }

    .preview-card-logo img {
        width: 120px !important;
        height: 120px !important;
    }

    /* Contact Card Mobile */
    .contact-card {
        min-height: 320px !important;
    }

    .contact-card .contact-item {
        margin-bottom: 10px !important;
    }

    .contact-card .working-hours {
        padding: 12px !important;
    }

    /* Age Groups Mobile - Simple 2x2 Grid */
    .age-groups-section .row.justify-content-center {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        margin: 0 !important;
        gap: 15px !important;
    }
    
    .age-groups-section .col-md-2 {
        flex: 0 0 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Son kartı ortalamak için */
    .age-groups-section .col-md-2:last-child {
        flex: 0 0 calc(50% - 8px) !important;
        margin: 0 auto !important;
    }
    
    .age-group-card {
        margin-bottom: 0 !important;
        padding: 25px 15px !important;
        height: 150px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .age-group-card i {
        font-size: 36px !important;
        margin-bottom: 10px !important;
    }
    
    .age-group-card h4 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }
    
    .age-group-card p {
        font-size: 13px !important;
        margin-bottom: 0 !important;
        opacity: 0.8 !important;
    }

    /* Activity Cards */
    .activity-card {
        margin-bottom: 20px;
        min-height: 250px;
    }

    /* Testimonials */
    .testimonial-card {
        margin-bottom: 20px;
        height: auto !important;
        min-height: 280px;
        padding: 25px 20px;
    }

    /* CTA Buttons Mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn-primary {
        width: 90%;
        max-width: 280px;
        margin: 0 !important;
        text-align: center;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    /* Mobile spacing improvements */
    .home-preview,
    .age-groups-section,
    .activities-showcase,
    .testimonials,
    .call-to-action {
        padding: 40px 0;
    }
    
    /* Mobile card improvements */
    .preview-card,
    .age-group-card,
    .activity-card,
    .testimonial-card {
        margin-bottom: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    /* Mobile text improvements */
    .preview-card-info h3,
    .age-group-card h4,
    .activity-card h4,
    .testimonial-card h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .preview-card-info p,
    .age-group-card p,
    .activity-card p,
    .testimonial-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Footer mobile improvements */
    footer {
        padding: 30px 0 20px;
    }
    .copyright-info {
        text-align: center;
        padding: 15px 0;
    }
    .copyright-info p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .contact-list li {
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Slider very small screen */
    .home-slider-wrap {
        height: 450px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .slide-item img.home-slider-bg {
        border-radius: 10px;
        object-position: center center;
        object-fit: cover;
    }
    

    
    .slider-arrow {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slider-arrow i {
        font-size: 20px;
        color: #ff69b4;
        font-weight: bold;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 4px;
        padding: 4px 8px;
    }
    
    .slider-dots .dot {
        width: 15px;
        height: 2px;
    }
    
    .slider-container {
        padding: 0 5px;
    }
    
    /* Sections Padding */
    .home-preview, 
    .age-groups-section, 
    .activities-showcase, 
    .testimonials, 
    .call-to-action {
        padding: 30px 0;
    }

    /* Preview Cards Very Small Screen */
    .preview-card {
        min-height: 300px !important;
        padding: 18px 12px !important;
    }

    .preview-card-logo img {
        width: 100px !important;
        height: 100px !important;
    }

    .preview-card-info h3 {
        font-size: 18px !important;
    }

    .preview-card-info p {
        font-size: 14px !important;
    }

    /* Contact Card Very Small Screen */
    .contact-card {
        min-height: 300px !important;
    }

    .contact-card .preview-card-info h3 {
        font-size: 18px !important;
    }

    .contact-card .working-hours h4 {
        font-size: 14px !important;
    }

    .contact-card .hours-item {
        font-size: 12px !important;
    }

    /* Typography */
    .age-groups-section h2, 
    .activities-showcase h2, 
    .testimonials h2, 
    .call-to-action h2 {
        font-size: 24px !important;
    }

    /* Age Group Cards */
    .age-group-card i {
        font-size: 48px;
    }

    /* Activity Cards */
    .activity-card img {
        width: 120px;
        height: 120px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    /* Very small screen improvements */
    .preview-card,
    .age-group-card,
    .activity-card,
    .testimonial-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .preview-card-info h3,
    .age-group-card h4,
    .activity-card h4,
    .testimonial-card h5 {
        font-size: 16px;
    }
    
    .preview-card-info p,
    .age-group-card p,
    .activity-card p,
    .testimonial-card p {
        font-size: 13px;
    }
    
    .cta-buttons .btn-primary {
        width: 95%;
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* ======================================================= 
   ANIMATION ENHANCEMENTS 
======================================================= */

/* Fade in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to sections when they come into view */
.home-preview, 
.age-groups-section, 
.activities-showcase, 
.testimonials, 
.call-to-action {
    animation: fadeInUp 0.8s ease-out;
}

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

/* ======================================================= 
   PAGE NAME OVERRIDE - Remove Green Stripes 
======================================================= */

/* Remove background colors from page-name sections */
.page-name {
    background: none !important;
}

.page-name.color-1, 
.page-name.color-2, 
.page-name.color-3, 
.page-name.color-4, 
.page-name.color-5 {
    background: none !important;
    background-color: transparent !important;
}

/* ======================================================= 
   FOOTER OVERRIDE - Remove Green Background 
======================================================= */

/* Remove green background from footer */
footer {
    background: #f8f9ff !important;
    background-color: #f8f9ff !important;
    border-top: 1px solid #e0e0e0;
    display: block !important;
    visibility: visible !important;
}

/* Copyright info styling - ENHANCED */
.copyright-info {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 20px 0 !important;
    border-top: 2px solid #e0e0e0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999 !important;
    position: relative !important;
}

.copyright-info p {
    color: #555 !important;
    font-size: 14px !important;
    margin: 5px 0 !important;
    line-height: 1.6 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.copyright-info p:first-child {
    font-weight: 700 !important;
    color: #222 !important;
    font-size: 16px !important;
}

/* Footer bottom content override */
footer .footer-bottom-content {
    background: #f8f9ff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 20px 0 !important;
    width: 100% !important;
}

/* Footer full-width bar (override Bootstrap container) */
footer .footer-bottom-content > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

footer .footer-bottom-content .row,
footer .footer-bottom-content .col-md-12 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Text center override */
.text-center {
    text-align: center !important;
}

/* ======================================================= 
   CONTACT LIST - ICON SPACING FIX
======================================================= */

/* Fix for overlapping contact icons in header */
.contact-list li {
    margin-right: 20px !important;
}

.contact-list li i {
    margin-right: 8px !important;
}

.footer-contact-text {
    margin-left: 0 !important;
    display: inline-block;
}

/* Responsive spacing for contact list */
@media (max-width: 768px) {
    .contact-list li {
        margin-right: 15px !important;
        margin-bottom: 5px;
    }
    
    /* ======================================================= 
       VIDEO GALLERY MOBILE STYLES
    ======================================================= */
    .gallery-wrap {
        padding: 0 15px;
    }
    
    .gallery-wrap .col-md-6 {
        width: 100% !important;
        padding: 0 0 30px 0 !important;
        margin-bottom: 20px;
        float: none !important;
    }
    
    .gallery-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    .video-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        min-height: 250px !important;
    }
    
    .video-container img,
    .video-container video {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }
    
    .play-button {
        width: 60px !important;
        height: 60px !important;
    }
    
    .play-button span {
        font-size: 30px !important;
    }
    
    .video-gallery-hero-section {
        padding: 50px 0 !important;
    }
    
    .gallery-content {
        padding: 40px 0 !important;
    }
}

/* ======================================================= 
   VIDEO GALLERY SMALL MOBILE STYLES
======================================================= */
@media (max-width: 480px) {
    .gallery-wrap {
        padding: 0 10px;
    }
    
    .gallery-wrap .col-md-6 {
        padding: 0 0 25px 0 !important;
        margin-bottom: 15px;
    }
    
    .video-container {
        min-height: 220px !important;
    }
    
    .video-container img,
    .video-container video {
        height: 220px !important;
    }
    
    .play-button {
        width: 50px !important;
        height: 50px !important;
    }
    
    .play-button span {
        font-size: 25px !important;
    }
    
    .video-gallery-hero-section {
        padding: 40px 0 !important;
    }
    
    .video-gallery-hero-content h1 {
        font-size: 28px !important;
    }
    
    .video-subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .gallery-content {
        padding: 30px 0 !important;
    }
}

/* ======================================================= 
   TABLET / iPAD STYLES (768px - 1024px)
======================================================= */
@media (min-width: 768px) and (max-width: 1024px) {
    
    /* TABLET SPECIFIC OVERRIDE - Higher Priority */
    /* Activities Showcase iPad Optimization */
    .activities-showcase {
        padding: 40px 0;
    }
    
    .activities-showcase h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .activities-showcase p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    /* Activity Cards iPad Layout */
    .activity-card {
        padding: 20px 12px;
        margin-bottom: 25px;
        min-height: 280px;
        border-radius: 12px;
    }
    
    .activity-card img {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .activity-card h4 {
        font-size: 16px;
        margin: 12px 0 8px;
    }
    
    .activity-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Grid Layout Improvements for iPad - FIX CARD ORDERING */
    .activities-showcase .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Reset all column widths and use flexbox for consistent layout */
    .activities-showcase .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
        justify-content: center;
    }
    
    /* First row: 3 cards */
    .activities-showcase .row:first-of-type [class*="col-"] {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    /* Second row: 2 cards centered */
    .activities-showcase .row:nth-of-type(2) [class*="col-"] {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    /* Override Bootstrap classes for tablet */
    .activities-showcase .col-md-4,
    .activities-showcase .col-md-6,
    .activities-showcase .col-sm-6 {
        float: none !important;
    }
    
    /* Age Groups iPad Optimization */
    .age-groups-section .age-group-card {
        padding: 18px 12px;
        min-height: 200px;
    }
    
    .age-groups-section .age-group-card i {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .age-groups-section .age-group-card h4 {
        font-size: 16px;
        margin: 10px 0 8px;
    }
    
    .age-groups-section .age-group-card p {
        font-size: 13px;
    }
    
    /* Testimonials iPad Optimization */
    .testimonial-card {
        padding: 25px 18px;
        min-height: 260px;
    }
    
    /* Home Preview iPad Optimization */
    .preview-card {
        padding: 25px 18px;
        min-height: 350px;
    }
    
    .preview-card-logo img {
        width: 110px;
        height: 110px;
    }
    
    .preview-card-info h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .preview-card-info p {
        font-size: 14px;
    }
    
    /* CTA Buttons iPad */
    .cta-buttons .btn-primary {
        padding: 12px 25px;
        font-size: 15px;
        margin: 0 8px;
    }
    
    /* Contact Card iPad */
    .contact-card {
        min-height: 350px;
        padding: 25px 18px;
    }
    
    .contact-card .contact-item {
        margin-bottom: 8px;
    }
    
    .contact-card .hours-item {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .contact-card .working-hours h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    /* Floating Elements iPad */
    .activities-showcase::before,
    .activities-showcase::after,
    .testimonials::before,
    .testimonials::after {
        transform: scale(0.8);
    }
    
    /* Container Padding iPad */
    .container {
        padding: 0 20px;
    }
    
    /* ======================================================= 
       TABLET NAVIGATION (768px - 1024px)
    ======================================================= */
    
    /* Hamburger Menu Button for Tablet */
    .main-header .main-header-info .humburger {
        position: absolute !important;
        right: 15px !important;
        top: 40% !important;
        transform: translateY(-50%) !important;
        z-index: 1000 !important;
        padding: 10px !important;
        background: transparent !important;
        border-radius: 0 !important;
        cursor: pointer !important;
        display: block !important;
        box-shadow: none !important;
    }
    
    /* Mobile Navigation Container for Tablet - FORCE OVERRIDE */
    body .header-nav,
    .main-header + * .header-nav,
    .header-nav {
        position: fixed !important;
        top: 0px !important;
        right: -10px !important;
        width: 350px !important;
        height: 100vh !important;
        background: #ffffff !important;
        border-top: 3px solid red !important;
        box-shadow: -8px 0 25px rgba(0,0,0,0.2) !important;
        z-index: 9999 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        transform: translateX(100%) !important;
        transition: all 0.3s ease !important;
        border: none !important;
        margin: 0 !important;
    }
    
    /* Show Navigation for Tablet */
    .header-nav.show-header-nav {
        transform: translateX(0%) !important;
    }
    
    /* Navigation Container Reset */
    .header-nav .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
    }
    
    /* Navigation List Tablet */
    .header-nav-list,
    .header-nav .header-nav-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        flex-direction: column !important;
        display: flex !important;
    }
    
    /* Main Menu Items Tablet */
    .header-nav-list > li,
    .header-nav .header-nav-list > li {
        border-bottom: 1px solid #e8e8e8 !important;
        background: #fff !important;
        width: 100% !important;
        display: block !important;
        position: relative !important;
    }
    
    /* Main Menu Links Tablet */
    .header-nav-list > li > a,
    .header-nav-list > li .wrap-to-show > p,
    .header-nav .header-nav-list > li > a,
    .header-nav .header-nav-list > li .wrap-to-show > p {
        display: block !important;
        padding: 22px 25px !important;
        color: #333 !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        font-family: "Roboto", sans-serif !important;
        line-height: 1.4 !important;
        border: none !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Hover Effects Tablet */
    .header-nav-list > li > a:hover,
    .header-nav-list > li .wrap-to-show > p:hover,
    .header-nav .header-nav-list > li > a:hover,
    .header-nav .header-nav-list > li .wrap-to-show > p:hover {
        background: #f8f9fa !important;
        color: #ff69b4 !important;
        padding-left: 30px !important;
        transform: translateX(8px) !important;
    }
    
    /* Submenu Container Tablet */
    .header-nav-list .hide-lvl,
    .header-nav .header-nav-list .hide-lvl {
        background: #f8f9fa !important;
        border-left: 4px solid #ff69b4 !important;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        display: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border-top: 1px solid #ececec !important;
    }
    
    /* Submenu Items Tablet */
    .header-nav-list .hide-lvl li,
    .header-nav .header-nav-list .hide-lvl li {
        border-bottom: 1px solid #e0e0e0 !important;
        background: #f8f9fa !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Submenu Links Tablet */
    .header-nav-list .hide-lvl li a,
    .header-nav .header-nav-list .hide-lvl li a {
        padding: 18px 25px 18px 40px !important;
        color: #555 !important;
        font-size: 17px !important;
        font-weight: 400 !important;
        display: block !important;
        text-decoration: none !important;
        font-family: "Roboto", sans-serif !important;
        background: transparent !important;
        border: none !important;
        line-height: 1.4 !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Submenu Hover Effects Tablet */
    .header-nav-list .hide-lvl li a:hover,
    .header-nav .header-nav-list .hide-lvl li a:hover {
        background: #ff69b4 !important;
        color: #fff !important;
        padding-left: 45px !important;
        transform: translateX(8px) !important;
    }
    
    /* Dropdown Icons Tablet */
    .header-nav-list .wrap-to-show i,
    .header-nav .header-nav-list .wrap-to-show i {
        position: absolute !important;
        right: 25px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #999 !important;
        font-size: 16px !important;
        display: block !important;
        width: 40px !important;
        text-align: center !important;
        transition: transform 0.3s ease !important;
        cursor: pointer !important;
        padding: 22px 0 !important;
    }
    
    /* Dropdown Icon Rotation Tablet */
    .header-nav-list .wrap-to-show.show-mob-nav i,
    .header-nav .header-nav-list .wrap-to-show.show-mob-nav i {
        transform: translateY(-50%) rotate(180deg) !important;
        color: #ff69b4 !important;
    }
    
    /* Wrap to Show Container Tablet */
    .header-nav-list .wrap-to-show,
    .header-nav .header-nav-list .wrap-to-show {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        background: #fff !important;
    }
    
    /* Close Menu Button Tablet */
    .header-nav .close-menu {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: #ff69b4 !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        font-size: 20px !important;
        z-index: 10001 !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .header-nav .close-menu:hover {
        background: #e91e63 !important;
        transform: scale(1.1) !important;
    }
    
    .header-nav .close-menu i {
        font-size: 20px !important;
        color: white !important;
    }
    
    /* Show Submenu Tablet */
    .header-nav-list .hide-lvl.show-mob-nav,
    .header-nav .header-nav-list .hide-lvl.show-mob-nav {
        display: block !important;
        animation: slideDownTablet 0.3s ease-in-out !important;
    }
    
    /* Fade Background Tablet */
    .fade-bg {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.5) !important;
        z-index: 9998 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: all 0.3s ease !important;
    }
    
         .fade-bg.fade-true {
         visibility: visible !important;
         opacity: 1 !important;
     }
     
     /* Tablet Navigation Animation */
     @keyframes slideDownTablet {
         from {
             opacity: 0;
             transform: translateY(-15px);
         }
         to {
             opacity: 1;
             transform: translateY(0);
         }
     }
}

/* ======================================================= 
   SMALL TABLET SPECIFIC (768px - 900px)
======================================================= */
@media (min-width: 768px) and (max-width: 900px) {
    /* For smaller tablets, use 2x2+1 layout */
    .activities-showcase .row:first-of-type [class*="col-"] {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    /* Third card in first row goes to second position in second row */
    .activities-showcase .row:first-of-type [class*="col-"]:nth-child(3) {
        order: 3;
    }
    
    /* Adjust activity card size for smaller tablets */
    .activity-card {
        min-height: 260px;
        padding: 18px 10px;
    }
    
    .activity-card img {
        width: 100px;
        height: 100px;
    }
    
    .activity-card h4 {
        font-size: 15px;
    }
    
    .activity-card p {
        font-size: 13px;
    }
}

/* ======================================================= 
   LARGE TABLET SPECIFIC (901px - 1024px)  
======================================================= */
@media (min-width: 901px) and (max-width: 1024px) {
    /* Keep 3+2 layout but with better spacing */
    .activities-showcase .container {
        padding: 0 30px;
    }
    
    .activities-showcase .row {
        margin: 0 -15px;
    }
    
    .activities-showcase .row:first-of-type [class*="col-"],
    .activities-showcase .row:nth-of-type(2) [class*="col-"] {
        padding: 0 15px;
    }
}

/* ======================================================= 
   LOADING ANIMATION - RENKLİ ÇİZGİLER
======================================================= */

/* Loading Spinner Ana Container */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    font-family: "Roboto", sans-serif;
}

/* Spinner Bar Temel Stilleri */
.spinner-bar {
    margin: 0 8px;
    width: 40px;
    height: 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Spinner Bar Hover Efekti */
.spinner-bar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 1. Çizgi - Pembe */
.spinner-bar-1 {
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
    animation: spin1 2.5s ease-in-out infinite;
    animation-delay: 0s;
}

/* 2. Çizgi - Turuncu */
.spinner-bar-2 {
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    animation: spin2 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* 3. Çizgi - Sarı */
.spinner-bar-3 {
    background: linear-gradient(45deg, #FFD700, #FFFF00);
    animation: spin3 2.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* 4. Çizgi - Yeşil */
.spinner-bar-4 {
    background: linear-gradient(45deg, #32CD32, #90EE90);
    animation: spin4 2.5s ease-in-out infinite;
    animation-delay: 0.9s;
}

/* Animasyon 1 - Pembe Çizgi */
@keyframes spin1 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(90deg) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

/* Animasyon 2 - Turuncu Çizgi */
@keyframes spin2 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(-90deg) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: rotate(-180deg) scale(1.3);
        opacity: 0.7;
    }
    75% {
        transform: rotate(-270deg) scale(0.9);
        opacity: 0.8;
    }
}

/* Animasyon 3 - Sarı Çizgi */
@keyframes spin3 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(120deg) scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: rotate(240deg) scale(1.2);
        opacity: 0.6;
    }
    75% {
        transform: rotate(360deg) scale(1);
        opacity: 0.9;
    }
}

/* Animasyon 4 - Yeşil Çizgi */
@keyframes spin4 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(-120deg) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: rotate(-240deg) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: rotate(-360deg) scale(1.3);
        opacity: 0.8;
    }
}

/* Loading Spinner İçin Ek Efektler */
.loading-spinner::before {
    content: '🎨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0.3;
    animation: loadingIcon 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes loadingIcon {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .spinner-bar {
        margin: 0 5px;
        width: 30px;
        height: 10px;
        border-radius: 5px;
    }
    
    .loading-spinner::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .spinner-bar {
        margin: 0 3px;
        width: 25px;
        height: 8px;
        border-radius: 4px;
    }
    
    .loading-spinner::before {
        font-size: 18px;
    }
}