.elementor-41 .elementor-element.elementor-element-6807bb8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ELEMENTOR OVERRIDES ===== */
/* Elementor container padding override */
.elementor-element.elementor-element-f0bd606,
.elementor-element.elementor-element-f0bd606.e-con-full,
.elementor-element.elementor-element-f0bd606.e-con-full.e-flex,
.elementor-element.elementor-element-f0bd606.e-con-full.e-flex.e-con,
.elementor-element.elementor-element-f0bd606.e-con-full.e-flex.e-con.e-parent,
.elementor-element.elementor-element-f0bd606.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    padding: 0 !important;
}

/* General Elementor container padding removal */
.elementor-element.e-con-full,
.elementor-element.e-con-full.e-flex,
.elementor-element.e-con-full.e-flex.e-con,
.elementor-element.e-con-full.e-flex.e-con.e-parent {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Elementor section padding override */
.elementor-section.elementor-section-boxed > .elementor-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Elementor column padding override */
.elementor-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Elementor widget padding override */
.elementor-widget {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #0B1220;
    background: #F0FAF8;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 50%, #F0FAF8 100%);
    color: #0B1220;
    padding: 15px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(31, 58, 95, 0.1);
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF8888" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Info Strip */
.top-header-left .info-strip {
    display: flex;
    align-items: center;
    gap: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

/* Bu sınıf CSS hover ile çalışıyor */

.info-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
}

.info-item i {
    font-size: 14px;
    color: #059669;
    width: 16px;
    text-align: center;
}

.info-item span {
    font-weight: 500;
    color: #0B1220;
}

.info-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #FF8888, transparent);
    margin: 0 8px;
}

/* Right Side - Social & Language */
.top-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    color: #0B1220;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

/* Bu sınıf CSS hover ile çalışıyor */

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.social-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.social-link:hover i {
    transform: scale(1.1);
}

/* Language Selector */
.language-body.elementor-page-41 {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #0B1220;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

/* Bu sınıf CSS hover ile çalışıyor */

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-text {
    font-weight: 600;
}

.lang-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang-btn:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #0B1220;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.lang-option img {
    width: 20px;
    height: 15px;
    border-radius: 3px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* ===== LOGO SECTION ===== */
.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    color: #059669;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 18px;
    font-weight: 600;
    color: #F97316;
    margin-top: -2px;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #0B1220;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

/* Bu sınıf CSS hover ile çalışıyor */

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN PANELS ===== */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

/* Bu sınıf JavaScript ile ekleniyor */

.nav-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dropdown-section h4 {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section li {
    margin-bottom: 8px;
}

.dropdown-section a {
    color: #0B1220;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Bu sınıf CSS hover ile çalışıyor */

.dropdown-section a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.dropdown-section a i {
    color: #059669;
    font-size: 12px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: #0B1220;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Bu sınıf CSS hover ile çalışıyor */

.dropdown-item:hover {
    background: rgba(255, 136, 136, 0.05);
    border-color: rgba(5, 150, 105, 0.2);
    transform: translateY(-2px);
}

.dropdown-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.dropdown-item div h4 {
    color: #059669;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dropdown-item div p {
    color: #64748B;
    font-size: 13px;
    margin: 0;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section li {
    margin-bottom: 10px;
}

.dropdown-section a {
    color: #0B1220;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-section a:hover {
    color: #059669;
}

.dropdown-section a i {
    color: #059669;
    font-size: 12px;
}

/* Service Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 136, 136, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #0B1220;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.2);
    transform: translateY(-3px);
}

.dropdown-item i {
    font-size: 24px;
    color: #059669;
    width: 40px;
    text-align: center;
}

.dropdown-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0B1220;
}

.dropdown-item p {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF193 0%, #FF8888 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

/* Bu sınıf CSS hover ile çalışıyor */

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 136, 136, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.cta-button:hover i {
    transform: translateX(3px);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FF8888;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    margin: 4px 0;
}

/* Bu sınıf CSS hover ile çalışıyor */

.mobile-menu-btn:hover {
    background: rgba(5, 150, 105, 0.1);
}

.mobile-menu-btn:hover .hamburger-line {
    background: #FF8888;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
}

/* Bu sınıf JavaScript ile ekleniyor */

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.mobile-logo .logo-text {
    color: white;
}

.mobile-logo .logo-main {
    font-size: 22px;
    color: white;
}

.mobile-logo .logo-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Bu sınıf CSS hover ile çalışıyor */

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-nav {
    padding: 25px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-list li {
    margin-bottom: 5px;
}

.mobile-nav-list a {
    color: #0B1220;
    text-decoration: none;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Bu sınıf CSS hover ile çalışıyor */

.mobile-nav-list a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    transform: translateX(5px);
}

.mobile-nav-list a i {
    width: 20px;
    color: #059669;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    color: #0B1220;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

/* Bu sınıf CSS hover ile çalışıyor */

.mobile-dropdown-btn:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.mobile-dropdown-btn i:first-child {
    width: 20px;
    color: #059669;
}

.mobile-dropdown-list {
    list-style: none;
    padding-left: 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Bu sınıf JavaScript ile ekleniyor */

.mobile-dropdown-list a {
    padding: 12px 20px;
    font-size: 14px;
    color: #64748B;
    transition: all 0.3s ease;
}

.mobile-dropdown-list a:hover {
    color: #059669;
    background: rgba(255, 136, 136, 0.05);
    padding-left: 25px;
}

.mobile-actions {
    padding: 20px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0B1220;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    background: rgba(255, 136, 136, 0.05);
    transition: all 0.3s ease;
}

.mobile-contact a:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.mobile-contact a i {
    color: #059669;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* ===== COURSES HERO SECTION ===== */
.courses-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.courses-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(200px, -200px);
}

.courses-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.08;
    transform: translate(-150px, 150px);
}



/* Main Hero Content */
.courses-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side */
.hero-left {
    color: #0B1220;
    max-width: 600px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0B1220;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 25px;
    text-align: justify;
}

.hero-description:last-of-type {
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
    background: white;
    color: #059669;
    border: 2px solid #FF8888;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: #FF8888;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3);
}

/* Right Side */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.hero-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
}

.cta-icon {
    font-size: 60px;
    color: #059669;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B1220;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid #f1f3f4;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #059669;
    display: block;
    line-height: 1;
}

.cta-stat .stat-label {
    font-size: 12px;
    color: #64748B;
    margin-top: 8px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    min-width: 200px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
    color: white;
    text-decoration: none;
}

/* ===== KAPITO ABOUT SECTION ===== */
.kapito-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F3A5F 0%, #0B1220 100%);
    position: relative;
    overflow: hidden;
}

.kapito-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 50%;
    opacity: 0.08;
    transform: translate(-150px, -150px);
}

.kapito-about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.06;
    transform: translate(100px, 100px);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.content-left {
    position: relative;
}

.content-text {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.content-right {
    position: sticky;
    top: 120px;
}

.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0B1220;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 400;
}

.content-paragraph:last-of-type {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-weight: 500;
}

.highlight-text strong {
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== CONTENT HIGHLIGHTS ===== */
.content-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-section:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.highlight-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-section {
    margin-top: 40px;
    text-align: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
    color: white;
    text-decoration: none;
}

.contact-link i {
    font-size: 18px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}





/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .course-preview-grid {
        max-width: 450px;
        gap: 15px;
    }
    
    .preview-card {
        padding: 15px;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-wrapper {
        padding: 15px 0;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 16px;
    }
    
    .courses-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .course-preview-grid {
        margin: 0 auto;
    }
    
    .floating-info-card {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-header-left .info-strip {
        justify-content: center;
    }
    
    .top-header-right {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-links {
        margin-right: 0;
    }
    
    .container {
        padding: 0 3px;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
    
    .courses-hero-section {
        padding: 50px 0;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .hero-cta-card {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .cta-icon {
        font-size: 50px;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-stats {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .cta-stat .stat-number {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 16px 30px;
        min-width: 180px;
    }
    
    /* KAPITO Section Mobile */
    .kapito-about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-right {
        position: static;
        order: -1;
    }
    
    .content-text {
        padding: 40px 30px;
    }
    
    .content-paragraph {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .highlight-box {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .highlight-section {
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 20px;
    }
    
    .highlight-section h3 {
        font-size: 1.2rem;
    }
    
    .highlight-section p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .mobile-menu-header {
        padding: 20px;
    }
    
    .mobile-nav {
        padding: 20px;
    }
    
    .mobile-actions {
        padding: 20px;
    }
    
    .courses-hero-section {
        padding: 30px 0;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-cta-card {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .cta-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-stats {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .cta-stat .stat-number {
        font-size: 20px;
    }
    
    .cta-stat .stat-label {
        font-size: 11px;
    }
    
    .cta-button {
        padding: 14px 25px;
        min-width: 160px;
        font-size: 14px;
    }
    
    /* KAPITO Section Small Mobile */
    .kapito-about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .content-layout {
        gap: 40px;
    }
    
    .content-text {
        padding: 30px 20px;
    }
    
    .content-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .highlight-box {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
    
    .highlight-text strong {
        font-size: 1.1rem;
    }
    
    .highlight-section {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-icon i {
        font-size: 18px;
    }
    
    .highlight-section h3 {
        font-size: 1.1rem;
    }
    
    .highlight-section p {
        font-size: 0.85rem;
    }
    
    .contact-link {
        padding: 14px 26px;
        font-size: 0.9rem;
    }
}

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.courses-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1220;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF8888, #FFF193);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.courses-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31, 58, 95, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 58, 95, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 58, 95, 0.2);
    border-color: rgba(5, 150, 105, 0.3);
}

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 25px;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0B1220;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748B;
}

.course-detail i {
    color: #059669;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.course-description {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1F3A5F, #059669);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #059669, #1F3A5F);
}

.course-btn span {
    font-size: 0.95rem;
}

.course-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.course-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Courses */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-section .section-title {
        font-size: 2rem;
    }
    
    .courses-section .section-subtitle {
        font-size: 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .course-card {
        border-radius: 15px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-title {
        font-size: 1.2rem;
        min-height: 50px;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .course-description {
        min-height: 50px;
        margin-bottom: 20px;
    }
    
    .course-btn {
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .courses-section {
        padding: 40px 0;
    }
    
    .courses-section .section-title {
        font-size: 1.8rem;
    }
    
    .course-content {
        padding: 18px;
    }
    
    .course-title {
        font-size: 1.1rem;
        min-height: 45px;
    }
    
    .course-details {
        gap: 10px;
    }
    
    .course-detail {
        font-size: 0.85rem;
    }
    
    .course-description {
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    .course-btn {
        padding: 10px 16px;
    }
    
    .course-btn span {
        font-size: 0.9rem;
    }
}

/* ===== COURSE INFO BOTTOM ===== */
.course-info-bottom {
    margin-top: 60px;
    padding: 50px 0;
    position: relative;
}

.course-info-bottom .info-section {
    background: linear-gradient(135deg, #1F3A5F 0%, #0B1220 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.course-info-bottom .info-section:last-child {
    margin-bottom: 0;
}

.course-info-bottom .info-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-info-bottom .info-section h4 i {
    color: #059669;
    font-size: 1.1rem;
}

/* Kurs Zamanları */
.timetable-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-item:last-child {
    border-bottom: none;
}

.time-label {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    flex-shrink: 0;
}

.time-value {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Faydalar */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-text {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #FF8888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-info-bottom {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .course-info-bottom .info-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .course-info-bottom .info-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .time-item {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }
    
    .time-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .time-value {
        font-size: 0.85rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-text {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .course-info-bottom {
        margin-top: 30px;
        padding: 30px 0;
    }
    
    .course-info-bottom .info-section {
        padding: 18px;
        margin-bottom: 18px;
    }
    
    .course-info-bottom .info-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .time-item {
        padding: 8px 0;
    }
    
    .time-label, .time-value {
        font-size: 0.8rem;
    }
    
    .benefit-text {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

/* ===== DİL SEVİYELERİ SECTION ===== */
.language-levels-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F3A5F 0%, #0B1220 100%);
    position: relative;
    overflow: hidden;
}

.language-levels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 50%;
    opacity: 0.08;
    transform: translate(-150px, -150px);
}

.language-levels-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.06;
    transform: translate(100px, 100px);
}

.language-levels-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.language-levels-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.language-levels-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.levels-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.levels-text {
    padding-right: 20px;
}

.levels-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: justify;
}

.levels-info {
    margin: 35px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border-left: 4px solid #FF8888;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.level-group {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #FFF193, #FFE066);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.level-group:last-child {
    margin-bottom: 0;
}

.level-group h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0B1220;
    margin-bottom: 8px;
}

.level-group p {
    font-size: 1rem;
    color: #495057;
    margin: 0;
}

.cefr-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cefr-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Piramit Tasarımı */
.levels-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.levels-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.levels-pyramid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #FF8888, #FFF193);
    transform: translateX(-50%);
    z-index: 1;
}

.level-c2, .level-c1, .level-b2, .level-b1, .level-a2, .level-a1 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.level-c2 {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.level-c1 {
    width: 160px;
    height: 90px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.level-b2 {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.level-b1 {
    width: 240px;
    height: 110px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
}

.level-a2 {
    width: 280px;
    height: 120px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.level-a1 {
    width: 320px;
    height: 130px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.level-content {
    text-align: center;
    color: white;
    padding: 10px;
}

.level-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.level-content p {
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.level-duration {
    font-size: 0.7rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Hover Efektleri */
.level-c2:hover, .level-c1:hover, .level-b2:hover, .level-b1:hover, .level-a2:hover, .level-a1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Legend */
.levels-legend {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.beginner {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.legend-color.intermediate {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.legend-color.advanced {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.legend-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0B1220;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .levels-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .levels-text {
        padding-right: 0;
        order: 2;
    }
    
    .levels-visual {
        order: 1;
    }
    
    .language-levels-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .language-levels-section {
        padding: 60px 0;
    }
    
    .language-levels-section .section-title {
        font-size: 2rem;
    }
    
    .language-levels-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .levels-description {
        font-size: 1rem;
    }
    
    .levels-info {
        padding: 20px;
        margin: 25px 0;
    }
    
    .level-group {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .level-group h3 {
        font-size: 1.2rem;
    }
    
    .levels-pyramid {
        gap: 6px;
    }
    
    .level-c2 { width: 100px; height: 70px; }
    .level-c1 { width: 130px; height: 80px; }
    .level-b2 { width: 160px; height: 90px; }
    .level-b1 { width: 190px; height: 100px; }
    .level-a2 { width: 220px; height: 110px; }
    .level-a1 { width: 250px; height: 120px; }
    
    .level-content h4 {
        font-size: 1rem;
    }
    
    .level-content p {
        font-size: 0.7rem;
    }
    
    .level-duration {
        font-size: 0.6rem;
    }
    
    .levels-legend {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .legend-item {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .language-levels-section {
        padding: 40px 0;
    }
    
    .language-levels-section .section-title {
        font-size: 1.8rem;
    }
    
    .language-levels-section .section-subtitle {
        font-size: 1rem;
    }
    
    .levels-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .levels-info {
        padding: 15px;
        margin: 20px 0;
    }
    
    .level-group {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .level-group h3 {
        font-size: 1.1rem;
    }
    
    .level-group p {
        font-size: 0.9rem;
    }
    
    .levels-pyramid {
        gap: 4px;
    }
    
    .level-c2 { width: 80px; height: 60px; }
    .level-c1 { width: 100px; height: 70px; }
    .level-b2 { width: 120px; height: 80px; }
    .level-b1 { width: 140px; height: 90px; }
    .level-a2 { width: 160px; height: 100px; }
    .level-a1 { width: 180px; height: 110px; }
    
    .level-content h4 {
        font-size: 0.9rem;
    }
    
    .level-content p {
        font-size: 0.6rem;
    }
    
    .level-duration {
        font-size: 0.5rem;
        padding: 1px 6px;
    }
    
    .legend-item {
        padding: 8px 12px;
    }
    
    .legend-item span {
        font-size: 0.8rem;
    }
}

/* ===== CAMPUSGERMAN HİZMETLERİ SECTION ===== */
.kapito-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.kapito-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23FF8888" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23service-dots)"/></svg>');
    opacity: 0.8;
}

.kapito-services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.kapito-services-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0B1220;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kapito-services-section .section-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8888 0%, #FFF193 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.service-content h3.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B1220;
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-description {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.service-description:last-of-type {
    margin-bottom: 25px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF193 0%, #FF8888 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

.service-cta:hover::before {
    opacity: 1;
}

.service-cta span,
.service-cta i {
    position: relative;
    z-index: 2;
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design for KAPITO Services Section */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        padding: 35px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .kapito-services-section {
        padding: 60px 0;
    }
    
    .kapito-services-section .section-title {
        font-size: 2.2rem;
    }
    
    .kapito-services-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-content h3.service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .kapito-services-section {
        padding: 50px 0;
    }
    
    .kapito-services-section .section-title {
        font-size: 1.8rem;
    }
    
    .kapito-services-section .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-content h3.service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1F3A5F 0%, #0B1220 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23FF8888" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.6;
}

.footer-top {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #059669;
    line-height: 1;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.footer-social .social-link i {
    font-size: 1.1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FF8888 0%, #FFF193 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FF8888 0%, #FFF193 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 20px;
    color: #059669;
    margin-top: 3px;
    font-size: 1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #059669;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo .logo-icon i {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-main {
        font-size: 1.3rem;
    }
    
    .footer-logo .logo-sub {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-social .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-social .social-link i {
        font-size: 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-section .section-subtitle {
    color: #64748B;
    font-size: 1.1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #059669;
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #0B1220;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question:hover {
    background: #F0FAF8;
    color: #059669;
}

.faq-question i {
    color: #059669;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F0FAF8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #64748B;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 20px;
    color: white;
    margin-top: 40px;
}

.faq-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #059669;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #F0FAF8;
}

.faq-contact-btn i {
    font-size: 1rem;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
    }
    
    .faq-cta {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
}/* End custom CSS */