/* =========================================================
   ALTINÇAĞ ANAOKULU - CLEAN CSS (Premium Hero)
   ========================================================= */

/* -------------------------
   Design Tokens
-------------------------- */
:root {
    --primary-hover: #ff9f43;
    /* Tatlı Turuncu */
    --primary-color: #ff8812;
    --secondary-color: #54a0ff;
    /* Yumuşak Mavi */
    --text-dark: #3b3b3b;
    --text-muted: #8b8b8b;
    --bg-light: #fef9f4;
    /* Çok hafif krem/turuncu */
    --white: #ffffff;

    --font-heading: 'Baloo 2', sans-serif;
    --font-body: 'Nunito', sans-serif;;
}

/* Soft BG Utility (tek yerde toplu) */
.soft-blue {
    background-color: #f0f7ff;
}

.soft-pink {
    background-color: #fff0f5;
}

.soft-yellow {
    background-color: #fffdf0;
}

.soft-green {
    background-color: #f0fff4;
}

.soft-purple {
    background-color: #f8f0ff;
}

.soft-peach {
    background-color: #fff4ed;
}

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

body {
    font-family: var(--font-body) !important;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: #403c3c;
    margin-bottom: 1rem;
}

h1, h2, h3, h4 {
    letter-spacing: -0.3px;
}

h1 {
    font-size: calc(1.8rem + 1.5vw);
    line-height: 1.2;
}

h2 {
    font-size: calc(1.5rem + 1vw);
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
}

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

section {
    position: relative;
}

/* -------------------------
   Header / Navbar
-------------------------- */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-text small {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Navbar Logo Image */
.navbar-logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .navbar-logo {
    transform: scale(1.05);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* -------------------------
   Buttons (tek sistem)
-------------------------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(255, 159, 67, 0.3);
    border: none;
    
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

/* outline-light (premium hero üstünde) */
.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: rgba(15, 32, 60, 1);
}

/* -------------------------
   Mobile Menu (overlay)
-------------------------- */
@media (max-width: 768px) {
    .header-flex .btn-outline {
        display: none;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Mobil menü paneli (JS ile .active) */
@media (max-width: 768px) {
    .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.4s ease-in-out;
        z-index: 99;
    }

    .nav-list.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        transition: transform 0.3s ease;
    }

    .mobile-menu-btn.active {
        transform: rotate(90deg);
        color: var(--secondary-color);
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* =========================================================
   HERO (ONLY PREMIUM)
   ========================================================= */
.premium-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
}

.premium-hero h1{
    color: #ffffff !important;
}

.premiumSwiper {
    width: 100%;
    height: 100%;
}

.premiumSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(15, 32, 60, 0.9) 0%,
            rgba(15, 32, 60, 0.65) 45%,
            rgba(15, 32, 60, 0) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Premium Swiper controls */
.premium-hero .swiper-button-next,
.premium-hero .swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.premium-hero .swiper-button-next:after,
.premium-hero .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.premium-hero .swiper-button-next:hover,
.premium-hero .swiper-button-prev:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.premium-hero .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.premium-hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color) !important;
}

.premium-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.85) 0%,
        rgba(255,255,255,0.65) 35%,
        rgba(255,255,255,0.65) 65%,
        rgba(255,255,255,0.85) 100%
    );
    z-index:1;
}

/* Premium responsive */
@media (max-width: 991px) {
    .hero-overlay {
        background: linear-gradient(90deg, rgba(15, 32, 60, 0.85) 0%, rgba(15, 32, 60, 0.7) 100%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonialSwiper {
    padding: 20px 0 60px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #ffeaa7;
    color: #d35400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-pagination {
    bottom: 0 !important;
}

/* =========================================================
   FEATURES (final: soft cards + image icon crop)
   ========================================================= */
.features-section {
    padding: 60px 0 80px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 30px 25px;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(84,160,255,0.15);

}

/* Image container -> perfect icon */
.feature-img {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--white);
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.15);
}

.feature-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Eğer gallery-item link ise */
.gallery-item {
    display: block;
    width: 100%;
    height: 100%;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 159, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    flex: 1;
    min-width: 350px;
    padding: 50px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-detail {
    display: flex;
    flex-direction: column;
}

.info-detail strong {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-detail span,
.info-detail a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.info-detail a:hover {
    color: var(--primary-color);
}

.contact-map {
    flex: 1;
    min-width: 350px;
    min-height: 450px;
    filter: grayscale(0.2);
}

/* mobile contact */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        border-radius: 20px;
        margin: 0 10px;
    }

    .contact-info-box {
        min-width: 100%;
        padding: 30px 20px;
    }

    .contact-map {
        min-width: 100%;
        min-height: 300px;
        order: 2;
    }

    .contact-map iframe {
        pointer-events: none;
    }

    .contact-map.active iframe {
        pointer-events: auto;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background-color: #1e272e;
    position: relative;
    padding-top: 100px;
    color: #a4b0be;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-wave svg {
    display: block;
    width: calc(130% + 1.3px);
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #a4b0be;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '❯';
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Classrooms gallery */
.classrooms-section {
    padding: 60px 0;
    background-color: var(--white);
}

.classroom-category {
    margin-bottom: 60px;
}

.category-title {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.category-title h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
    border-radius: 2px;
}

.soft-blue-badge {
    background-color: #e3f2fd;
    color: #1976d2;
}

.soft-yellow-badge {
    background-color: #fff9c4;
    color: #f57f17;
}

.classroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.classroom-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 52, 54, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

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

.classroom-item:hover .zoom-overlay {
    opacity: 1;
}

.classroom-item:hover .zoom-overlay i {
    transform: scale(1);
}

/* Navbar logo responsive */
@media (max-width: 768px) {
    .navbar-logo {
        max-height: 55px;
    }
}

/* =========================================================
   FAQ (only final version)
   ========================================================= */
.faq-section {
    padding: 100px 0;
    position: relative;

    background:
        radial-gradient(#d1d8e0 0.8px, transparent 0.8px),
        linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fff4ed 100%);
    background-size: 24px 24px, auto;

    overflow: hidden;
}

.faq-section::before,
.faq-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.4;
}

.faq-section::before {
    width: 300px;
    height: 300px;
    background-color: #dff9fb;
    top: -100px;
    right: -50px;
}

.faq-section::after {
    width: 250px;
    height: 250px;
    background-color: #fef1e6;
    bottom: -80px;
    left: -50px;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 35px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3436;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.faq-question i {
    width: 35px;
    height: 35px;
    background-color: #f0f7ff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.faq-item.active {
    box-shadow: 0 15px 35px rgba(84, 160, 255, 0.12);
    transform: translateY(-2px);
}

.faq-item.active .faq-question span {
    color: var(--secondary-color);
}

.faq-item.active .faq-question i {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 35px 30px 35px;
    color: #636e72;
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: var(--font-body);
    opacity: 0.9;
}

.faq-item:not(.active):hover {
    background-color: #f8fbff;
    transform: translateX(5px);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #fff;

}

.contact-map iframe {
    filter: saturate(0.9) contrast(0.95);

    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.map-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

@media (min-width: 992px) {
    .contact-map {
        min-height: 450px;
    }
}

@media (max-width: 768px){
    .premium-hero .swiper-button-next,
    .premium-hero .swiper-button-prev{
        display: none !important;
    }
}

@media (max-width: 768px){
    .premium-hero .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
        opacity: 0.4;
    }

    .premium-hero .swiper-pagination-bullet-active{
        opacity: 1;
        transform: scale(1.2);
    }
}
.floating-whatsapp{
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: auto;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover{
    transform: translateY(-3px) scale(1.05);
}
.scroll-top{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 998;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-top.active{
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover{
    transform: translateY(-2px);
}
@keyframes pulse{
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp{
    animation: pulse 2.5s infinite;
}
.trust-section{
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.trust-header{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.trust-header h2{
    font-size: 2.4rem;
    margin-bottom: 18px;
}
.trust-header p{
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-card{
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.trust-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.trust-icon{
    font-size: 2.4rem;
    margin-bottom: 15px;
}
.trust-card h3{
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.trust-card p{
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media(max-width: 991px){
    .trust-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .trust-grid{
        grid-template-columns: 1fr;
    }
}
.trust-image{
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 18px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-image img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.fade-up{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.show{
    opacity: 1;
    transform: translateY(0);
}
/* --- Hakkımızda Sayfası CSS --- */

/* Biz Kimiz Fotoğraf Alanı */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-img {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Doğal, amorf (blob) şekli */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-main-img {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; /* Üzerine gelince şekil değiştirir */
}

.about-floating-icon {
    position: absolute;
    width: 100px;
    bottom: 30px;
    left: -10px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    animation: float 4s ease-in-out infinite;
}

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

/* Eğitim Kadromuz Kartları */
.team-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(84, 160, 255, 0.1);
}

.team-img-box {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
}

/* Mobil Düzenlemeler */
@media (max-width: 991px) {
    .about-main-img {
        height: 400px;
        margin-top: 40px;
    }
}
/* --- Maskotlu Hakkımızda Sayfası --- */
.mascot-image-wrapper, .mascot-image-wrapper-alt {
    position: relative;
    display: inline-block;
    padding: 15px;
}

/* Resimleri yumuşak, amorf şekillere sokan sihirli dokunuş */
.mascot-img {
    border-radius: 30px; /* Jilet gibi köşeler yerine tatlı, yumuşak köşeler */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); /* Resmin arkasına derinlik katan gölge */
    max-width: 90%;
    transition: transform 0.4s ease;
}

.mascot-image-wrapper:hover .mascot-img,
.mascot-image-wrapper-alt:hover .mascot-img {
    transform: translateY(-8px); /* Üzerine gelince resim hafifçe havaya kalkar */
}

/* Listelerin başındaki ikonları özelleştirme */
.mascot-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.mascot-list i {
    font-size: 1.2rem;
    background: #fff9c4; /* İkonun arkasında sarı tatlı bir yuvarlak */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobil için ortalama */
@media (max-width: 991px) {
    .mascot-img {
        max-width: 100%;
        margin-top: 20px;
    }
}
/* --- Animasyonlu Page Header --- */
.animated-page-header {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 50%, #fdf4ff 100%); /* Mavi, yeşil ve pembenin en uçuk, en masalsı tonları */
    padding: 120px 0 100px;
    overflow: hidden; /* Uçuşan şekiller dışarı taşmasın */
    z-index: 1;
}

.animated-page-header .header-content {
    position: relative;
    z-index: 10; /* Yazılar şekillerin üstünde kalsın */
}

.animated-page-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.animated-page-header p {
    color: #636e72;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}

/* En Alttaki Beyaz Dalga */
.header-wave {
    position: absolute;
    bottom: -5px; /* Çizgi hatası olmaması için hafif aşağı çektik */
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 5;
    line-height: 0;
}

.header-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Saf CSS Uçuşan Şekiller Animasyonu --- */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.floating-shapes li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4); /* Yarı saydam beyaz */
    animation: floatUp 25s linear infinite;
    bottom: -150px; /* Ekranın altından başlasın */
    border-radius: 20%; /* Hafif yuvarlatılmış kareler, daha sevimli */
}

/* Şekillerin boyutlarını, yerlerini ve hızlarını randomize ediyoruz */
.floating-shapes li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.floating-shapes li:nth-child(2) { left: 10%; width: 30px; height: 30px; animation-delay: 2s; animation-duration: 12s; border-radius: 50%; /* Bu tam yuvarlak olsun */ }
.floating-shapes li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.floating-shapes li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; border-radius: 50%; }
.floating-shapes li:nth-child(5) { left: 65%; width: 40px; height: 40px; animation-delay: 0s; }
.floating-shapes li:nth-child(6) { left: 85%; width: 110px; height: 110px; animation-delay: 3s; background: rgba(255, 255, 255, 0.2); }

/* Yukarı Çıkma ve Kendi Etrafında Dönme Animasyonu */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 20%;
    }
    100% {
        transform: translateY(-800px) rotate(720deg);
        opacity: 0; /* Yukarı çıktıkça yavaşça silinsin */
        border-radius: 50%; /* Dönerken şekli de değişsin */
    }
}
/* --- Header Maskot İkonları (Fil ve Zürafa) --- */

/* Ortak Özellikler */
.header-giraffe-icon,
.header-elephant-icon {
    position: absolute;
    top: 15%; /* Üstten konumları */
    width: 200px; /* Boyutları */
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); /* Tatlı bir gölge */
}

/* Zürafa - Sağda */
.header-giraffe-icon {
    right: 15%;
    animation: mascotFloat 4s ease-in-out infinite;
}

/* Fil - Solda */
.header-elephant-icon {
    left: 15%;
    /* Zürafayla aynı anda hareket etmesin diye 2 saniye gecikme ekliyoruz */
    animation: mascotFloat 4s ease-in-out infinite;
    animation-delay: 2s; 
}

/* Süzülme Animasyonu (Aynı kalıyor) */
@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Mobil Cihazlar İçin Ayar */
@media (max-width: 768px) {
    .header-giraffe-icon,
    .header-elephant-icon {
        width: 150px; /* Mobilde biraz daha küçülsünler */
        top: 10%;
    }
    .header-giraffe-icon { right: 5%; }
    .header-elephant-icon { left: 5%; }
    
    .animated-page-header {
        padding: 110px 0 80px; /* Mobilde yazılar maskotların altında kalmasın diye üst boşluğu açtık */
    }
}
/* --- Eğitimlerimiz / Branşlar Sayfası (Yaşsız, Sade) --- */

.edu-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px; /* Yaş etiketi kalktığı için üstten biraz daha boşluk verdik */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.02);
}

.edu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Üst Renk Çizgisi */
.edu-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

/* İkon Alanı */
.edu-icon-box {
    width: 85px; /* İkonu çok az büyüttük */
    height: 85px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.edu-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* Yazı Alanı */
.edu-card-body h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.edu-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-muted);
}

/* İncele Butonu */
.edu-read-more {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    padding: 8px 16px; /* Butona çok hafif bir arka plan/hap şekli veriyoruz */
    border-radius: 20px;
}

.edu-card:hover .edu-read-more {
    gap: 12px;
    background-color: rgba(0,0,0,0.03); /* Hover anında incele yazısının arkası hafif kararır */
}

/* --- Eğitimlere Özel Dinamik Renk Paleti --- */

/* 1. Pembe (Dans) */
.bg-soft-pink { background-color: #fd79a8; }
.bg-soft-pink-light { background-color: #ffeef3; }
.text-pink { color: #fd79a8; }

/* 2. Turuncu (İngilizce) */
.bg-soft-orange { background-color: #ff9f43; }
.bg-soft-orange-light { background-color: #fff4e6; }
.text-orange { color: #ff9f43; }

/* 3. Mavi (Satranç) */
.bg-soft-blue { background-color: #54a0ff; }
.bg-soft-blue-light { background-color: #f0f7ff; }
.text-blue { color: #54a0ff; }

/* 4. Mor (Robotik) */
.bg-soft-purple { background-color: #9b59b6; }
.bg-soft-purple-light { background-color: #f5eef8; }
.text-purple { color: #9b59b6; }

/* 5. Yeşil (Doğa) */
.bg-soft-green { background-color: #2ecc71; }
.bg-soft-green-light { background-color: #eafaf1; }
.text-green { color: #2ecc71; }
/* --- Eğitim Detay Sayfası --- */

/* Ana Resim */
.detail-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.detail-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-image-wrapper:hover .detail-main-img {
    transform: scale(1.03); /* Resme gelince çok hafif zoom yapar */
}

/* Detay İçerik Metinleri (Admin panelinden gelen HTML'i güzelleştirir) */
.detail-content-box {
    color: var(--text-dark);
}

.detail-content-box h2, .detail-content-box h3 {
    color: #2d3436;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.detail-content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.detail-content-box ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.detail-content-box ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 10px;
    position: relative;
    list-style-type: none; /* Standart noktayı kaldırıyoruz */
}

/* Listelere özel tatlı yıldız ikonu */
.detail-content-box ul li::before {
    content: '\f005';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f1c40f;
    position: absolute;
    left: -25px;
    top: 2px;
}

/* --- Sidebar Alanı --- */
.sidebar-widget {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.cta-widget {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%); /* Tatlı bir krem rengi zemin */
    margin-top: 40px; /* Zürafa dışarı taşsın diye üstten boşluk */
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(0,0,0,0.05);
}

/* Diğer Eğitimler Linkleri */
.sidebar-edu-list li {
    margin-bottom: 10px;
}

.sidebar-edu-list li:last-child {
    margin-bottom: 0;
}

.sidebar-edu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-edu-list a i {
    font-size: 0.8rem;
    color: #b2bec3;
    transition: transform 0.3s ease;
}

.sidebar-edu-list a:hover, .sidebar-edu-list a.active {
    background: var(--primary-color);
    color: #fff;
}

.sidebar-edu-list a:hover i, .sidebar-edu-list a.active i {
    color: #fff;
    transform: translateX(4px); /* Ok işareti sağa kayar */
}
/* --- Fotoğraf Galerisi --- */

/* Filtre Butonları */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: #f8f9fa;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3);
    transform: translateY(-2px);
}

/* Galeri Öğeleri (Fotoğraflar) */
.gallery-item {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 4/3; /* Tüm fotoğrafların aynı hizada ve boyutta görünmesini sağlar */
    overflow: hidden;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Resmin Üzerine Gelince Çıkan Katman (Overlay) */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 159, 67, 0.7); /* Turuncu yarı saydam katman */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Efektleri */
.gallery-item:hover .gallery-img-box img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}
/* --- İletişim Sayfası --- */

/* Form Kutusu */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    color: #2d3436;
}

/* Özel Form Elemanları (Yuvarlatılmış ve soft) */
.custom-label {
    font-weight: 600;
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 8px;
    margin-left: 5px;
}

.custom-input {
    border-radius: 15px;
    border: 2px solid #f1f2f6;
    padding: 12px 20px;
    font-size: 1rem;
    color: #2d3436;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 159, 67, 0.15);
    outline: none;
}

/* Gönder Butonu */
.send-msg-btn {
    border-radius: 15px;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.send-msg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
}

/* Sağ Taraf: Bilgi Kartları Hover Efekti */
.info-box {
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.info-box:hover {
    transform: translateX(5px); /* Üzerine gelince çok tatlı sağa kayar */
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-box a:hover {
    color: var(--primary-color) !important;
}

/* Harita Alanı */
.map-wrapper {
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: scale(1.02);
}
/* --- Eğitimlerimiz / Branşlar Sayfası (Renkli Kart Versiyonu) --- */

.edu-card {
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border: none; /* Renkler kendi konuşsun diye çizgiyi kaldırdık */
}

/* Kartların Kendilerine Ait Uçuk Pastel Arka Plan Renkleri */
.edu-card.bg-hover-pink   { background-color: #fff0f5; } /* Uçuk Pembe */
.edu-card.bg-hover-orange { background-color: #fff9f0; } /* Uçuk Turuncu */
.edu-card.bg-hover-blue   { background-color: #f0f8ff; } /* Uçuk Mavi */
.edu-card.bg-hover-purple { background-color: #fbf5ff; } /* Uçuk Mor */
.edu-card.bg-hover-green  { background-color: #f0fdf4; } /* Uçuk Yeşil */

/* Hover (Üzerine Gelme) Durumunda Renkler Bir Tık Canlanır */
.edu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.edu-card.bg-hover-pink:hover   { background-color: #ffe4f0; }
.edu-card.bg-hover-orange:hover { background-color: #ffeed6; }
.edu-card.bg-hover-blue:hover   { background-color: #e6f3ff; }
.edu-card.bg-hover-purple:hover { background-color: #f4e8ff; }
.edu-card.bg-hover-green:hover  { background-color: #e2fceb; }

/* Üst Renk Çizgisi */
.edu-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

/* Kart Zeminleri Renkli Olduğu İçin, İkon Kutusunu Beyaz Yapıp Öne Çıkarıyoruz */
.edu-icon-box {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    background-color: #ffffff !important; /* BEMBEYAZ İKON KUTUSU */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Daha belirgin bir gölge */
}

.edu-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* Yazı Alanı */
.edu-card-body h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #2d3436;
}

.edu-card-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #636e72;
}

/* İncele Butonu */
.edu-read-more {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #ffffff; /* Buton da beyaz olup tatlı dursun */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.edu-card:hover .edu-read-more {
    gap: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}