        /* --- GENEL DEĞİŞKENLER --- */
        :root {
            --primary-green: #014131;
            --accent-teal: #42726d;
            --light-teal: #defbfd;
            --white: #ffffff;
            --text-dark: #333333;
            --dark-bg: #1a1a1a;
            --gold: #f39c12;
            --map-bg: #0b2f28;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body,
        input,
        button,
        textarea,
        select {
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        section {
            margin-bottom: 100px;
        }

        /* --- ÜNİVERSİTE LOGOLARI --- */
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 40px;
            max-width: 1000px;
            margin: 0 auto;
            align-items: center;
            justify-items: center;
        }

        .logo-item {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .uni-logo {
            max-width: 250px;
            height: auto;
            max-height: 100px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .uni-logo:hover {
            transform: scale(1.1);
        }

        .btn-more-uni {
            display: inline-block;
            background-color: #014131;
            color: #ffffff !important;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 45px;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
            transition: all 0.3s ease;
        }

        .btn-more-uni:hover {
            background-color: #42726d;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(1, 65, 49, 0.3);
        }

        /* --- HEADER & HERO BİRLEŞİMİ --- */
        .header-hero-wrapper {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            margin-bottom: 0;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.6);
        }

        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
        }

        .logo img {
            height: 70px;
            display: block;
        }

        .nav-center {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-left: auto;
            margin-right: 40px;
        }

        .nav-item {
            position: relative;
            padding: 10px 0;
            cursor: pointer;
        }

        .nav-link {
            color: var(--white);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: block;
        }

        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            width: 260px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-top: 3px solid var(--accent-teal);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 1001;
            text-align: left;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            text-transform: none;
            text-shadow: none;
        }

        .dropdown-menu li a:hover {
            background: #f0f8f7;
            color: var(--accent-teal);
            padding-left: 25px;
        }

        .nav-right {
            display: flex;
            gap: 15px;
        }

        .btn-auth {
            padding: 10px 20px;
            border: 2px solid var(--white);
            color: var(--white);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            background: transparent;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            transition: 0.3s;
        }

        .btn-auth:hover {
            background-color: var(--white);
            color: var(--primary-green);
            text-shadow: none;
            transform: translateY(-2px);
        }

        .hamburger-menu {
            display: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            z-index: 1;
            width: 90%;
            max-width: 1000px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .btn-hero-register {
            display: inline-block;
            padding: 18px 60px;
            background-color: var(--accent-teal);
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            box-shadow: 0 0 30px rgba(66, 114, 109, 0.8);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-hero-register:hover {
            background-color: var(--white);
            color: var(--primary-green);
            transform: translateY(-5px) scale(1.05);
        }

        /* --- STATS SECTION --- */
        .stats-section {
            padding: 0 5%;
            margin-top: -130px;
            margin-bottom: 100px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            display: flex;
            justify-content: space-between;
            padding: 30px 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 200px;
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
        }

        .stat-info {
            display: flex;
            flex-direction: column;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 700;
            text-transform: uppercase;
        }

        .stat-value {
            font-size: 1.2rem;
            color: var(--primary-green);
            font-weight: 800;
        }

        /* --- AKREDİTASYON BÖLÜMÜ (GÜNCEL STİL) --- */
        .accreditation-section {
            padding: 100px 5%;
            /* Üstten ve alttan daha fazla boşluk */
            background-color: #ffffff;
            /* Temiz beyaz arka plan */
            text-align: center;
        }

        .accreditation-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Başlık Alanı */
        .accreditation-header {
            margin-bottom: 60px;
            /* Başlık ile kartlar arası boşluk */
        }

        .accreditation-header h2 {
            font-size: 2.8rem;
            color: var(--primary-green, #014131);
            /* Koyu yeşil başlık */
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .accreditation-header p {
            font-size: 1.05rem;
            color: #555;
            /* Yumuşak gri metin */
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Kart Izgarası */
        .accreditation-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            /* Kartlar arası boşluk arttırıldı */
            margin-bottom: 60px;
            /* Kartlar ile buton arası boşluk */
        }

        /* Kartın Temel Yapısı (Görseldeki Gibi) */
        .accredit-card {
            position: relative;
            background-color: #467061;
            /* GÖRSELDEKİ TAM RENK TONU */
            border-radius: 40px;
            /* Görseldeki gibi çok yuvarlak köşeler */
            padding: 60px 30px;
            /* Daha dikey bir yapı için */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            /* Daha pürüzsüz animasyon */

            /* GÖRSELDEKİ YUMUŞAK GÖLGE */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: none;
            /* Kenarlık yok */
            overflow: hidden;
        }

        /* Logo (Görsel) Ayarları */
        .accredit-card img {
            max-width: 160px;
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: all 0.4s ease;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
        }

        /* Hover Yazı Tasarımı (Orta Hizalama) */
        .accredit-text {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            line-height: 1.3;
            opacity: 0;
            /* Başlangıçta gizli */
            transition: all 0.4s ease;
            transform: translateY(20px);
        }

        /* --- HOVER (Mouse Üzerindeyken) EFEKTLERİ --- */

        .accredit-card:hover {
            transform: translateY(-10px);
            /* Hafif yükselme */
            background-color: #35574b;
            /* Hoverda biraz daha koyu yeşil */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            /* Gölge derinleşir */
        }

        /* Üzerine gelince logo hafiflesin */
        .accredit-card:hover img {
            opacity: 0.15;
            transform: scale(0.85);
        }

        /* Üzerine gelince metin tam ortaya gelsin */
        .accredit-card:hover .accredit-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- DAHA FAZLA BUTONU (GÖRSELDEKİ STİL) --- */
        .accreditation-action {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .btn-accredit-solid {
            display: inline-block;
            background-color: #467061;
            /* Kartlarla aynı renk */
            color: #ffffff !important;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 18px 50px;
            /* Geniş ve dolgun buton */
            text-decoration: none;
            border-radius: 50px;
            /* Tam yuvarlak köşeler */

            /* GÖLGE VE GEÇİŞ */
            box-shadow: 0 10px 25px rgba(70, 112, 97, 0.2);
            transition: all 0.3s ease;
        }

        .btn-accredit-solid:hover {
            background-color: #35574b;
            /* Hoverda koyulaşma */
            transform: translateY(-3px);
            /* Hafif yükselme */
            box-shadow: 0 15px 30px rgba(70, 112, 97, 0.3);
        }

        /* --- BURLINGTON ENGLISH --- */
        .burlington-section {
            padding: 100px 5% 200px;
            margin-bottom: 0;
            background-color: #e9f9fa;
            overflow: hidden;
        }

        .burlington-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .burl-left {
            flex: 1;
        }

        .burl-left h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .burl-left p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btn-burlington {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-green);
            color: var(--white);
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
        }

        .btn-burlington:hover {
            background: var(--accent-teal);
            transform: translateY(-3px);
        }

        .burl-right {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: flex-end;
            padding-bottom: 40px;
        }

        .burl-img-box {
            width: 90%;
            height: 420px;
            border-radius: 30px 140px 30px 140px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .burl-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .burl-overlap-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: #ffffff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            width: 300px;
            z-index: 2;
        }

        .burl-overlap-card h4 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .burl-list {
            list-style: none;
            padding: 0;
        }

        .burl-list li {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .burl-list li i {
            color: var(--accent-teal);
            font-size: 1.1rem;
        }

        /* --- YENİ REELS (DİKEY VİDEO) TESTIMONIALS BÖLÜMÜ --- */
        .testimonials-section {
            padding: 100px 5%;
            margin-bottom: 0;
            background: #1e1e1e;
            text-align: center;
            color: #ffffff;
            position: relative;
        }

        .testi-header {
            margin-bottom: 60px;
        }

        .testi-header h4 {
            color: #4db6ac;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .testi-header h2 {
            font-family: 'Inter', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
        }

        .testimonial-slider-wrapper {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .testi-card.reel-style {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transform: scale(1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testi-card.reel-style:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .reel-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .testi-card.reel-style:hover .reel-thumbnail {
            transform: scale(1.05);
        }

        .reel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            color: #1e1e1e;
            font-size: 1.2rem;
            padding-left: 4px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .testi-card.reel-style:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.15);
            background: #ffffff;
            color: var(--primary-green, #014131);
        }

        .reel-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 3;
            text-align: left;
        }

        .reel-name {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reel-flag {
            width: 24px !important;
            height: 16px !important;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            object-fit: cover;
            display: block;
        }

        /* --- OK TASARIMLARI --- */
        .custom-nav-btn {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.15);
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            margin-top: -25px !important;
            z-index: 50 !important;
            cursor: pointer !important;
            pointer-events: auto !important;
        }

        .custom-nav-btn::after {
            font-size: 1.2rem !important;
            font-weight: 900 !important;
        }

        .swiper-button-prev.custom-nav-btn {
            left: 0 !important;
        }

        .swiper-button-next.custom-nav-btn {
            right: 0 !important;
        }

        .custom-nav-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        /* --- BASINDA BİZ --- */
        .press-badge {
            display: inline-block;
            background-color: var(--primary-green, #014131);
            color: #ffffff;
            font-weight: 400;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 12px;
            margin-bottom: 15px;
            border-radius: 5px;
            line-height: 1;
            transform: skewX(-6deg);
        }

        .press-detail-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            font-weight: 400;
            font-size: 1.05rem;
            color: var(--primary-green, #014131);
            text-decoration: none;
            border-bottom: 1px solid var(--accent-teal, #42726d);
            padding-bottom: 3px;
            transition: all 0.3s ease;
            transform: skewX(-6deg);
        }

        .press-detail-link:hover {
            color: var(--accent-teal, #42726d);
            gap: 15px;
        }

        .press-section {
            padding: 80px 5%;
            background: var(--white);
        }

        .press-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .press-video {
            flex: 1;
        }

        .press-video iframe {
            width: 100%;
            height: 350px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 5px solid var(--primary-green);
        }

        .press-content {
            flex: 1;
        }

        .press-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-dark);
            font-weight: 800;
            line-height: 1.2;
        }

        .press-content p {
            font-size: 1.2rem;
            font-style: italic;
            color: #2e7d32;
            border-left: 5px solid var(--accent-teal);
            padding-left: 20px;
            line-height: 1.6;
        }

        /* --- ORGANİK DUAL DIPLOMA BÖLÜMÜ --- */
        .organic-dual-section {
            background-color: #ffffff;
            padding: 100px 5%;
            margin-bottom: 100px;
            overflow: hidden;
        }

        .organic-dual-container {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .organic-text-side {
            flex: 1;
            max-width: 550px;
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .organic-subtitle {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-teal, #42726d);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .organic-text-side h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark, #333333);
            line-height: 1.15;
            margin-bottom: 25px;
        }

        .organic-text-side p {
            font-size: 1.15rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .organic-btn {
            align-self: flex-end;
            background: linear-gradient(135deg, var(--primary-green, #014131), var(--accent-teal, #42726d));
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 15px 30px rgba(1, 65, 49, 0.3);
            transition: all 0.3s ease;
        }

        .organic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(1, 65, 49, 0.4);
        }

        .organic-image-side {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 600px;
        }

        .organic-blob {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 480px;
            height: 480px;
            background-color: var(--primary-green, #014131);
            opacity: 0.12;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            animation: morphBlob 8s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes morphBlob {
            0% {
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }

            50% {
                border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
            }

            100% {
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
        }

        .organic-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 580px;
            height: 580px;
            border: 2px dashed rgba(66, 114, 109, 0.3);
            border-radius: 50%;
            z-index: 2;
            animation: spinRing 40s linear infinite;
        }

        @keyframes spinRing {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .organic-circle-wrapper {
            position: relative;
            z-index: 5;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background-color: #ffffff;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 12px solid #ffffff;
        }

        .organic-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 45% 65%;
            transform: scale(1.3);
        }

        .float-icon {
            position: absolute;
            width: 75px;
            height: 75px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-green, #014131);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            z-index: 10;
        }

        .fi-1 {
            top: 8%;
            right: 15%;
            animation: floatY 3s infinite alternate;
        }

        .fi-2 {
            bottom: 15%;
            right: 2%;
            animation: floatY 4s infinite alternate-reverse;
        }

        .fi-3 {
            bottom: 0;
            left: 12%;
            animation: floatY 3.5s infinite alternate;
        }

        @keyframes floatY {
            0% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(-15px);
            }
        }

        /* --- ORTAOKUL (8. SINIF) BÖLÜMÜ --- */
        .middle-school-section {
            padding: 100px 5%;
            background-color: #ffffff;
            overflow: hidden;
        }

        .middle-school-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .ms-text-content {
            flex: 1;
        }

        .ms-text-content h2 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary-green, #014131);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .ms-text-content p {
            font-size: 1.15rem;
            color: #555555;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .btn-ms-detail {
            display: inline-block;
            background-color: var(--primary-green, #014131);
            color: #ffffff !important;
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 12px 30px rgba(1, 65, 49, 0.25);
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-ms-detail:hover {
            background-color: var(--accent-teal, #42726d);
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(1, 65, 49, 0.4);
        }

        .ms-image-content {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            min-height: 500px;
        }

        .ms-green-shape {
            position: absolute;
            bottom: 0;
            right: 5%;
            width: 85%;
            height: 85%;
            background-color: var(--primary-green, #014131);
            border-radius: 40px 100px 40px 40px;
            z-index: 1;
        }

        .ms-student-img {
            position: relative;
            z-index: 2;
            max-width: 90%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .ms-floating-box {
            position: absolute;
            background-color: #ffffff;
            padding: 14px 28px;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            border: 2px solid var(--primary-green, #014131);
            z-index: 3;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--primary-green, #014131);
            white-space: nowrap;
        }

        .ms-floating-box.box-1 {
            top: 15%;
            left: -10%;
            animation: floatY 4s infinite alternate ease-in-out;
        }

        .ms-floating-box.box-2 {
            top: 30%;
            right: -15%;
            animation: floatY 5s infinite alternate-reverse ease-in-out;
        }

        .ms-floating-box.box-3 {
            bottom: 25%;
            left: -5%;
            animation: floatY 3.5s infinite alternate ease-in-out;
        }

        /* --- NASIL ÇALIŞIR? --- */
        .how-interactive-section {
            padding: 100px 5%;
            background: #f4f8f7;
            text-align: center;
            margin-bottom: 0;
            overflow-x: hidden;
        }

        .how-interactive-header h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .how-interactive-header p {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .hiw-slider-wrapper {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
        }

        .hiw-nav-btn {
            display: none;
        }

        .hiw-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1300px;
            margin: 0 auto;
            height: 450px;
        }

        .hiw-grid-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }

        .hiw-grid-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .hiw-item-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.6s ease;
        }

        .hiw-grid-item:hover .hiw-item-bg,
        .hiw-grid-item.active .hiw-item-bg {
            transform: scale(1.1);
        }

        .hiw-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(1, 65, 49, 1) 0%, rgba(1, 65, 49, 0.7) 35%, transparent 65%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px 20px;
            color: white;
            text-align: left;
            transition: background 0.4s;
        }

        .hiw-grid-item.active .hiw-item-overlay {
            background: rgba(1, 65, 49, 0.85);
            justify-content: center;
        }

        .hiw-item-header {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .hiw-num {
            font-size: 1rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .hiw-item-title {
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .hiw-item-click-hint {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 10px;
            font-style: italic;
            transition: 0.3s;
        }

        .hiw-item-details {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .hiw-grid-item.active .hiw-item-details {
            max-height: 300px;
            opacity: 1;
            margin-top: 20px;
        }

        .hiw-grid-item.active .hiw-item-click-hint {
            display: none;
        }

        .hiw-item-details p {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .hiw-item-details ul {
            list-style: none;
            padding: 0;
        }

        .hiw-item-details li {
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .hiw-item-details li i {
            color: var(--gold);
            margin-top: 4px;
        }

        /* --- NASIL KAYIT OLABİLİRİM CTA --- */
        .enroll-cta-section {
            padding: 0 5% 100px;
            background: #ffffff;
        }

        .enroll-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .enroll-cta-text {
            flex: 1.1;
            text-align: left;
        }

        .enroll-cta-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .enroll-cta-text p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .enroll-cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 15px 30px rgba(1, 65, 49, 0.3);
            transition: all 0.3s ease;
        }

        .enroll-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(1, 65, 49, 0.4);
        }

        .enroll-cta-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .enroll-cta-media {
            position: relative;
            width: 100%;
            max-width: 560px;
        }

        .enroll-cta-backdrop {
            position: absolute;
            top: 20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background-color: rgba(1, 65, 49, 0.1);
            border-radius: 30px;
            z-index: 1;
        }

        .enroll-cta-video {
            position: relative;
            z-index: 2;
            display: block;
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 900px) {
            .enroll-cta-container {
                flex-direction: column;
                text-align: center;
            }

            .enroll-cta-text {
                text-align: center;
            }

            .enroll-cta-media {
                max-width: 100%;
                margin: 0 auto;
            }
        }

        /* --- BLOG BÖLÜMÜ --- */
        .blog-section {
            padding: 200px 5% 100px;
            background-color: #fafcfc;
        }

        .blog-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .blog-section-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
        }

        .blog-slider-wrapper {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .blog-swiper {
            padding: 20px 0 !important;
        }

        .blog-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eeeeee;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: grab;
        }

        .blog-card:active {
            cursor: grabbing;
        }

        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(1, 65, 49, 0.3);
        }

        .blog-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            border-bottom: 1px solid #f5f5f5;
        }

        .blog-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 25px 30px 35px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-date {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-green, #014131);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary-green, #014131);
            line-height: 1.4;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-excerpt {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-nav-btn {
            color: var(--primary-green, #014131) !important;
            background: #ffffff;
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-top: -25px !important;
            z-index: 10;
            border: 1px solid #eee;
        }

        .blog-nav-btn::after {
            font-size: 1.2rem !important;
            font-weight: 900 !important;
        }

        .blog-nav-btn:hover {
            background: var(--primary-green, #014131);
            color: #ffffff !important;
            transform: scale(1.1);
            border-color: transparent;
        }

        .blog-button-prev {
            left: -10px !important;
        }

        .blog-button-next {
            right: -10px !important;
        }

        .blog-action-area {
            text-align: center;
            margin-top: 60px;
        }

        .btn-all-details {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: transparent;
            color: var(--primary-green, #014131);
            font-size: 1.05rem;
            font-weight: 700;
            padding: 16px 45px;
            border: 2px solid var(--primary-green, #014131);
            border-radius: 50px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-all-details:hover {
            background-color: var(--primary-green, #014131);
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(1, 65, 49, 0.2);
        }

        .btn-all-details:hover i {
            transform: translateX(5px);
        }

        /* --- MİNİMAL VE ÖZEL İLETİŞİM BÖLÜMÜ --- */
        .contact-us-section {
            padding: 100px 5%;
            background-color: #fafcfc;
            margin-bottom: 100px;
        }

        .contact-wrapper {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .contact-info-side {
            flex: 1;
        }

        .contact-info-side h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-dark, #333);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .contact-desc {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 50px;
            max-width: 90%;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-green, #014131);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
            transition: transform 0.3s ease;
        }

        .info-item:hover .info-icon {
            transform: scale(1.1);
        }

        .info-text h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 3px;
        }

        .info-text p {
            font-size: 0.95rem;
            color: #555;
            margin: 0;
        }

        .contact-form-side {
            flex: 1.2;
        }

        .form-card-minimal {
            background: #ffffff;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .form-badge {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-green, #014131);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .form-card-minimal h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 40px;
        }

        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* KUTU VE ETİKET KAYMASINI DÜZELTEN ALAN */
        .floating-group {
            position: relative;
            margin-bottom: 35px;
            margin-top: 20px;
            /* Üstteki öğe ile çakışmasını engeller */
        }

        .floating-group input,
        .floating-group select,
        .floating-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid #e0e0e0;
            padding: 10px 0 5px 0;
            font-size: 1rem;
            color: #333;
            outline: none;
            transition: all 0.3s ease;
        }

        .select-group {
            position: relative;
        }

        .select-group select {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            color: transparent;
        }

        .select-group select:focus,
        .select-group select:valid {
            color: #333;
        }

        .custom-arrow {
            position: absolute;
            right: 5px;
            top: 15px;
            color: #aaa;
            pointer-events: none;
            transition: 0.3s;
        }

        .select-group select:focus~.custom-arrow {
            color: var(--primary-green, #014131);
            transform: rotate(180deg);
        }

        .floating-group textarea {
            resize: vertical;
            min-height: 40px;
        }

        .floating-group input:focus,
        .floating-group select:focus,
        .floating-group textarea:focus {
            border-bottom-color: var(--primary-green, #014131);
        }

        .floating-group label {
            position: absolute;
            top: 10px;
            left: 0;
            font-size: 0.95rem;
            color: #999;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .floating-group input:focus~label,
        .floating-group input:not(:placeholder-shown)~label,
        .floating-group select:focus~label,
        .floating-group select:valid~label,
        .floating-group textarea:focus~label,
        .floating-group textarea:not(:placeholder-shown)~label {
            top: -20px;
            font-size: 0.8rem;
            color: var(--primary-green, #014131);
            font-weight: 600;
        }

        .btn-send-minimal {
            background-color: var(--primary-green, #014131);
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            padding: 15px 40px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-send-minimal:hover {
            background-color: var(--accent-teal, #42726d);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(1, 65, 49, 0.2);
        }

        /* --- WHATSAPP SABİT BUTON --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 1500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 2.5s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        @keyframes whatsapp-pulse {
            0% {
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 18px;
                right: 18px;
            }
        }

        /* Mobil Menü Overlay Tasarımı */

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            /* Başlangıçta gizli */
            width: 100%;
            height: 100%;
            background-color: var(--primary-green);
            z-index: 2000;
            transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            display: flex;
            flex-direction: column;
            padding: 40px 10% 80px;
            overflow-y: auto;
        }

        .mobile-menu-overlay.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .close-mobile-menu {
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
        }

        .mobile-nav-link {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 20px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        .mobile-dropdown.active {
            max-height: 500px;
            margin-top: 15px;
            padding: 15px 20px;
        }

        .mobile-dropdown li {
            margin-bottom: 12px;
        }

        .mobile-dropdown li a {
            color: #4db6ac;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .mobile-auth-btns {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-auth-btns .btn-auth {
            text-align: center;
            padding: 15px;
            font-size: 1rem;
        }

        /* Mevcut hamburger butonunu görünür kılın */
        @media (max-width: 992px) {
            .hamburger-menu {
                display: block !important;
                position: relative;
                z-index: 1001;
            }
        }

        /* --- FOOTER --- */
        footer {
            background-color: #1a1e22;
            color: #b0b0b0;
            padding: 80px 5% 60px;
            position: relative;
            margin-top: 0;
        }

        /* Harita section'ı ile footer arasında kalan boşluğu haritanın
           arka plan rengiyle kapatır. */
        footer::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: -140px;
            height: 140px;
            background-color: #ffffff;
        }

        @media (max-width: 768px) {
            footer::before {
                top: -70px;
                height: 70px;
            }
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #b0b0b0;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--accent-teal);
            padding-left: 5px;
        }

        .footer-logo {
            width: 210px;
            /* Mevcut genişliğin */
            display: block;
            margin-top: -35px;
            margin-left: -45px;
            margin-bottom: 15px;
            padding: 0;
        }

        .footer-col:first-child {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-top: 0;
        }


        .miami-address {
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .miami-address p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #999;
        }

        .miami-address p strong {
            color: #d0d0d0;
            font-weight: 600;
        }

        .footer-plus-icon {
            color: #4db6ac;
            font-size: 3rem;
            opacity: 0.8;
            font-weight: bold;
            transform: rotate(15deg);
            display: inline-block;
            margin-top: -10px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .footer-socials a {
            width: 45px;
            height: 45px;
            background: #000000;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 1.3rem;
            transition: 0.3s ease;
        }

        .footer-socials a:hover {
            transform: translateY(-3px);
            background: var(--accent-teal);
        }

        /* --- KAYIT FORMU MODAL --- */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 900px;
            padding: 40px;
            border-radius: 10px;
            position: relative;
            animation: slideDown .35s ease;
            margin: auto;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #555;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }

        .form-header h2 {
            color: var(--primary-green);
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: .5px;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-35px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }


        /* --- VİDEO MODAL ÖZEL STİLLERİ (YENİ) --- */
        .video-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .85);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .video-modal-content {
            width: 100%;
            max-width: 800px;
            position: relative;
            background: #000;
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            overflow: visible;
        }

        .close-video-modal {
            position: absolute;
            top: -45px;
            right: -10px;
            font-size: 2.5rem;
            color: #fff;
            cursor: pointer;
            line-height: 1;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            border-radius: 12px;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* --- WEBINAR POPUP --- */
        .webinar-popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(4, 20, 16, 0.78);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 10500;
            align-items: flex-start;
            justify-content: center;
            padding: 110px 20px 20px;
            overflow-y: auto;
        }

        @media (max-width: 992px) {
            .webinar-popup-overlay {
                padding-top: 90px;
            }
        }

        .webinar-popup-wrapper {
            position: relative;
            width: 100%;
            max-width: 900px;
            animation: wpEnter .45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes wpEnter {
            from {
                opacity: 0;
                transform: translateY(-24px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .webinar-popup-card {
            width: 100%;
            background: var(--light-teal);
            border-radius: 26px;
            overflow: hidden;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(1, 65, 49, 0.25);
        }

        .webinar-popup-close {
            position: absolute;
            top: -16px;
            right: -16px;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #ffffff;
            font-size: 1.4rem;
            line-height: 1;
            color: var(--primary-green);
            cursor: pointer;
            z-index: 5;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .webinar-popup-close:hover {
            background: var(--accent-teal);
            color: #fff;
            transform: scale(1.08) rotate(90deg);
        }

        .wp-left {
            flex: 1;
            position: relative;
            background: linear-gradient(160deg, rgba(11, 47, 40, 0.45) 0%, rgba(1, 65, 49, 0.45) 100%),
                url('../P6280138.JPG') center 25%/cover no-repeat;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            overflow: hidden;
        }

        .wp-left::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(1, 65, 49, 0.95) 0%, rgba(1, 65, 49, 0.65) 22%, rgba(1, 65, 49, 0) 50%);
            z-index: 1;
        }

        .wp-speaker-tag {
            position: absolute;
            top: 22px;
            left: 22px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.97);
            border-radius: 50px;
            padding: 7px 16px 7px 7px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
        }

        .wp-speaker-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }

        .wp-speaker-tag strong {
            display: block;
            font-size: 0.82rem;
            color: var(--primary-green);
            font-weight: 800;
        }

        .wp-speaker-tag span {
            display: block;
            font-size: 0.68rem;
            color: #667;
            font-weight: 600;
        }

        .wp-left-text {
            position: relative;
            z-index: 2;
        }

        .wp-left-text .wp-kicker {
            display: inline-block;
            color: #ffffff;
            background: linear-gradient(135deg, #ff7a45, #f2542d);
            font-weight: 800;
            font-size: 0.78rem;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
            box-shadow: 0 6px 16px rgba(242, 84, 45, 0.4);
        }

        .wp-left-text h3 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.32;
            letter-spacing: 0.2px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        }

        .wp-right {
            flex: 1;
            background: linear-gradient(165deg, #ffffff 0%, #f6faf9 100%);
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .wp-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            position: absolute;
            top: 22px;
            right: 26px;
        }

        .wp-brand img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .wp-brand span {
            font-size: 0.62rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1.25;
            letter-spacing: 0.3px;
        }

        .wp-date-row {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 20px;
            padding-bottom: 18px;
            border-bottom: 1px solid #eef2f1;
        }

        .wp-week-left {
            display: inline-block;
            max-width: calc(100% - 90px);
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--primary-green);
            line-height: 1.3;
        }

        .wp-date-box {
            text-align: center;
            line-height: 1;
            background: linear-gradient(160deg, #f4faf8, var(--light-teal));
            border-radius: 16px;
            padding: 10px 16px;
            box-shadow: inset 0 0 0 1px rgba(1, 65, 49, 0.08);
        }

        .wp-date-box .wp-day {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--primary-green);
        }

        .wp-date-box .wp-month {
            display: block;
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--accent-teal);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 2px;
        }

        .wp-date-info strong {
            display: block;
            font-size: 1.15rem;
            color: var(--text-dark);
            font-weight: 800;
        }

        .wp-date-info span {
            font-size: 0.95rem;
            color: #666;
            font-weight: 600;
        }

        .wp-list {
            margin-bottom: 20px;
        }

        .wp-list li {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            font-size: 0.92rem;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .wp-list li i {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            margin-top: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(66, 114, 109, 0.12);
            color: var(--accent-teal);
            font-size: 0.68rem;
        }

        .wp-free-line {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .wp-free-text {
            display: inline;
        }

        .wp-free-line strong {
            color: #f2542d;
            font-weight: 800;
        }

        .wp-asterisk {
            font-size: 1.3rem;
            line-height: 1;
            margin-top: 2px;
            color: #f2542d;
            transform: rotate(8deg);
        }

        .wp-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            align-self: flex-start;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
            color: #fff !important;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 14px 28px rgba(1, 65, 49, 0.3);
            transition: all 0.3s ease;
        }

        .wp-cta i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .wp-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 34px rgba(1, 65, 49, 0.4);
        }

        .wp-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .wp-cta-secondary {
            background: transparent;
            color: var(--primary-green) !important;
            border: 2px solid var(--primary-green);
            box-shadow: none;
        }

        .wp-cta-secondary:hover {
            background: var(--primary-green);
            color: #fff !important;
            box-shadow: 0 14px 28px rgba(1, 65, 49, 0.25);
        }

        .wp-cta:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 700px) {
            .webinar-popup-card {
                flex-direction: column;
                max-height: 90vh;
                overflow-y: auto;
            }

            .wp-left {
                min-height: 200px;
                padding: 24px;
            }

            .wp-right {
                padding: 28px;
            }
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {

            .nav-center,
            .nav-right {
                display: none;
            }

            .hamburger-menu {
                display: block;
            }

            .nav-links.active {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                padding: 12px 5%;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
                border-top: 1px solid #eee;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .organic-dual-container {
                flex-direction: column;
                text-align: center;
            }

            .organic-text-side {
                max-width: 100%;
                text-align: center;
            }

            .organic-text-side h2 {
                font-size: 2.8rem;
            }

            .organic-image-side {
                min-height: 450px;
                margin-bottom: 30px;
            }

            .organic-ring {
                width: 380px;
                height: 380px;
            }

            .organic-circle-wrapper {
                width: 300px;
                height: 300px;
                border-width: 8px;
            }

            .organic-blob {
                width: 340px;
                height: 340px;
            }

            .float-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .fi-1 {
                top: 0;
                right: 5%;
            }

            .fi-2 {
                bottom: 10%;
                right: -5%;
            }

            .fi-3 {
                bottom: 0;
                left: 5%;
            }

            .hiw-grid {
                display: flex;
                grid-template-columns: unset;
                height: auto;
                gap: 0;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 0 11% 5px;
            }

            .hiw-grid::-webkit-scrollbar {
                display: none;
            }

            .hiw-grid-item {
                flex: 0 0 78%;
                width: 78%;
                height: 48vh;
                max-height: 400px;
                scroll-snap-align: center;
            }

            .hiw-grid-item.active {
                height: 48vh;
                max-height: 400px;
                min-height: unset;
            }

            .hiw-item-overlay,
            .hiw-grid-item.active .hiw-item-overlay {
                justify-content: flex-end !important;
            }

            .hiw-item-overlay {
                background: linear-gradient(to top, rgba(1, 65, 49, 1) 0%, rgba(1, 65, 49, 0.75) 22%, transparent 42%);
                padding: 18px 20px;
            }

            /* Kart açıldığında detay metni yukarı doğru genişlesin,
               başlık/numara/"Dokunun" yazısı hep en altta sabit kalsın. */
            .hiw-item-header {
                order: 2;
            }

            .hiw-item-details {
                order: 1;
                max-height: 30vh;
                overflow-y: auto;
            }

            .hiw-nav-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 34px;
                height: 34px;
                border-radius: 50%;
                background: rgba(1, 65, 49, 0.6);
                color: #fff;
                border: none;
                font-size: 0.95rem;
                z-index: 5;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
                cursor: pointer;
            }

            .hiw-nav-prev {
                left: 6px;
            }

            .hiw-nav-next {
                right: 6px;
            }

            .middle-school-container {
                flex-direction: column;
                text-align: center;
            }

            .ms-image-content {
                margin-top: 60px;
                width: 100%;
                min-height: 380px;
            }

            .ms-green-shape {
                width: 80%;
                height: 78%;
                right: 0;
            }

            .ms-student-img {
                max-width: 85%;
            }

            .ms-floating-box {
                font-size: 0.85rem;
                padding: 10px 18px;
            }

            .ms-floating-box.box-1 {
                top: 5%;
                left: 0;
            }

            .ms-floating-box.box-2 {
                top: 15%;
                right: 0;
            }

            .ms-floating-box.box-3 {
                bottom: 10%;
                left: 5%;
            }

            .blog-slider-wrapper {
                padding: 0 10px;
            }

            .blog-nav-btn {
                display: none !important;
            }

            .blog-section-header h2 {
                font-size: 2.2rem;
            }

            .contact-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .contact-info-side {
                text-align: center;
            }

            .contact-desc {
                margin: 0 auto 40px;
            }

            .info-list {
                align-items: flex-start;
                display: inline-flex;
                text-align: left;
            }

            .form-card-minimal {
                padding: 40px 25px;
            }

            .burlington-container {
                flex-direction: column;
                text-align: center;
            }

            .burl-right {
                width: 100%;
                padding-bottom: 80px;
                justify-content: center;
                margin-top: 40px;
            }

            .burl-img-box {
                border-radius: 30px 100px 30px 100px;
                width: 100%;
                height: 350px;
            }

            .burl-overlap-card {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
                bottom: 0;
                width: 90%;
                max-width: 320px;
            }

            .press-container {
                flex-direction: column;
            }

            .press-video iframe {
                height: 250px;
            }

            .stats-container {
                justify-content: center;
            }

            .stat-item {
                flex: 0 0 45%;
                margin-bottom: 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-col h4 {
                margin-bottom: 15px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-full {
                grid-column: span 1;
            }
        }

        @media (max-width: 576px) {
            .logo-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px 10px;
            }

            .uni-logo {
                max-width: 90px;
            }

            .accreditation-grid {
                grid-template-columns: 1fr;
            }

            .form-row-2 {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .contact-info-side h2 {
                font-size: 2.2rem;
            }
        }

        .btn-lang {
            padding: 8px 12px;
            border: 2px solid var(--white);
            border-radius: 50px;
            background: transparent;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
        }

        .btn-lang:hover {
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
        }

        /* --- HER YERDE / WORLD PRESENCE --- */
        .world-presence-section {
            padding: 100px 5% 100px;
            margin-bottom: 0;
            background-color: #e9f9fa;
            text-align: center;
            overflow: hidden;
        }

        .world-presence-header {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .world-presence-header .organic-subtitle {
            color: var(--accent-teal, #42726d);
        }

        .world-presence-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark, #333);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .world-presence-header p {
            font-size: 1.1rem;
            color: #666666;
            line-height: 1.6;
        }

        .world-map-wrapper {
            position: relative;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            max-width: none;
            aspect-ratio: 2 / 1;
            margin-bottom: 60px;
        }

        .world-map-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .map-pin {
            position: absolute;
            transform: translate(-50%, -100%);
            z-index: 2;
            line-height: 1;
            opacity: 0;
            animation: pinIntro 0.32s ease-out forwards;
        }

        @keyframes pinIntro {
            from {
                opacity: 0;
                transform: translate(-50%, -60%) scale(0.3);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -100%) scale(1);
            }
        }

        .map-pin:hover {
            z-index: 50;
        }

        .map-pin>i {
            display: inline-block;
            font-size: 1.3rem;
            color: #a6bdb7;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
            transition: transform 0.25s ease;
            cursor: pointer;
        }

        .map-pin:hover>i {
            transform: scale(1.35);
        }

        .pin-card {
            position: absolute;
            bottom: 100%;
            left: 50%;
            width: 170px;
            background: var(--white);
            border-radius: 28px 28px 50% 50% / 28px 28px 60% 60%;
            overflow: hidden;
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
            padding-bottom: 22px;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transform: translate(-50%, 8px) scale(0.92);
            transform-origin: bottom center;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .map-pin:hover .pin-card,
        .map-pin.pin-forced-open .pin-card {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -10px) scale(1);
        }

        .pin-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
            border-radius: 28px 28px 0 0;
        }

        .pin-card-name {
            display: block;
            color: var(--primary-green, #014131);
            font-weight: 800;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 12px 10px 10px;
            line-height: 1.3;
        }

        .pin-card-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pin-card-globe {
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary-green, #014131);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green, #014131);
            font-size: 0.85rem;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .pin-card-globe:hover {
            background: var(--primary-green, #014131);
            color: var(--white);
            transform: scale(1.12);
        }

        .world-countries-list {
            max-width: 1050px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 8px;
        }

        a.country-tag {
            display: inline-block;
            color: var(--primary-green, #014131);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 4px 10px;
            background: none;
            border: none;
            text-decoration: none;
            cursor: pointer;
            transition: 0.25s;
        }

        a.country-tag:hover {
            color: var(--accent-teal, #42726d);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .world-presence-header h2 {
                font-size: 2.2rem;
            }

            .world-map-wrapper {
                aspect-ratio: auto;
                height: auto;
                overflow: visible;
            }

            .world-map-img {
                position: relative;
                inset: auto;
                width: 100%;
                height: auto;
                aspect-ratio: 2 / 1;
                object-fit: contain;
            }

            .map-pin>i {
                font-size: 1rem;
            }

            .pin-card {
                width: 140px;
            }

            .pin-card img {
                height: 110px;
            }
        }