.elementor-16066 .elementor-element.elementor-element-b858135{--display:flex;overflow:visible;}.elementor-16066 .elementor-element.elementor-element-a759b57{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS *//* Hizmet sayfası stilleri */

/* Temel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Mobil menü açıkken body overflow'u kapat */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    max-width: 1700px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover {
    color: #FF6B35;
}

.nav-links a:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.nav-links a[href="#iletisim"] {
    text-decoration: underline;
    text-decoration-color: #FF6B35;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column h4 {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-column a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: #FF6B35;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consultation-btn, .catalog-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.consultation-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.catalog-btn {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.catalog-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-content {
    background: white;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    overflow-y: auto;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #333;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
    font-weight: 500;
}

.mobile-nav a:hover {
    color: #FF6B35;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: none;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-consultation-btn,
.mobile-catalog-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-consultation-btn {
    background: #E8552F;
    color: white;
}

.mobile-catalog-btn {
    background: #ffd700;
    color: #333;
}

.mobile-consultation-btn:hover,
.mobile-catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .header-actions {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .navbar {
        padding: 1rem 0.5rem;
    }
    
    .mobile-menu-overlay {
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        display: flex;
    }
    
    .mobile-menu-overlay.active {
        background-color: rgba(0, 0, 0, 0.9);
        visibility: visible;
    }
    
    .mobile-menu-content {
        width: 280px;
        padding: 1.5rem;
        z-index: 10000;
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0);
    }
}

/* Hero Section - Image Columns Course */
.image-columns-section-course {
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Hero section header altında kalsın diye daha fazla üst boşluk */
.image-columns-section-course {
    padding-top: 10rem;
}

/* Hero Avantajlar (madde listesi) - Kompakt Yatay Tasarım */
.hero-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0 0.3rem 0;
    padding: 0;
    list-style: none;
    justify-content: flex-start;
}
.hero-advantages li {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(38,97,149,0.08);
    padding: 0.4rem 0.8rem 0.4rem 0.6rem;
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    min-width: 180px;
    max-width: 280px;
    transition: box-shadow 0.15s, background 0.15s;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    margin-bottom: 0.1rem;
}
.hero-advantages li::before {
    content: '✓'; /* Check mark */
    color: #ffd700;
    font-size: 1rem;
    margin-right: 0.3rem;
    display: inline-block;
    font-weight: bold;
}
.hero-advantages li:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 12px rgba(38,97,149,0.12);
    color: #ffd700;
}
.hero-call {
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.05rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
    .hero-advantages {
        flex-direction: column;
        gap: 0.4rem;
    }
    .hero-advantages li {
        min-width: unset;
        width: 100%;
        max-width: unset;
    }
}

/* Nokta tasarımı kaldırıldı */

/* Container */
.main-container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.w-container {
    width: 100%;
}

/* Grid Layout */
.w-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.grid-halves {
    grid-template-columns: 1fr 1fr;
}

.about-lecture {
    align-items: center;
}

/* Content Block */
.block {
    position: relative;
}

.image-columns-title {
    color: white;
    max-width: 600px;
}

/* Typography */
.image-columns-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.span-accent-one {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.space-16 {
    height: 1rem;
}

.text-medium {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Button - Hero butonları kesinlikle yan yana */
.cta-wrap-highlighted-blog {
    margin-top: 2rem;
    display: flex !important;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta:hover::before {
    left: 100%;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #333;
}

.white-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
    background: white;
    color: #E8552F;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Marquee Section */
.marquee-wrap {
    position: relative;
    height: 800px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.marquee-overflow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(232, 85, 47, 0.8) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.marquee-overflow.bottom {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, rgba(232, 85, 47, 0.8) 0%, transparent 100%);
}

/* Marquee Columns */
.marquee-column {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.first-column {
    left: 0;
    padding-right: 2rem;
}

.second-column {
    right: 0;
    padding-left: 2rem;
}

/* Marquee Animation */
.marquee {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: marqueeScroll 20s linear infinite;
}

.marquee.reverse {
    animation: marqueeScrollReverse 25s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Marquee Items */
.marquee-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
}

.marquee-image-wrap {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: white;
}

.marquee-image-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.marquee-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.marquee-image-wrap:hover .marquee-image {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .image-columns-title h1 {
        font-size: 3rem;
    }
    
    .text-medium {
        font-size: 1.1rem;
    }
    
    .marquee-wrap {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .w-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-columns-title {
        text-align: center;
        max-width: 100%;
    }
    
    .image-columns-title h1 {
        font-size: 2.5rem;
    }
    
    .marquee-wrap {
        height: 400px;
    }
    
    .marquee-column {
        width: 100%;
        position: relative;
    }
    
    .first-column {
        left: 0;
        padding-right: 2rem;
    }
    
    .second-column {
        right: 0;
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    .image-columns-section-course {
        padding: 2rem 0;
        padding-top: 6rem;
        min-height: auto;
    }
    
    .main-container {
        max-width: 98%;
        padding: 0;
    }
    
    .image-columns-title h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .text-medium {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-wrap-highlighted-blog {
        flex-direction: row !important;
        gap: 0.8rem;
        flex-wrap: wrap;
        display: flex !important;
    }
    
    .cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .marquee-wrap {
        height: 300px;
        border-radius: 15px;
        padding: 0 1rem;
    }
    
    .marquee-image {
        height: 150px;
    }
    
    .marquee {
        gap: 1rem;
    }
    
    .marquee-item {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .image-columns-title h1 {
        font-size: 1.8rem;
    }
    
    .text-medium {
        font-size: 0.95rem;
    }
    
    .marquee-wrap {
        height: 250px;
    }
    
    .marquee-image {
        height: 120px;
    }
}

/* 6 Adımda İtalya'da Eğitim Section */
.one-step-away-section {
    background: #ffffff;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    padding: 0;
    width: 100%;
}

/* Title Section */
.title-wrap-step-away {
    position: sticky;
    top: 120px;
}

.space-50 {
    height: 3rem;
}

.space-24 {
    height: 1.5rem;
}

.space-08 {
    height: 0.5rem;
}

.title-wrap-step-away h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-wrap-step-away p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Steps Block */
.usps-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.usps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Step Tiles */
.step-tile {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.step-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-tile:hover::before {
    transform: scaleX(1);
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-tile:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(232, 85, 47, 0.3);
}

.step-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Step Content */
.step-tile h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.no-margins {
    margin: 0;
}

.step-tile p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.step-tile p strong {
    color: #E8552F;
    font-weight: 600;
}

.paragraph {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .title-wrap-step-away {
        position: static;
        text-align: center;
    }
    
    .title-wrap-step-away h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .usps-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .usps-block {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .one-step-away-section {
        padding: 2rem 0;
    }
    
    .title-wrap-step-away h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .title-wrap-step-away p {
        font-size: 1rem;
    }
    
    .step-tile {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .step-icon img {
        width: 24px;
        height: 24px;
    }
    
    .step-tile h3 {
        font-size: 1.1rem;
    }
    
    .step-tile p {
        font-size: 0.9rem;
    }
}

/* Hakkımızda Hero Section */
.hero-about-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-us-halves {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
    padding: 0;
    width: 100%;
}

/* Background Image */
.background-image-about-us {
    border-radius: 20px;
    position: relative;
    overflow: visible;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 4px;
}

/* Shadow blocks for about us images - removed */

/* Nokta tasarımı kaldırıldı */

/* Üniversite Logoları Slider Section */
.universities-section {
    background: #ffffff;
    padding: 0;
    text-align: center;
}

.content-section {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.universities-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.universities-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: slideUniversities 8s linear infinite;
    gap: 3rem;
    align-items: center;
}

.university-logo {
    flex: 0 0 250px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.university-logo:hover {
    transform: translateY(-5px);
}

.university-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes slideUniversities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Daha Fazla Üniversite Keşfet Butonu */
.discover-more-section {
    flex: 0 0 auto;
}

/* Üniversite Keşfet Butonu - Güçlü Override */
.avdiscoverbtn,
body .avdiscoverbtn,
html body .avdiscoverbtn,
.discover-more-section .avdiscoverbtn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 1.2rem 2rem !important;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

.avdiscoverbtn::before,
body .avdiscoverbtn::before,
html body .avdiscoverbtn::before,
.discover-more-section .avdiscoverbtn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.avdiscoverbtn:hover::before,
body .avdiscoverbtn:hover::before,
html body .avdiscoverbtn:hover::before,
.discover-more-section .avdiscoverbtn:hover::before {
    left: 100% !important;
}

.avdiscoverbtn:hover,
body .avdiscoverbtn:hover,
html body .avdiscoverbtn:hover,
.discover-more-section .avdiscoverbtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4) !important;
}

.avdiscoverbtn i,
body .avdiscoverbtn i,
html body .avdiscoverbtn i,
.discover-more-section .avdiscoverbtn i {
    font-size: 1.1rem !important;
    transition: transform 0.3s ease !important;
}

.avdiscoverbtn:hover i:last-child,
body .avdiscoverbtn:hover i:last-child,
html body .avdiscoverbtn:hover i:last-child,
.discover-more-section .avdiscoverbtn:hover i:last-child {
    transform: translateX(5px) !important;
}

.avdiscoverbtn span,
body .avdiscoverbtn span,
html body .avdiscoverbtn span,
.discover-more-section .avdiscoverbtn span {
    font-weight: 700 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .universities-section {
        padding: 2rem 1rem;
    }
    
    .content-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .universities-slider-container {
        overflow: hidden;
    }
    
    .slider-track {
        gap: 1rem;
        animation: slideUniversities 30s linear infinite; /* Daha yavaş */
    }
    
    .university-logo {
        flex: 0 0 150px;
        height: 100px;
        padding: 0.5rem;
        min-width: 150px;
    }
    
    .university-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .discover-more-section {
        margin-top: 1rem;
    }
    
    .avdiscoverbtn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Content Section */
.master-about-us-hero {
    padding: 2rem 0;
}

.master-about-us-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.master-about-us-hero .subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* CTA Button */
.cta.secondary.large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232, 85, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta.secondary.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta.secondary.large:hover::before {
    left: 100%;
}

.cta.secondary.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(232, 85, 47, 0.4);
    background: linear-gradient(135deg, #D65A31 0%, #E8552F 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-us-halves {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .master-about-us-hero h1 {
        font-size: 2.5rem;
    }
    
    .background-image-about-us {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-about-us {
        padding: 2rem 0;
    }
    
    .master-about-us-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .master-about-us-hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta.secondary.large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .background-image-about-us {
        height: 250px;
    }
}

/* About Buttons */
.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-buttons .cta {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-buttons .cta.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.about-buttons .cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.about-buttons .cta.secondary {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.about-buttons .cta.secondary:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hakkımızda Hero Section 2 - Resim Sağda */
.hero-about-us-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Hakkımızda Hero Section 3 - Resim Solda */
.hero-about-us-3 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-us-halves-2 {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.about-us-halves-3 {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.master-about-us-hero-2 {
    flex: 1;
    max-width: 600px;
}

.master-about-us-hero-2 h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.master-about-us-hero-2 .subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.background-image-about-us-2 {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 4px;
}



.master-about-us-hero-3 {
    flex: 1;
    max-width: 600px;
}

.master-about-us-hero-3 h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.master-about-us-hero-3 .subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.background-image-about-us-3 {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 4px;
}



/* Responsive for About Sections */
@media (max-width: 1024px) {
    .about-us-halves,
    .about-us-halves-2,
    .about-us-halves-3 {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .master-about-us-hero,
    .master-about-us-hero-2,
    .master-about-us-hero-3 {
        max-width: 100%;
    }
    
    .master-about-us-hero h1,
    .master-about-us-hero-2 h1,
    .master-about-us-hero-3 h1 {
        font-size: 2.2rem;
    }
    
    .master-about-us-hero .subtitle,
    .master-about-us-hero-2 .subtitle,
    .master-about-us-hero-3 .subtitle {
        font-size: 1.1rem;
    }
    
    .background-image-about-us,
    .background-image-about-us-2,
    .background-image-about-us-3 {
        height: 400px;
    }
    
    .about-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-about-us,
    .hero-about-us-2,
    .hero-about-us-3 {
        padding: 2rem 0;
    }
    
    .about-us-halves,
    .about-us-halves-2,
    .about-us-halves-3 {
        max-width: 98%;
        padding: 0;
        gap: 2rem;
    }
    
    /* Resim üstte, içerik altta olması için */
    .about-us-halves-2 {
        flex-direction: column-reverse;
    }
    
    .master-about-us-hero h1,
    .master-about-us-hero-2 h1,
    .master-about-us-hero-3 h1 {
        font-size: 2rem;
    }
    
    .master-about-us-hero .subtitle,
    .master-about-us-hero-2 .subtitle,
    .master-about-us-hero-3 .subtitle {
        font-size: 1rem;
    }
    
    .background-image-about-us,
    .background-image-about-us-2,
    .background-image-about-us-3 {
        height: 300px;
    }
    
    .about-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .about-buttons .cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 60px 0;
}

.cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    flex: 1;
    max-width: 500px;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.space-08 {
    height: 0.5rem;
}

.space-32 {
    height: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #FF6B35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    max-width: 150px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.student-avatars {
    display: flex;
    align-items: center;
}

.student-avatars img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -5px;
    transition: transform 0.3s ease;
}

.student-avatars img:first-child {
    margin-left: 0;
}

.student-avatars img:hover {
    transform: scale(1.1);
    z-index: 1;
}

.cta-image {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(255, 107, 53, 0.4) 5px 5px, rgba(255, 107, 53, 0.3) 10px 10px, rgba(255, 107, 53, 0.2) 15px 15px, rgba(255, 107, 53, 0.1) 20px 20px, rgba(255, 107, 53, 0.05) 25px 25px;
    position: relative;
}

.cta-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

.cta-image:hover {
    transform: translateY(-5px);
}

/* CTA colored block removed */

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-block {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        align-items: center;
    }
    
    .trust-indicator {
        justify-content: center;
    }
    
    .cta-image {
        width: 350px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-block {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        max-width: 120px;
    }
    
    .trust-indicator {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .student-avatars img {
        width: 20px;
        height: 20px;
    }
    
    .cta-image {
        width: 280px;
        height: 200px;
    }
}

/* Sizi Bekleyenler Section */
.whats-next-section {
    background: #ffffff;
    padding: 2rem 0;
    width: 100%;
}

.whats-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 85%;
    margin: 0 auto;
    padding: 0;
}

/* Sol Taraf - Danışmanlık */
.whats-next-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gradient-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FEF1DF 0%, #FFE5C3 25%, #96C7EB 50%, #FFBDC3 75%, #A8D9EF 100%);
    filter: blur(100px);
    opacity: 0.8;
}

.whats-next-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.consultant-image-container {
    position: relative;
    margin: 2rem auto;
    width: 200px;
}

.consultant-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid white;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 4px solid white;
    background: #10B981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whats-next-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.whats-next-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.whats-next-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whats-next-buttons .cta {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whats-next-buttons .secondary-button {
    background: white;
    color: #1a202c;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whats-next-buttons .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.whats-next-buttons .primary-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.whats-next-buttons .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Sağ Taraf - Seminerler */
.infomeetings-content {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.infomeetings-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: left;
}

.infomeetings-content > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 2rem 0;
    border: none;
}

.seminar-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.seminar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seminar-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seminar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seminar-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: left;
}

.gradient-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #33BBDD 0%, #5245DF 50%, #F51994 100%);
    margin: 1rem 0;
    border: none;
}

.seminar-date {
    font-size: 0.9rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.seminar-location {
    font-size: 0.8rem;
    color: #718096;
    text-align: left;
}

.arrow-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: #FF6B35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.seminar-card:hover .arrow-icon {
    transform: translateX(5px);
}

.view-all-button {
    margin-top: 2rem;
    text-align: center;
}

.link-button {
    background: transparent;
    color: #1a202c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-button:hover {
    background: rgba(26, 32, 44, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .whats-next-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whats-next-content h3 {
        font-size: 2rem;
    }
    
    .infomeetings-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .whats-next-section {
        padding: 2rem 0;
    }
    
    .whats-next-grid {
        max-width: 98%;
        gap: 1.5rem;
    }
    
    .whats-next-content {
        padding: 1.5rem;
    }
    
    .whats-next-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .consultant-image-container {
        width: 150px;
        margin: 1.5rem auto;
    }
    
    .consultant-image {
        width: 150px;
        height: 150px;
    }
    
    .status-dot {
        width: 28px;
        height: 28px;
        right: 6px;
        top: 6px;
    }
    
    .whats-next-content h4 {
        font-size: 1.3rem;
    }
    
    .whats-next-content p {
        font-size: 1rem;
    }
    
    .whats-next-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .whats-next-buttons .cta {
        width: 100%;
        justify-content: center;
    }
    
    .infomeetings-content {
        padding: 1.5rem;
    }
    
    .infomeetings-content h3 {
        font-size: 1.6rem;
    }
    
    .infomeetings-content > p {
        font-size: 1rem;
    }
    
    .seminar-card {
        padding: 1rem;
    }
    
    .seminar-content h5 {
        font-size: 1.1rem;
    }
}

/* Öğrenci Deneyimleri Section */
.student-experiences-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.student-experiences-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.student-experiences-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.student-experiences-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.student-experiences-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 2px;
}

.student-experiences-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.experiences-container {
    position: relative;
    margin-top: 40px;
}

.experiences-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.experiences-track::-webkit-scrollbar {
    display: none;
}

.experiences-track {
    -webkit-overflow-scrolling: touch;
}

.experience-item {
    flex: 0 0 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 450px; /* Kart yüksekliğini artırdım */
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-item {
    position: relative;
    cursor: pointer;
}

.video-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.student-item {
    position: relative;
    overflow: hidden;
}

.student-image {
    position: relative;
    width: 100%;
    height: 450px; /* Resim yüksekliğini artırdım */
    overflow: hidden;
}

.student-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.student-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
}

.student-item:hover {
    transform: translateY(-10px);
}

.student-item:hover .student-overlay {
    opacity: 1;
}

.student-item:hover .student-image img {
    transform: scale(1.1);
}

.video-item {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 450px; /* Video thumbnail yüksekliğini artırdım */
    overflow: hidden;
    border-radius: 20px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-overlay i {
    font-size: 2rem;
    color: #FF6B35;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-item:hover .play-button-overlay {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover .play-button-overlay i {
    color: #FF6B35;
}

.student-comment {
    text-align: center;
    color: white;
}

.student-comment h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.student-comment p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.avexperiencesnav,
.avslidernav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.avexperiencesbtn,
.avsliderbtn {
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.avexperiencesbtn:hover,
.avsliderbtn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.avexperiencesbtn:disabled,
.avsliderbtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.exp-dots {
    display: flex;
    gap: 10px;
}

.exp-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exp-dot.active {
    background: #FF6B35;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .experience-item {
        flex: 0 0 300px;
        height: 400px; /* Responsive için yüksekliği ayarladım */
    }
    
    .student-image {
        height: 400px; /* Responsive için resim yüksekliğini ayarladım */
    }
    
    .video-thumbnail {
        height: 400px; /* Responsive için video thumbnail yüksekliğini ayarladım */
    }
    
    .student-experiences-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .experiences-track {
        gap: 20px;
    }
    
    .experience-item {
        flex: 0 0 280px;
        height: 380px; /* Daha küçük ekranlar için yüksekliği ayarladım */
    }
    
    .student-image {
        height: 380px; /* Daha küçük ekranlar için resim yüksekliğini ayarladım */
    }
    
    .video-thumbnail {
        height: 380px; /* Daha küçük ekranlar için video thumbnail yüksekliğini ayarladım */
    }
    
    .student-comment h4 {
        font-size: 1.2rem;
    }
    
    .student-comment p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .student-experiences-section {
        padding: 60px 0;
    }
    
    .student-experiences-section .container {
        padding: 0 1rem;
    }
    
    .student-experiences-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .student-experiences-section .section-header p {
        font-size: 1rem;
    }
    
    .experiences-container {
        margin-top: 30px;
    }
    
    .experiences-track {
        gap: 15px;
        padding: 15px 0;
    }
    
    .experience-item {
        flex: 0 0 250px;
        height: 350px; /* Mobil için yüksekliği ayarladım */
    }
    
    .student-image {
        height: 350px; /* Mobil için resim yüksekliğini ayarladım */
    }
    
    .video-thumbnail {
        height: 350px; /* Mobil için video thumbnail yüksekliğini ayarladım */
    }
    
    .student-overlay {
        padding: 20px;
    }
    
    .student-comment h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .student-comment p {
        font-size: 0.85rem;
    }
    
    .avexperiencesnav {
        margin-top: 30px;
        gap: 15px;
    }
    
    .avexperiencesbtn {
        width: 45px;
        height: 45px;
    }
    
    .exp-dots {
        gap: 8px;
    }
    
    .exp-dot {
        width: 10px;
        height: 10px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: transparent;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #FF6B35;
}

.modal-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 10px;
    }
    
    .close-modal {
        top: -35px;
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    position: relative;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #FF6B35;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 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;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF6B35;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF6B35;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FF6B35;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-item i {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
} 

/* Hero butonları için özel CSS - kesinlikle yan yana */
.image-columns-title .cta-wrap-highlighted-blog {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 2rem !important;
}

.image-columns-title .cta-wrap-highlighted-blog .cta {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

/* Mobil için de aynı kural */
@media (max-width: 768px) {
    .image-columns-title .cta-wrap-highlighted-blog {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-popup:hover {
    color: #333;
}

.popup-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.success-popup.active {
    display: flex;
    animation: popupFadeIn 0.3s ease;
}

.success-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.close-success {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
} 

/* Ülke Popup Form Stili - Home 1'den kopyalandı */
.country-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 29, 64, 0.9);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
    opacity: 0;
}

.country-form-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s forwards;
}

.country-modal-content {
    position: relative;
    background: #fff;
    margin: 20px;
    max-width: 460px;
    width: calc(100vw - 40px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: visible;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.country-form-modal.show .country-modal-content {
    transform: scale(1);
    opacity: 1;
    animation: popIn 0.5s 0.1s forwards;
}

/* Progress Bar Stilleri */
.form-progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-country-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #4285F4);
    cursor: pointer;
    z-index: 5;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-country-modal:hover {
    background: var(--primary-color, #4285F4);
    color: #fff;
    transform: rotate(90deg);
}

.country-modal-header {
    background: linear-gradient(135deg, var(--primary-color, #4285F4) 0%, var(--secondary-color, #34A853) 100%);
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.country-modal-header::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg);
    top: -50px;
    left: -25%;
}

.country-modal-flag {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    margin-right: 20px;
    position: relative;
    animation: pulse 2s infinite;
}

.country-modal-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#modalCountryTitle {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex: 1;
}

.country-modal-body {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-form,
body .contact-form,
html body .contact-form,
.country-modal-body .contact-form {
    background: white !important;
    padding: 1.8rem !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    width: 100% !important;
    position: relative !important;
    max-width: 440px !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
}

.country-modal-body .contact-form {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.country-modal-body .form-group:not(:last-child) {
    margin-bottom: 18px;
}

.country-modal-body .avsubmitbtn {
    background: linear-gradient(135deg, var(--primary-color, #4285F4) 0%, var(--secondary-color, #34A853) 100%);
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.country-modal-body .avsubmitbtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(21, 93, 160, 0.4);
}

@media screen and (max-width: 768px) {
    .country-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        max-width: 460px;
        border-radius: 15px;
    }
    
    .country-modal-header {
        padding: 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .country-modal-flag {
        width: 55px;
        height: 55px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    #modalCountryTitle {
        font-size: 1.1rem;
    }
    
    .country-modal-body {
        padding: 15px;
    }
    
    .country-modal-body .form-group:not(:last-child) {
        margin-bottom: 12px;
    }
    
    .country-modal-body input, 
    .country-modal-body select, 
    .country-modal-body textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .country-modal-body .avsubmitbtn {
        padding: 10px;
    }
    
    .close-country-modal {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.success-popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.close-success {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .success-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .success-icon {
        font-size: 36px;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
}

/* Modern Step Cards Styles */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #27ae60;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .step-card {
        padding: 1.8rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon img {
        width: 40px;
        height: 40px;
    }
    
    .step-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon img {
        width: 35px;
        height: 35px;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
}

/* Sectionlar arası boşluklar */
.one-step-away-section,
.universities-section,
.cta-section,
.whats-next-section,
.student-experiences-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Section başlık ve açıklama uyumlu font */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a202c;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-description {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

/* Home 1'den kopyalanan form stilleri */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 9px;
  font-size: 1rem;
  background: #fafbfc;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 1px 2px rgba(59,130,246,0.03);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #3b82f633;
}

/* Textarea özel stilleri - Home 1'den kopyalandı */
.form-group textarea,
body .form-group textarea,
html body .form-group textarea,
.contact-form .form-group textarea,
.elementor-widget-container .form-group textarea,
.elementor-element .form-group textarea {
    height: 60px !important;
    resize: vertical !important;
    min-height: 60px !important;
    max-height: 80px !important;
}

/* Footer - Home 1'den kopyalandı */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Footer Section */
.footer-section {
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 85, 47, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 85, 47, 0.4);
    background: linear-gradient(135deg, #D65A31 0%, #E8552F 100%);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer Title */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #E8552F;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E8552F 0%, #D65A31 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-item a,
.contact-item p {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .contact-item {
        gap: 0.8rem;
    }
    
    .contact-item i {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

/* Multi-Step Form Styles */
.form-page {
    display: none;
    position: relative;
    overflow: visible;
}

.form-page.active {
    display: block;
}

/* Geri Butonu Stilleri */
.contact-form .popup-form-back-btn,
.contact-form .form-back-btn,
.country-modal-body .popup-form-back-btn,
.country-modal-body .form-back-btn,
.form-page .popup-form-back-btn,
.form-page .form-back-btn {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    border-radius: 14px !important;
    background: rgba(248, 250, 252, 0.95) !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: none !important;
    max-height: none !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1) !important;
    background-image: none !important;
    text-transform: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 120 !important;
    margin: 0 !important;
}

.contact-form .popup-form-back-btn:hover,
.contact-form .form-back-btn:hover,
.country-modal-body .popup-form-back-btn:hover,
.country-modal-body .form-back-btn:hover,
.form-page .popup-form-back-btn:hover,
.form-page .form-back-btn:hover {
    background: #e2e8f0 !important;
    border-color: #cbd5e1 !important;
    color: #1d4ed8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18) !important;
}

.contact-form .popup-form-back-btn:active,
.contact-form .form-back-btn:active,
.country-modal-body .popup-form-back-btn:active,
.country-modal-body .form-back-btn:active,
.form-page .popup-form-back-btn:active,
.form-page .form-back-btn:active {
    transform: translateY(0) scale(0.98) !important;
}

.contact-form .popup-form-back-btn i,
.contact-form .form-back-btn i,
.country-modal-body .popup-form-back-btn i,
.country-modal-body .form-back-btn i,
.form-page .popup-form-back-btn i,
.form-page .form-back-btn i {
    margin: 0 !important;
    line-height: 1 !important;
    font-size: 0.9rem !important;
}

.contact-form .popup-form-back-btn::before,
.contact-form .popup-form-back-btn::after,
.contact-form .form-back-btn::before,
.contact-form .form-back-btn::after,
.country-modal-body .popup-form-back-btn::before,
.country-modal-body .popup-form-back-btn::after,
.country-modal-body .form-back-btn::before,
.country-modal-body .form-back-btn::after,
.form-page .popup-form-back-btn::before,
.form-page .popup-form-back-btn::after,
.form-page .form-back-btn::before,
.form-page .form-back-btn::after {
    content: none !important;
    display: none !important;
}

.radio-option,
.checkbox-option {
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
}

/* Uygun Olunan Günler - 3 sütun düzeni */
label.checkbox-option:has(input[name="available-days"]),
label.checkbox-option:has(input[name="available-days-office"]),
.contact-form label.checkbox-option:has(input[name="available-days"]),
.contact-form label.checkbox-option:has(input[name="available-days-office"]),
.form-page label.checkbox-option:has(input[name="available-days"]),
.form-page label.checkbox-option:has(input[name="available-days-office"]),
#popupMultiStepForm label.checkbox-option:has(input[name="available-days"]),
#popupMultiStepForm label.checkbox-option:has(input[name="available-days-office"]),
body label.checkbox-option:has(input[name="available-days"]),
body label.checkbox-option:has(input[name="available-days-office"]),
html body label.checkbox-option:has(input[name="available-days"]),
html body label.checkbox-option:has(input[name="available-days-office"]) {
    flex: 0 0 calc(33.333% - 4px) !important;
    min-width: calc(33.333% - 4px) !important;
    max-width: calc(33.333% - 4px) !important;
    width: calc(33.333% - 4px) !important;
    box-sizing: border-box !important;
}

.checkbox-group:has(input[name="available-days"]),
.checkbox-group:has(input[name="available-days-office"]),
#popupMultiStepForm .checkbox-group:has(input[name="available-days"]),
#popupMultiStepForm .checkbox-group:has(input[name="available-days-office"]) {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
}

.checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])),
.contact-form .checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])),
.form-page .checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])),
#popupMultiStepForm .checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])),
body .checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])),
html body .checkbox-option:not(:has(input[name="available-days"])):not(:has(input[name="available-days-office"])) {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

@media (max-width: 768px) {
    label.checkbox-option:has(input[name="available-days"]),
    label.checkbox-option:has(input[name="available-days-office"]),
    html body label.checkbox-option:has(input[name="available-days"]),
    html body label.checkbox-option:has(input[name="available-days-office"]) {
        flex: 0 0 calc(50% - 3px) !important;
        min-width: calc(50% - 3px) !important;
        max-width: calc(50% - 3px) !important;
        width: calc(50% - 3px) !important;
    }
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc !important;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    cursor: pointer !important;
    accent-color: #4285F4 !important;
}

.radio-option:has(input[type="radio"]:checked),
.checkbox-option:has(input[type="checkbox"]:checked) {
    border-color: #4285F4 !important;
    background-color: #eff6ff !important;
}

.popup-form-choice-btn[data-choice="questions"]:hover {
    background-color: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.popup-form-choice-btn[data-choice="consultation"]:hover {
    background-color: #4285F4 !important;
    color: white !important;
    border-color: #4285F4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3) !important;
}

.popup-consultation-type-btn[data-type="online"]:hover {
    background-color: #8b5cf6 !important;
    color: white !important;
    border-color: #8b5cf6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

.popup-consultation-type-btn[data-type="office"]:hover {
    background-color: #f59e0b !important;
    color: white !important;
    border-color: #f59e0b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
}

.popup-form-choice-btn,
.popup-consultation-type-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.form-group[style*="display: flex"],
#popupMultiStepForm .form-group[style*="display: flex"],
.form-group:has(.popup-form-choice-btn),
.form-group:has(.popup-consultation-type-btn) {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
}

.popup-form-choice-btn,
.popup-consultation-type-btn,
#popupMultiStepForm .popup-form-choice-btn {
    display: inline-flex !important;
    flex: 1 !important;
    min-width: 0 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 5 !important;
}

.checkbox-group,
#popupMultiStepForm .checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

.checkbox-option,
#popupMultiStepForm .checkbox-option {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.radio-group.country-radio {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.radio-group.country-radio .radio-option {
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}

.radio-group.country-radio .radio-option:hover {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc !important;
}

.radio-group.country-radio .radio-option:has(input[type="radio"]:checked) {
    border-color: #4285F4 !important;
    background-color: #eff6ff !important;
}

.radio-group.country-radio .radio-option:has(input[type="radio"]:checked) span {
    color: #1e40af !important;
    font-weight: 500 !important;
}

.radio-group.office-radio-group,
#popupMultiStepForm .radio-group:not(.country-radio) {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

.radio-group.office-radio-group .radio-option,
#popupMultiStepForm .radio-group:not(.country-radio) .radio-option {
    flex: 1 !important;
    min-width: calc(50% - 3px) !important;
    font-size: 0.875rem !important;
    padding: 8px 12px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #475569 !important;
    transition: all 0.2s ease !important;
}

.radio-group.office-radio-group .radio-option:hover,
#popupMultiStepForm .radio-group:not(.country-radio) .radio-option:hover {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc !important;
}

.radio-group.office-radio-group .radio-option:has(input[type="radio"]:checked),
#popupMultiStepForm .radio-group:not(.country-radio) .radio-option:has(input[type="radio"]:checked) {
    border-color: #4285F4 !important;
    background-color: #eff6ff !important;
    color: #1e40af !important;
}

.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    min-width: 320px;
    max-width: 400px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #10b981;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification.success {
    border-left-color: #10b981;
}

.custom-notification.error {
    border-left-color: #ef4444;
}

.custom-notification.warning {
    border-left-color: #f59e0b;
}

.custom-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.custom-notification.success .custom-notification-icon {
    background: #d1fae5;
    color: #10b981;
}

.custom-notification.error .custom-notification-icon {
    background: #fee2e2;
    color: #ef4444;
}

.custom-notification.warning .custom-notification-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.custom-notification-content {
    flex: 1;
}

.custom-notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.custom-notification-message {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.custom-notification-close {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0;
    transition: color 0.2s;
}

.custom-notification-close:hover {
    color: #374151;
}

@media (max-width: 640px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .custom-notification.show {
        transform: translateY(0);
    }
}/* End custom CSS */