/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll için ek ayarlar - Optimized */
html {
    scroll-behavior: smooth;
}

/* CSS Değişkenleri */
:root {
    --hsfrat-birincil: #0171F1;
    --hsfrat-ikincil: #1DAAFF;
    --hsfrat-vurgu: #111111;
    --hsfrat-metin: #333333;
    --hsfrat-metin-acik: #6b7280;
    --hsfrat-arkaplan: #ffffff;
    --hsfrat-arkaplan-alt: #F5F5F5;
    --hsfrat-kenarlik: #E5E5E5;
    --hsfrat-acik-mavi: #D6F1FE;
    --hsfrat-basari: #00AF45;
    --hsfrat-uyari: #EA3C07;
    --hsfrat-mor: #A000EA;
    --hsfrat-golge: 0px 4px 20px rgba(0, 0, 0, 0.1);
    --hsfrat-golge-buyuk: 0px 8px 32px rgba(0, 0, 0, 0.15);
    --hsfrat-yaricap: 10px;
    --hsfrat-yaricap-buyuk: 20px;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--hsfrat-metin);
    background: var(--hsfrat-arkaplan);
    overflow-x: hidden;
}

/* Genel Utility Sınıfları */
.hsfrat-konteyner {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.hsfrat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--hsfrat-yaricap);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hsfrat-btn-birincil {
    background: var(--hsfrat-birincil);
    color: white;
}

.hsfrat-btn-birincil:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: var(--hsfrat-golge-buyuk);
    color: white;
}

.hsfrat-btn-birincil:active,
.hsfrat-btn-birincil:focus {
    background: #0056b3;
    color: white;
    outline: none;
}

/* Tercihlerim butonu için özel stil - yazı her zaman beyaz kalsın */
.hsfrat-btn-birincil[href*="tercihlerim"] {
    color: white !important;
}

.hsfrat-btn-birincil[href*="tercihlerim"]:hover,
.hsfrat-btn-birincil[href*="tercihlerim"]:active,
.hsfrat-btn-birincil[href*="tercihlerim"]:focus {
    color: white !important;
}

.hsfrat-btn-cerceve {
    background: transparent;
    color: var(--hsfrat-birincil);
    border: 2px solid var(--hsfrat-birincil);
}

.hsfrat-btn-cerceve:hover {
    background: var(--hsfrat-birincil);
    color: white;
    transform: translateY(-2px);
}

.hsfrat-animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.hsfrat-animated.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animasyonları için Intersection Observer */
.hsfrat-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.hsfrat-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hsfrat-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.hsfrat-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.hsfrat-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.hsfrat-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Grid */
.hsfrat-grid {
    display: grid;
    gap: 30px;
}

.hsfrat-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hsfrat-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hsfrat-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Responsive */
@media (max-width: 768px) {
    .hsfrat-konteyner {
        padding: 0 15px;
    }
    
    .hsfrat-grid-2,
    .hsfrat-grid-3,
    .hsfrat-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Header */
.hsfrat-ustbilgi {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 229, 229, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo Text */
.hsfrat-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--hsfrat-birincil);
    margin-left: 8px;
}

/* Navigation Items */
.hsfrat-nav-item {
    position: relative;
}

.hsfrat-nav-item.hsfrat-aktif a {
    color: var(--hsfrat-birincil);
    background: rgba(1, 113, 241, 0.1);
}

/* Enhanced Dropdown Styles */
.hsfrat-dropdown {
    position: relative;
}

/* Ensure dropdown toggle has same height as regular links */
.hsfrat-dropdown-toggle {
    height: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsfrat-dropdown-toggle .fa-chevron-down {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: var(--hsfrat-metin-acik);
    margin-left: 4px;
    line-height: 1; /* Fix line height for icon */
    display: inline-flex;
    align-items: center;
}

.hsfrat-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--hsfrat-birincil);
}

.hsfrat-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(229, 229, 229, 0.3);
    min-width: 280px; /* Increased width for longer text */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 8px; /* Add space between toggle and menu */
}

.hsfrat-dropdown:hover .hsfrat-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hsfrat-dropdown-menu li {
    list-style: none;
}

.hsfrat-dropdown-menu a {
    display: block;
    padding: 10px 20px; /* Reduced padding */
    color: var(--hsfrat-metin);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    background: transparent;
    white-space: nowrap; /* Prevent text wrapping */
}

.hsfrat-dropdown-menu a:hover {
    background: rgba(1, 113, 241, 0.08);
    color: var(--hsfrat-birincil);
    transform: translateX(5px);
    padding-left: 25px; /* Indent on hover */
}

/* Badge */
.hsfrat-badge {
    background: var(--hsfrat-uyari);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

/* Search Overlay */
.hsfrat-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsfrat-search-overlay.hsfrat-aktif {
    opacity: 1;
    visibility: visible;
}

.hsfrat-search-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.hsfrat-search-overlay.hsfrat-aktif .hsfrat-search-content {
    transform: scale(1);
}

.hsfrat-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hsfrat-search-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--hsfrat-metin);
    margin: 0;
}

.hsfrat-search-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--hsfrat-metin-acik);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hsfrat-search-close:hover {
    background: var(--hsfrat-arkaplan-alt);
    color: var(--hsfrat-metin);
}

.hsfrat-search-input-group {
    display: flex;
    gap: 0;
    background: var(--hsfrat-arkaplan-alt);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hsfrat-search-input-group:focus-within {
    border-color: var(--hsfrat-birincil);
    box-shadow: 0 0 0 3px rgba(1, 113, 241, 0.1);
}

.hsfrat-search-input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    background: none;
    outline: none;
    color: var(--hsfrat-metin);
}

.hsfrat-search-input::placeholder {
    color: var(--hsfrat-metin-acik);
}

.hsfrat-search-submit {
    background: var(--hsfrat-birincil);
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hsfrat-search-submit:hover {
    background: var(--hsfrat-ikincil);
}

.hsfrat-search-suggestions {
    margin-top: 20px;
    text-align: center;
}

.hsfrat-search-hint {
    display: block;
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
    margin-bottom: 15px;
}

.hsfrat-search-tag {
    display: inline-block;
    background: var(--hsfrat-acik-mavi);
    color: var(--hsfrat-birincil);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hsfrat-search-tag:hover {
    background: var(--hsfrat-birincil);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 113, 241, 0.3);
}

/* Mobile Button Styles */
.hsfrat-btn-mobil {
    background: var(--hsfrat-birincil) !important;
    color: white !important;
    border-color: var(--hsfrat-birincil) !important;
}

.hsfrat-btn-mobil:hover {
    background: var(--hsfrat-ikincil) !important;
    border-color: var(--hsfrat-ikincil) !important;
}

/* Main Content Wrapper */
.hsfrat-main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hsfrat-ustbilgi.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

.hsfrat-ustbilgi.scrolled .hsfrat-nav-menu a {
    color: var(--hsfrat-birincil);
}

.hsfrat-ustbilgi.scrolled .hsfrat-dropdown-menu a {
    color: var(--hsfrat-birincil);
}

.hsfrat-ustbilgi-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.hsfrat-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--hsfrat-metin);
    font-weight: 700;
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

.hsfrat-logo img {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.hsfrat-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.hsfrat-nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* Consistent height for all menu items */
}

.hsfrat-nav-menu a:hover {
    color: var(--hsfrat-birincil);
    background: rgba(1, 113, 241, 0.1);
}

.hsfrat-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--hsfrat-birincil);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hsfrat-nav-menu a:hover::after {
    width: 60%;
}

.hsfrat-ustbilgi-aksiyonlar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hsfrat-arama-btn {
    background: var(--hsfrat-birincil);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.hsfrat-arama-btn:hover {
    background: var(--hsfrat-ikincil);
    transform: scale(1.1);
}

.hsfrat-kimlik-butonlar {
    display: flex;
    gap: 12px;
}

/* Mobil Menü */
.hsfrat-mobil-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--hsfrat-birincil);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hsfrat-mobil-menu-toggle {
        display: flex !important;
        width: 48px;
        height: 48px;
        background: rgba(1, 113, 241, 0.15);
        border: 2px solid rgba(1, 113, 241, 0.3);
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(1, 113, 241, 0.2);
    }
    
    .hsfrat-nav-menu {
        display: none !important;
    }
    
    .hsfrat-kimlik-butonlar .hsfrat-btn {
        display: none !important;
    }
    
    .hsfrat-arama-btn {
        display: none !important;
    }
}

.hsfrat-mobil-menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1003;
}

    .hsfrat-mobil-menu-toggle:hover {
        background: var(--hsfrat-ikincil);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 10px 30px rgba(29, 170, 255, 0.5);
        transform: translateY(-4px);
    }

.hsfrat-mobil-menu-toggle.hsfrat-aktif {
    background: var(--hsfrat-birincil);
    border-color: var(--hsfrat-birincil);
    box-shadow: 0 8px 25px rgba(1, 113, 241, 0.4);
    transform: scale(1.05);
}

.hsfrat-mobil-menu-toggle.hsfrat-aktif span {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(2) {
    opacity: 0;
    transform: translateX(-25px);
    background: white;
}

.hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hsfrat-nav-mobil {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--hsfrat-birincil);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    animation: slideDown 0.25s ease-out;
    padding: 15px 0;
    min-height: 250px;
}

.hsfrat-nav-mobil.hsfrat-aktif {
    display: block !important;
}

.hsfrat-nav-mobil.hsfrat-aktif {
    display: block !important;
}



.hsfrat-nav-menu-mobil {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.hsfrat-nav-menu-mobil li {
    margin-bottom: 0;
}

.hsfrat-nav-menu-mobil a {
    display: block;
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.25s ease;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 16px 8px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hsfrat-nav-menu-mobil a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hsfrat-kahraman {
    background: var(--hsfrat-acik-mavi);
    padding: 80px 0 140px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hsfrat-kahraman-icerik {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.hsfrat-kahraman-metin {
    flex: 1;
    z-index: 2;
}

.hsfrat-kahraman-baslik {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--hsfrat-metin);
}

.hsfrat-kahraman-baslik span {
    color: var(--hsfrat-birincil);
}

.hsfrat-kahraman-aciklama {
    font-size: 18px;
    color: var(--hsfrat-metin-acik);
    margin-bottom: 32px;
    max-width: 500px;
}

.hsfrat-kahraman-butonlar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hsfrat-kahraman-resim {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hsfrat-kahraman-ikon {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hsfrat-yuzme 6s ease-in-out infinite;
}

.hsfrat-kahraman-ikon svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 8px 16px rgba(79, 70, 229, 0.2));
}

.hsfrat-yuzme-kart {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: hsfrat-yuzme 8s ease-in-out infinite;
    min-width: 140px;
}

.hsfrat-yuzme-kart.hsfrat-ust-sag {
    top: 25%;
    right: 25%;
    animation-delay: 2s;
}

.hsfrat-yuzme-kart.hsfrat-alt-sol {
    bottom: 50px;
    left: 20px;
    animation-delay: 4s;
}

.hsfrat-yuzme-kart h3 {
    color: var(--hsfrat-birincil);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.hsfrat-yuzme-kart p {
    color: var(--hsfrat-metin);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

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

.hsfrat-yuzme-kart:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

/* Okul Arama Formu Section */
.hsfrat-arama-form-bolum {
    background: white;
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.hsfrat-arama-form-icerik {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.hsfrat-arama-form-baslik {
    font-size: 32px;
    color: var(--hsfrat-metin);
    margin-bottom: 15px;
    font-weight: 700;
}

.hsfrat-arama-form-altbaslik {
    font-size: 18px;
    color: var(--hsfrat-metin-acik);
    margin-bottom: 40px;
    font-weight: 400;
}

.hsfrat-arama-form {
    max-width: 800px;
    margin: 0 auto;
}

.hsfrat-form-satir {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.hsfrat-form-grup {
    text-align: left;
}

.hsfrat-form-grup label {
    display: block;
    margin-bottom: 8px;
    color: var(--hsfrat-metin);
    font-weight: 600;
    font-size: 14px;
}

.hsfrat-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--hsfrat-kenarlik);
    border-radius: 8px;
    font-size: 16px;
    color: var(--hsfrat-metin);
    background: white;
    transition: all 0.3s ease;
}

.hsfrat-form-select:focus {
    outline: none;
    border-color: var(--hsfrat-birincil);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.hsfrat-form-ikon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hsfrat-metin-acik);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.hsfrat-arama-btn-form {
    background: var(--hsfrat-birincil);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.hsfrat-arama-btn-form:hover {
    background: var(--hsfrat-ikincil);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.hsfrat-select-wrap {
    position: relative;
}

.hsfrat-select-wrap .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hsfrat-metin-acik);
    z-index: 2;
}

.hsfrat-select-wrap .hsfrat-form-select {
    padding-left: 45px;
}

/* Features Section */
.hsfrat-ozellikler {
    padding: 60px 0 80px;
    background: var(--hsfrat-arkaplan-alt);
}

.hsfrat-bolum-baslik {
    text-align: center;
    margin-bottom: 60px;
}

.hsfrat-bolum-baslik h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--hsfrat-metin);
    margin-bottom: 20px;
}

.hsfrat-bolum-altbaslik {
    font-size: 20px;
    color: var(--hsfrat-birincil);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 15px 0;
}

.hsfrat-bolum-altbaslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    border-radius: 2px;
}

.hsfrat-ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hsfrat-ozellik-kart {
    background: var(--hsfrat-acik-mavi);
    padding: 30px;
    border-radius: var(--hsfrat-yaricap);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hsfrat-ozellik-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hsfrat-ozellik-kart:hover::before {
    transform: translateX(0);
}

.hsfrat-ozellik-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--hsfrat-golge-buyuk);
}

.hsfrat-ozellik-ikon {
    width: 60px;
    height: 60px;
    background: var(--hsfrat-birincil);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.hsfrat-ozellik-baslik {
    font-size: 20px;
    font-weight: 600;
    color: var(--hsfrat-metin);
    margin-bottom: 12px;
}

.hsfrat-ozellik-aciklama {
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hsfrat-ozellik-link {
    color: var(--hsfrat-birincil);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hsfrat-ozellik-link:hover {
    color: var(--hsfrat-ikincil);
    transform: translateX(5px);
}

/* Courses Section */
.hsfrat-kurslar {
    padding: 70px 0;
    background: white;
}

.hsfrat-kurslar-baslik {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 20px;
}

.hsfrat-kurslar-sekmeler {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    padding-bottom: 5px;
}



.hsfrat-sekme-buton {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--hsfrat-kenarlik);
    border-radius: 46px;
    color: var(--hsfrat-metin);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    flex: 0 0 auto;
}

.hsfrat-sekme-buton:hover,
.hsfrat-sekme-buton.hsfrat-aktif {
    color: var(--hsfrat-birincil);
    background: var(--hsfrat-acik-mavi);
    border-color: var(--hsfrat-acik-mavi);
}

/* Responsive button layout for larger screens */
@media (min-width: 1200px) {
    .hsfrat-sekme-buton {
        flex: 0 0 auto;
        min-width: 120px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hsfrat-sekme-buton {
        flex: 0 0 auto;
        min-width: 100px;
    }
}

.hsfrat-kurslar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hsfrat-kurs-kart {
    background: white;
    border: 1px solid var(--hsfrat-kenarlik);
    border-radius: var(--hsfrat-yaricap);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.hsfrat-kurs-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--hsfrat-golge-buyuk);
}

.hsfrat-kurs-resim {
    position: relative;
    overflow: hidden;
}

.hsfrat-kurs-resim img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hsfrat-kurs-kart:hover .hsfrat-kurs-resim img {
    transform: scale(1.1);
}

.hsfrat-kurs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsfrat-kurs-kart:hover .hsfrat-kurs-overlay {
    opacity: 1;
}

.hsfrat-kurs-oynat-btn {
    background: var(--hsfrat-birincil);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hsfrat-kurs-oynat-btn:hover {
    background: var(--hsfrat-ikincil);
    transform: scale(1.1);
}

.hsfrat-kurs-icerik {
    padding: 20px;
}

.hsfrat-kurs-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.hsfrat-yildiz {
    color: #fbbf24;
    font-size: 16px;
}

.hsfrat-kurs-baslik {
    font-size: 18px;
    font-weight: 600;
    color: var(--hsfrat-metin);
    margin-bottom: 8px;
    line-height: 1.4;
}

.hsfrat-kurs-baslik a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hsfrat-kurs-baslik a:hover {
    color: var(--hsfrat-birincil);
}

.hsfrat-kurs-egitmen {
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
    margin-bottom: 12px;
}

.hsfrat-kurs-egitmen a {
    color: inherit;
    text-decoration: none;
}

.hsfrat-kurs-fiyat {
    font-weight: 600;
    color: var(--hsfrat-birincil);
    margin-bottom: 12px;
}

.hsfrat-kurs-bilgi {
    display: flex;
    justify-content: space-between;
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
}

/* Stats Section */
.hsfrat-istatistikler {
    padding: 70px 0;
    background: var(--hsfrat-arkaplan-alt);
}

.hsfrat-istatistikler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hsfrat-istatistik-kart {
    background: white;
    padding: 40px 30px;
    border-radius: var(--hsfrat-yaricap);
    text-align: center;
    box-shadow: var(--hsfrat-golge);
    transition: all 0.3s ease;
}

.hsfrat-istatistik-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--hsfrat-golge-buyuk);
}

.hsfrat-istatistik-sayi {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.hsfrat-istatistik-sayi.turuncu { color: #f97316; }
.hsfrat-istatistik-sayi.mor { color: var(--hsfrat-mor); }
.hsfrat-istatistik-sayi.mavi { color: var(--hsfrat-birincil); }
.hsfrat-istatistik-sayi.yesil { color: var(--hsfrat-basari); }

.hsfrat-istatistik-etiket {
    color: var(--hsfrat-metin-acik);
    font-size: 16px;
    font-weight: 500;
}

/* Testimonials Section */
.hsfrat-yorumlar {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hsfrat-yorumlar {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hsfrat-yorumlar {
        padding: 50px 0;
    }
}

.hsfrat-yorumlar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hsfrat-yorumlar-baslik {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hsfrat-yorumlar-baslik {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hsfrat-yorumlar-baslik {
        margin-bottom: 40px;
    }
}

.hsfrat-yorumlar-baslik h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--hsfrat-metin);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsfrat-yorumlar-baslik p {
    font-size: 18px;
    color: var(--hsfrat-metin-acik);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hsfrat-yorumlar-istatistikler {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hsfrat-istatistik-oge {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hsfrat-istatistik-oge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsfrat-birincil), var(--hsfrat-ikincil), var(--hsfrat-basari));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.hsfrat-istatistik-ikon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hsfrat-istatistik-ikon i {
    font-size: 24px;
    color: var(--hsfrat-birincil);
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hsfrat-istatistik-oge:hover .hsfrat-istatistik-ikon i {
    transform: scale(1.1);
}

.hsfrat-istatistik-oge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.hsfrat-istatistik-oge h4 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.hsfrat-istatistik-oge h4.yesil { 
    color: var(--hsfrat-basari);
    background: linear-gradient(135deg, var(--hsfrat-basari), #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsfrat-istatistik-oge h4.mavi { 
    color: var(--hsfrat-birincil);
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsfrat-istatistik-oge p {
    color: var(--hsfrat-metin-acik);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.hsfrat-yorumlar-slider {
    position: relative;
    z-index: 2;
}

.hsfrat-ekits-yorum-icerik {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
    /* Ensure proper container sizing for 3 slides */
    min-width: calc(400px * 3 + 60px);
}

/* Swiper slide specific styling */
.hsfrat-ekits-yorum-article.swiper-slide {
    width: 400px !important;
    max-width: 400px !important;
    flex-shrink: 0;
    box-sizing: border-box;
    /* Ensure slide is always fully visible */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Ensure proper slide container sizing */
.hsfrat-ekits-yorum-icerik {
    max-width: 100%;
    overflow: hidden;
    /* Ensure container can accommodate 3 slides */
    min-width: calc(400px * 3 + 60px); /* 3 slides + 2 gaps */
}

/* Ensure comment text is properly truncated */
.hsfrat-yorum-metin {
    word-break: break-word;
    hyphens: auto;
    line-height: 1.6;
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* Ensure text is always visible */
    color: var(--hsfrat-metin);
    font-size: 14px;
    /* Ensure text area is properly sized */
    min-height: 48px;
    padding: 0;
    margin: 0;
    /* Ensure text is always readable */
    background: transparent;
    border: none;
    outline: none;
}

/* Ensure Swiper container can handle 3 slides */
.hsfrat-ekits-yorum-icerik .swiper-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    /* Ensure wrapper can accommodate all slides */
    min-width: calc(400px * 9 + 240px); /* 9 slides + 8 gaps */
}

/* Ensure proper slide spacing */
.hsfrat-ekits-yorum-icerik .swiper-slide {
    margin-right: 30px;
    /* Ensure all slides are fully visible */
    opacity: 1;
    visibility: visible;
    /* Ensure proper slide positioning */
    position: relative;
    left: auto;
    right: auto;
}

.hsfrat-ekits-yorum-icerik .swiper-slide:last-child {
    margin-right: 0;
}

/* Force pagination to show only 3 bullets */
.hsfrat-slider-pagination .swiper-pagination-bullet:nth-child(n+4) {
    display: none !important;
}

/* Ensure Swiper container viewport is properly sized */
.hsfrat-ekits-yorum-icerik .swiper-container {
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

/* Ensure comment section container is properly sized */
.hsfrat-ekits-yorum-icerik {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    /* Ensure container can show 3 slides */
    min-width: calc(400px * 3 + 60px);
}

/* Ensure comment section works on all screen sizes */
@media (min-width: 1200px) {
    .hsfrat-ekits-yorum-icerik {
        min-width: calc(400px * 3 + 60px);
        overflow: hidden;
    }
    
    .hsfrat-ekits-yorum-article {
        width: 400px !important;
        max-width: 400px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Ensure proper slide transitions */
.hsfrat-ekits-yorum-icerik .swiper-slide {
    transition: transform 0.4s ease;
}

/* Ensure pagination bullets are properly spaced and visible */
.hsfrat-slider-pagination .swiper-pagination-bullet {
    margin: 0 6px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.hsfrat-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.hsfrat-ekits-yorum-content {
    position: relative;
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 30px;
    /* Ensure content area can accommodate all slides */
    width: calc(400px * 9 + 240px); /* 9 slides + 8 gaps */
    min-width: calc(400px * 9 + 240px);
}

.hsfrat-ekits-yorum-article {
    width: 400px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 320px; /* 2 satır yorum için optimize edilmiş yükseklik */
    height: 380px; /* 2 satır yorum için optimize edilmiş yükseklik */
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    /* Ensure card is never cut off */
    box-sizing: border-box;
    margin: 0;
}

.hsfrat-ekits-yorum-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0.7;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hsfrat-ekits-yorum-article:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

    .hsfrat-ekits-yorum-inner {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* İçeriği düzgün dağıt */
        /* Mobilde daha iyi dağılım için */
        padding: 5px 0;
        /* Ensure content is properly visible */
        overflow: visible;
    }

.hsfrat-ekits-yorum-client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hsfrat-ekits-yorum-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px; /* Tek harf için daha büyük font */
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    position: relative;
    flex-shrink: 0;
    text-align: center; /* Tek harf için merkezleme */
}

.hsfrat-ekits-yorum-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    z-index: -1;
    opacity: 0.3;
}

    .hsfrat-ekits-yorum-client-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-width: 0;
        justify-content: space-between; /* İçeriği düzgün dağıt */
        /* Mobilde daha iyi dağılım için */
        padding: 0 5px;
    }

.hsfrat-yorum-metin {
    font-size: 16px;
    color: var(--hsfrat-metin);
    flex: 1; /* Mevcut alanı doldur */
    min-height: 48px; /* 2 satır için minimum yükseklik */
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    /* 2 satırla sınırla ve 3 nokta ekle */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    hyphens: auto;
    /* Daha net görünüm için ek özellikler */
    max-height: 48px; /* 2 satır için kesin yükseklik */
    text-align: justify; /* Metni daha düzenli hizala */
    /* 3 nokta için ek optimizasyon */
    position: relative;
    padding-right: 5px; /* 3 nokta için sağ tarafta boşluk */
}

.hsfrat-ekits-yorum-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    opacity: 0.8;
}

.hsfrat-ekits-yorum-link-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hsfrat-birincil);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.hsfrat-ekits-yorum-link-icon:hover {
    background: var(--hsfrat-birincil);
    color: white;
    transform: scale(1.1);
    border-color: var(--hsfrat-birincil);
}

.hsfrat-ekits-yorum-link-icon a {
    color: inherit;
    text-decoration: none;
}

.hsfrat-slider-pagination {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hsfrat-bullets {
    display: inline-flex;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hsfrat-bullets::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.6s ease;
}

.hsfrat-bullets:hover::before {
    left: 100%;
}

.hsfrat-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    opacity: 1;
    position: relative;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.hsfrat-bullets .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hsfrat-bullets .swiper-pagination-bullet:hover::before {
    opacity: 0.3;
}

.hsfrat-bullets .swiper-pagination-bullet:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hsfrat-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--hsfrat-birincil);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
    border: 2px solid rgba(79, 70, 229, 0.3);
    z-index: 2;
}

.hsfrat-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 0.5;
    z-index: 1;
}

/* Enhanced Professional Pagination Styling */
.hsfrat-bullets .swiper-pagination-bullet {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sadece ilk 3 bullet'i göster, diğerlerini gizle */
.hsfrat-bullets .swiper-pagination-bullet:nth-child(n+4) {
    display: none !important;
}

/* Swiper tarafından oluşturulan fazla bullet'ları gizle */
.swiper-pagination-bullet:nth-child(n+4) {
    display: none !important;
}

/* 3 bullet için ek optimizasyon */
.hsfrat-bullets .swiper-pagination-bullet:nth-child(1),
.hsfrat-bullets .swiper-pagination-bullet:nth-child(2),
.hsfrat-bullets .swiper-pagination-bullet:nth-child(3) {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hsfrat-bullets .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    opacity: 0;
}

.hsfrat-bullets .swiper-pagination-bullet:hover::after {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.hsfrat-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

.hsfrat-okul-bilgi {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(29, 170, 255, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--hsfrat-birincil);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hsfrat-okul-bilgi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(29, 170, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hsfrat-okul-bilgi:hover::before {
    opacity: 1;
}

.hsfrat-okul-bilgi-metin {
    margin: 0;
    font-weight: 600;
    color: var(--hsfrat-metin);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 10px;
    flex-wrap: wrap;
}

.hsfrat-okul-bilgi-link {
    color: var(--hsfrat-birincil);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
}

.hsfrat-okul-bilgi-link:hover {
    color: var(--hsfrat-ikincil);
    transform: scale(1.1);
    background: rgba(79, 70, 229, 0.2);
}

/* Yıldız Rating Styles - Yeniden Tasarlandı */
.hsfrat-ekits-yorum-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.hsfrat-yildiz-container {
    display: flex;
    gap: 2px;
    align-items: center;
}

.hsfrat-yildiz-aktif {
    color: #FFD700;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from { filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3)); }
    to { filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6)); }
}

.hsfrat-yildiz-yarim {
    color: #FFD700;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.hsfrat-yildiz-bos {
    color: #E5E7EB;
    font-size: 16px;
}

.hsfrat-yildiz-ortalama {
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* CTA Cards Section */
.hsfrat-cta-kartlar {
    padding: 70px 0;
    background: var(--hsfrat-arkaplan-alt);
}

.hsfrat-cta-kartlar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hsfrat-cta-kart {
    padding: 50px 40px;
    border-radius: var(--hsfrat-yaricap-buyuk);
    position: relative;
    overflow: hidden;
}

.hsfrat-cta-kart.acik-mavi {
    background: var(--hsfrat-acik-mavi);
    color: var(--hsfrat-metin);
}

.hsfrat-cta-kart.beyaz {
    background: white;
    color: var(--hsfrat-metin);
    box-shadow: var(--hsfrat-golge);
}

.hsfrat-cta-kart-content {
    position: relative;
    z-index: 2;
}

.hsfrat-cta-kart-baslik {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hsfrat-cta-kart-desc {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hsfrat-cta-kart-buton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--hsfrat-birincil);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hsfrat-cta-kart-buton:hover {
    background: var(--hsfrat-ikincil);
    transform: translateY(-2px);
    box-shadow: var(--hsfrat-golge-buyuk);
}

/* FAQ Section */
.hsfrat-faq-bolum {
    padding: 70px 0;
    background: white;
}

.hsfrat-faq-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hsfrat-faq-metin {
    padding-right: 40px;
}

.hsfrat-faq-metin h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--hsfrat-metin);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hsfrat-faq-metin p {
    font-size: 18px;
    color: var(--hsfrat-metin-acik);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hsfrat-akordiyon {
    border: 1px solid var(--hsfrat-kenarlik);
    border-radius: var(--hsfrat-yaricap);
    overflow: hidden;
}

.hsfrat-akordiyon-bolum {
    border-bottom: 1px solid var(--hsfrat-kenarlik);
}

.hsfrat-akordiyon-bolum:last-child {
    border-bottom: none;
}

.hsfrat-akordiyon-baslik {
    background: none;
    border: none;
    width: 100%;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--hsfrat-metin);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.hsfrat-akordiyon-baslik:hover {
    background: var(--hsfrat-arkaplan-alt);
    color: var(--hsfrat-birincil);
    transform: translateX(5px);
}

.hsfrat-akordiyon-ikon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsfrat-akordiyon-ikon-kapali,
.hsfrat-akordiyon-ikon-acik {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
}

.hsfrat-akordiyon-ikon-kapali {
    opacity: 1;
    color: var(--hsfrat-metin-acik);
}

.hsfrat-akordiyon-ikon-acik {
    opacity: 0;
    color: var(--hsfrat-birincil);
}

.hsfrat-akordiyon-bolum.aktif .hsfrat-akordiyon-ikon-kapali,
.hsfrat-akordiyon-baslik[aria-selected="true"] .hsfrat-akordiyon-ikon-kapali {
    opacity: 0;
    transform: rotate(-90deg);
}

.hsfrat-akordiyon-bolum.aktif .hsfrat-akordiyon-ikon-acik,
.hsfrat-akordiyon-baslik[aria-selected="true"] .hsfrat-akordiyon-ikon-acik {
    opacity: 1;
    transform: rotate(0deg);
}

.hsfrat-akordiyon-baslik[aria-selected="true"] {
    background: var(--hsfrat-acik-mavi);
    color: var(--hsfrat-birincil);
    border-bottom: 2px solid var(--hsfrat-birincil);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
    transform: translateX(0);
}

.hsfrat-akordiyon-icerik {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--hsfrat-arkaplan-alt);
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.hsfrat-akordiyon-bolum.aktif .hsfrat-akordiyon-icerik,
.hsfrat-akordiyon-icerik[aria-hidden="false"],
.hsfrat-akordiyon-icerik:not([hidden]) {
    max-height: 200px;
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.hsfrat-akordiyon-icerik p {
    padding: 0;
    margin: 0;
    color: var(--hsfrat-metin-acik);
    line-height: 1.6;
    font-size: 15px;
}

.hsfrat-faq-gorsel {
    text-align: center;
}

.hsfrat-faq-gorsel img {
    max-width: 100%;
    height: auto;
    border-radius: var(--hsfrat-yaricap);
}

.hsfrat-faq-istatistikler {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.hsfrat-faq-istatistik-oge {
    text-align: center;
    padding: 30px 20px;
    background: var(--hsfrat-acik-mavi);
    border-radius: var(--hsfrat-yaricap);
}

.hsfrat-faq-istatistik-ikon {
    width: 50px;
    height: 50px;
    background: var(--hsfrat-birincil);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 20px;
}

.hsfrat-faq-istatistik-icerik h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--hsfrat-metin);
    margin-bottom: 8px;
}

.hsfrat-faq-istatistik-icerik p {
    color: var(--hsfrat-metin-acik);
    font-size: 14px;
    margin: 0;
}

/* Footer Bölümü - Yeniden Tasarlandı */
.hsfrat-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.hsfrat-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="60" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}

.hsfrat-footer-icerik {
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.hsfrat-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0;
    position: relative;
}

.hsfrat-footer-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    border-radius: 2px;
}

.hsfrat-footer-newsletter {
    text-align: center;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hsfrat-footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hsfrat-newsletter-icerik {
    position: relative;
    z-index: 2;
}

.hsfrat-newsletter-icerik h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsfrat-newsletter-icerik h2 span {
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsfrat-newsletter-icerik p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hsfrat-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hsfrat-form-wrapper {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hsfrat-form-wrapper:focus-within {
    border-color: var(--hsfrat-birincil);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
}

.hsfrat-form-wrapper input {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 30px;
    color: white;
    font-size: 16px;
    outline: none;
}

.hsfrat-form-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hsfrat-newsletter-submit {
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.hsfrat-newsletter-submit::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;
}

.hsfrat-newsletter-submit:hover::before {
    left: 100%;
}

.hsfrat-newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.hsfrat-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.hsfrat-footer-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.hsfrat-footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    border-radius: 2px;
}

.hsfrat-footer-section p,
.hsfrat-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    font-size: 15px;
}

.hsfrat-footer-section a:hover {
    color: white;
    transform: translateX(8px);
}

.hsfrat-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.hsfrat-social-icon {
    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;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hsfrat-social-icon:hover {
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.hsfrat-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hsfrat-footer-links li {
    margin-bottom: 15px;
}

.hsfrat-footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hsfrat-footer-contact li span {
    color: var(--hsfrat-birincil);
    width: 20px;
    text-align: center;
}

.hsfrat-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.hsfrat-footer-bottom-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hsfrat-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    transition: all 0.3s ease;
}

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

.hsfrat-footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hsfrat-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: center;
}

.hsfrat-focused-text {
    color: var(--hsfrat-birincil);
    font-weight: 600;
}

.hsfrat-footer-apps {
    display: flex;
    gap: 15px;
}

.hsfrat-footer-apps img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.hsfrat-footer-apps img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

/* Responsive Design - Yorumlar ve Footer */
@media (max-width: 1024px) {
    .hsfrat-yorumlar-istatistikler {
        gap: 40px;
    }
    
    .hsfrat-istatistik-oge {
        padding: 25px;
    }
    
    .hsfrat-istatistik-oge h4 {
        font-size: 36px;
    }
    
    .hsfrat-ekits-yorum-article {
        flex: 0 0 350px;
        padding: 30px;
        height: 320px; /* Tablet için 2 satır yorum için optimize edilmiş yükseklik */
        min-height: 280px; /* Tablet için minimum yükseklik */
    }
    
    /* Tablet için yorum metni iyileştirmesi */
    .hsfrat-yorum-metin {
        font-size: 16px;
        -webkit-line-clamp: 2; /* Tablet'te de 2 satır */
        min-height: 48px; /* Tablet'te 2 satır için minimum yükseklik */
        max-height: 48px; /* Tablet'te 2 satır için kesin yükseklik */
        text-align: justify; /* Metni daha düzenli hizala */
        line-height: 1.6;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hsfrat-ekits-yorum-content {
        gap: 20px;
        margin: 0 -20px;
    }
    
    .hsfrat-ekits-yorum-article {
        margin: 0 10px;
    }
    
    /* CTA Kartlar tablet düzenlemesi */
    .hsfrat-cta-kartlar-grid {
        gap: 25px;
    }
    
    .hsfrat-cta-kart {
        padding: 40px 30px;
    }
    
    .hsfrat-cta-kart-baslik {
        font-size: 28px;
    }
    
    .hsfrat-cta-kart-desc {
        font-size: 16px;
    }
    
    .hsfrat-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hsfrat-footer-newsletter {
        padding: 40px 30px;
    }
    
    .hsfrat-newsletter-icerik h2 {
        font-size: 36px;
    }
    
    /* Tablet'te sadece 3 bullet göster */
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(n+4) {
        display: none !important;
    }
    
    /* Tablet'te 3 bullet için ek optimizasyon */
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(1),
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(2),
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(3) {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 768px) {
    .hsfrat-nav-desktop {
        display: none;
    }
    
    .hsfrat-logo-text {
        display: none;
    }
    
    .hsfrat-ustbilgi-icerik {
        padding: 15px 0;
    }
    
    .hsfrat-ustbilgi-aksiyonlar {
        gap: 10px;
    }
    
    .hsfrat-kimlik-butonlar .hsfrat-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hsfrat-search-overlay .hsfrat-search-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .hsfrat-search-header h3 {
        font-size: 20px;
    }
    
    .hsfrat-search-input,
    .hsfrat-search-submit {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .hsfrat-search-tag {
        padding: 6px 12px;
        font-size: 12px;
        margin: 3px;
    }
    
    .hsfrat-mobil-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        background: var(--hsfrat-birincil);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 1px 4px rgba(1, 113, 241, 0.2);
        position: relative;
        z-index: 1002;
    }
    
    .hsfrat-mobil-menu-toggle:hover {
        background: var(--hsfrat-ikincil);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 8px rgba(29, 170, 255, 0.3);
        transform: translateY(-1px);
    }
    
    .hsfrat-mobil-menu-toggle.hsfrat-aktif {
        background: var(--hsfrat-birincil);
        border-color: var(--hsfrat-birincil);
        box-shadow: 0 8px 25px rgba(1, 113, 241, 0.4);
        transform: scale(1.05);
    }
    
    .hsfrat-mobil-menu-toggle.hsfrat-aktif span {
        background: white;
    }
    
    .hsfrat-mobil-menu-toggle span {
        background: white;
        width: 20px;
        height: 2px;
        margin: 0 auto;
        display: block;
        transition: all 0.3s ease;
    }
    
    .hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hsfrat-mobil-menu-toggle.hsfrat-aktif span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hsfrat-kahraman-icerik {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hsfrat-kahraman-baslik {
        font-size: 36px;
    }
    
    .hsfrat-form-satir {
        grid-template-columns: 1fr;
    }
    
    .hsfrat-ozellikler-grid {
        grid-template-columns: 1fr;
    }
    
    .hsfrat-kurslar-grid {
        grid-template-columns: 1fr;
    }
    
    .hsfrat-istatistikler-grid {
        grid-template-columns: 1fr;
    }
    
    .hsfrat-yorumlar-istatistikler {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .hsfrat-istatistik-oge {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .hsfrat-istatistik-oge h4 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .hsfrat-istatistik-oge p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .hsfrat-istatistik-ikon {
        margin-bottom: 12px;
    }
    
    .hsfrat-istatistik-ikon i {
        font-size: 20px;
    }
    
    .hsfrat-ekits-yorum-article {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0;
        padding: 25px;
        min-height: 280px; /* Mobilde 2 satır yorum için optimize edilmiş yükseklik */
        height: 300px; /* Mobilde 2 satır yorum için optimize edilmiş yükseklik */
        /* Mobilde daha iyi görünüm için */
        margin: 0 auto;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        /* Mobilde daha iyi responsive */
        border-radius: 20px;
        backdrop-filter: blur(15px);
        /* Mobilde tek yorum kartı için optimize */
        flex-shrink: 0;
    }
    
    .hsfrat-ekits-yorum-content {
        gap: 15px;
        margin: 0 -15px;
    }
    
    .hsfrat-ekits-yorum-article {
        margin: 0 8px;
        /* Mobilde tek yorum kartı için optimize */
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .hsfrat-ekits-yorum-client-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
        margin-bottom: 20px;
        /* Mobilde daha iyi görünüm için */
        padding: 0 10px;
    }
    
    .hsfrat-ekits-yorum-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .hsfrat-ekits-yorum-rating {
        margin-top: 15px;
    }
    
    .hsfrat-yildiz-container {
        gap: 1px;
    }
    
    .hsfrat-yildiz-aktif,
    .hsfrat-yildiz-yarim,
    .hsfrat-yildiz-bos {
        font-size: 14px;
    }
    
    .hsfrat-yildiz-ortalama {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .hsfrat-ekits-yorum-quote-icon {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .hsfrat-okul-bilgi-metin {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hsfrat-bullets {
        padding: 10px 20px;
        gap: 8px;
        margin-top: 30px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .hsfrat-bullets .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        transition: all 0.3s ease;
    }
    
    .hsfrat-bullets .swiper-pagination-bullet:hover {
        transform: scale(1.15);
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hsfrat-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.6);
    }
    
    .hsfrat-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hsfrat-footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hsfrat-footer-bottom-icerik {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* CTA Kartlar mobil düzenlemesi */
    .hsfrat-cta-kartlar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hsfrat-cta-kart {
        padding: 30px 25px;
        text-align: center;
    }
    
    .hsfrat-cta-kart-baslik {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hsfrat-cta-kart-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hsfrat-cta-kart-buton {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
    
    /* Mobil için ek düzenlemeler */
    .hsfrat-kahraman {
        padding: 60px 0 100px;
        margin-top: 70px;
    }
    
    .hsfrat-kahraman-baslik {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hsfrat-kahraman-aciklama {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hsfrat-kahraman-butonlar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hsfrat-kahraman-butonlar .hsfrat-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Mobilde hero öğelerini gizle */
    .hsfrat-kahraman-ikon,
    .hsfrat-yuzme-kart,
    .hsfrat-yuzme-kart.hsfrat-ust-sag,
    .hsfrat-yuzme-kart.hsfrat-alt-sol {
        display: none !important;
    }
    
    /* CTA kartları mobilde dikey düzen */
    .hsfrat-cta-kartlar-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .hsfrat-cta-kart {
        width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hsfrat-yorumlar-baslik h2 {
        font-size: 28px;
    }
    
    .hsfrat-yorumlar-baslik p {
        font-size: 16px;
    }
    
    .hsfrat-istatistik-oge {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .hsfrat-istatistik-oge h4 {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .hsfrat-istatistik-oge p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .hsfrat-istatistik-ikon {
        margin-bottom: 10px;
    }
    
    .hsfrat-istatistik-ikon i {
        font-size: 18px;
    }
    
    .hsfrat-ekits-yorum-article {
        padding: 20px;
        min-height: 200px;
        height: 300px; /* Mobil için sabit yükseklik */
    }
    
    .hsfrat-ekits-yorum-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px; /* Tek harf için daha büyük */
    }
    
    .hsfrat-ekits-yorum-rating {
        margin-top: 12px;
    }
    
    .hsfrat-yildiz-container {
        gap: 1px;
    }
    
    .hsfrat-yildiz-aktif,
    .hsfrat-yildiz-yarim,
    .hsfrat-yildiz-bos {
        font-size: 13px;
    }
    
    .hsfrat-yildiz-ortalama {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .hsfrat-ekits-yorum-quote-icon {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .hsfrat-yorum-metin {
        font-size: 15px;
        -webkit-line-clamp: 2; /* Mobilde de 2 satır */
        min-height: 42px; /* Mobilde 2 satır için minimum yükseklik */
        max-height: 42px; /* Mobilde 2 satır için kesin yükseklik */
        text-align: justify; /* Metni daha düzenli hizala */
        /* Mobilde daha net görünüm için */
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Mobilde 3 nokta için ek optimizasyon */
        position: relative;
        padding-right: 3px; /* Mobilde 3 nokta için sağ tarafta boşluk */
        margin-bottom: 15px; /* Mobilde daha az alt boşluk */
    }
    
    .hsfrat-bullets {
        padding: 8px 15px;
        gap: 6px;
        margin-top: 25px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hsfrat-bullets .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        transition: all 0.3s ease;
    }
    
    /* Mobilde sadece 3 bullet göster */
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(n+4) {
        display: none !important;
    }
    
    /* Mobilde 3 bullet için ek optimizasyon */
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(1),
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(2),
    .hsfrat-bullets .swiper-pagination-bullet:nth-child(3) {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobilde pagination'ı daha belirgin yap */
    .hsfrat-bullets {
        background: rgba(255, 255, 255, 0.98);
        border: 2px solid rgba(79, 70, 229, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .hsfrat-bullets .swiper-pagination-bullet:hover {
        transform: scale(1.2);
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hsfrat-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        transform: scale(1.4);
        box-shadow: 0 0 12px rgba(79, 70, 229, 0.7);
    }
    
    /* CTA Kartlar küçük ekran düzenlemesi */
    .hsfrat-cta-kartlar {
        padding: 50px 0;
    }
    
    .hsfrat-cta-kart {
        padding: 25px 20px;
    }
    
    .hsfrat-cta-kart-baslik {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hsfrat-cta-kart-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hsfrat-cta-kart-buton {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Küçük ekranlar için ek düzenlemeler */
    .hsfrat-kahraman {
        padding: 50px 0 80px;
        margin-top: 60px;
    }
    
    .hsfrat-kahraman-baslik {
        font-size: 28px;
    }
    
    .hsfrat-kahraman-aciklama {
        font-size: 15px;
    }
    
    .hsfrat-konteyner {
        padding: 0 15px;
    }
    
    .hsfrat-ustbilgi-icerik {
        padding: 15px 0;
    }
    
    .hsfrat-logo img {
        height: 35px;
    }
    
    .hsfrat-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hsfrat-arama-form-bolum {
        padding: 40px 0;
        margin-top: -80px;
    }
    
    .hsfrat-arama-form-icerik {
        padding: 30px 20px;
    }
    
    .hsfrat-arama-form-baslik {
        font-size: 24px;
    }
    
    .hsfrat-bolum-baslik h2 {
        font-size: 32px;
    }
    
    .hsfrat-ozellik-kart {
        padding: 20px;
    }
    
    .hsfrat-ozellik-ikon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hsfrat-ozellik-baslik {
        font-size: 18px;
    }
    
    .hsfrat-faq-icerik {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hsfrat-faq-metin {
        padding-right: 0;
    }
    
    .hsfrat-faq-metin h2 {
        font-size: 32px;
    }
}

/* Swiper Slider Styles */
.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition-property: transform;
    will-change: transform;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: var(--hsfrat-kenarlik);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.swiper-pagination-bullet:hover {
    background: rgba(79, 70, 229, 0.3);
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--hsfrat-birincil);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}

/* Testimonial Specific Styles */
.hsfrat-ekits-yorum-article {
    background: white;
    padding: 40px;
    border-radius: var(--hsfrat-yaricap);
    box-shadow: var(--hsfrat-golge);
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.hsfrat-ekits-yorum-avatar-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hsfrat-ekits-yorum-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.hsfrat-ekits-yorum-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hsfrat-ekits-yorum-client-info {
    flex: 1;
}

.hsfrat-ekits-yorum-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--hsfrat-metin);
    margin-bottom: 5px;
}

.hsfrat-ekits-yorum-position {
    font-size: 14px;
    color: var(--hsfrat-metin-acik);
    margin-bottom: 15px;
}

.hsfrat-ekits-yorum-client-content {
    color: var(--hsfrat-metin);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.hsfrat-ekits-yorum-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--hsfrat-birincil);
    font-size: 24px;
    opacity: 0.8;
    background: rgba(79, 70, 229, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsfrat-ekits-yorum-link-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--hsfrat-birincil);
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: rgba(79, 70, 229, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.hsfrat-ekits-yorum-link-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    background: var(--hsfrat-birincil);
    color: white;
    border-color: var(--hsfrat-birincil);
}

/* Additional Utility Classes */
.hsfrat-text-center { text-align: center; }
.hsfrat-text-left { text-align: left; }
.hsfrat-text-right { text-align: right; }

/* Performans optimizasyonu */
.hsfrat-ustbilgi,
.hsfrat-footer,
.hsfrat-kahraman,
.hsfrat-arama-form-bolum {
    will-change: transform;
}

/* GPU hızlandırma */
.hsfrat-animated,
.hsfrat-fade-in,
.hsfrat-slide-left,
.hsfrat-slide-right {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Smooth transitions */
.hsfrat-btn,
.hsfrat-ozellik-kart,
.hsfrat-kurs-kart,
.hsfrat-istatistik-kart,
.hsfrat-ekits-yorum-article {
    will-change: transform;
    backface-visibility: hidden;
}

.hsfrat-mb-0 { margin-bottom: 0; }
.hsfrat-mb-1 { margin-bottom: 10px; }
.hsfrat-mb-2 { margin-bottom: 20px; }
.hsfrat-mb-3 { margin-bottom: 30px; }
.hsfrat-mb-4 { margin-bottom: 40px; }

.hsfrat-mt-0 { margin-top: 0; }
.hsfrat-mt-1 { margin-top: 10px; }
.hsfrat-mt-2 { margin-top: 20px; }
.hsfrat-mt-3 { margin-top: 30px; }
.hsfrat-mt-4 { margin-top: 40px; }

.hsfrat-p-0 { padding: 0; }
.hsfrat-p-1 { padding: 10px; }
.hsfrat-p-2 { padding: 20px; }
.hsfrat-p-3 { padding: 30px; }
.hsfrat-p-4 { padding: 40px; }

.hsfrat-rounded { border-radius: var(--hsfrat-yaricap); }
.hsfrat-rounded-lg { border-radius: var(--hsfrat-yaricap-buyuk); }
.hsfrat-rounded-full { border-radius: 50%; }

.hsfrat-shadow { box-shadow: var(--hsfrat-golge); }
.hsfrat-shadow-lg { box-shadow: var(--hsfrat-golge-buyuk); }

.hsfrat-transition { transition: all 0.3s ease; }
.hsfrat-transition-fast { transition: all 0.15s ease; }
.hsfrat-transition-slow { transition: all 0.5s ease; }

/* Loading animasyonu - Kaldırıldı */

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

/* Critical CSS optimizations */
body {
    font-display: swap;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce repaints */
.hsfrat-ustbilgi {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize transitions */
.hsfrat-btn,
.hsfrat-nav-menu a,
.hsfrat-mobil-menu-toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom easing functions */
.easeInOutQuart {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Reduce paint operations */
.hsfrat-ustbilgi,
.hsfrat-footer,
.hsfrat-kahraman,
.hsfrat-arama-form-bolum {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize animations */
.hsfrat-animated,
.hsfrat-fade-in,
.hsfrat-slide-left,
.hsfrat-slide-right {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Optimize transitions */
.hsfrat-btn,
.hsfrat-ozellik-kart,
.hsfrat-kurs-kart,
.hsfrat-istatistik-kart,
.hsfrat-ekits-yorum-article {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduce layout thrashing */
.hsfrat-konteyner {
    contain: layout style;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Print Styles */
@media print {
    .hsfrat-ustbilgi,
    .hsfrat-footer,
    .hsfrat-arama-form-bolum {
        display: none;
    }
    
    .hsfrat-kahraman {
        margin-top: 0;
        padding: 40px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .hsfrat-konteyner {
        max-width: none;
        padding: 0;
    }
}

.hsfrat-nav-desktop {
    display: flex;
    align-items: center;
}

.hsfrat-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

/* Testimonial Classes */
.hsfrat-ekits-yorum-article {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--hsfrat-kenarlik);
    margin: 0 16px;
    position: relative;
}

.hsfrat-ekits-yorum-inner {
    position: relative;
}

.hsfrat-ekits-yorum-client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hsfrat-ekits-yorum-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hsfrat-birincil), var(--hsfrat-ikincil));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.hsfrat-ekits-yorum-client-content {
    flex: 1;
}

.hsfrat-ekits-yorum-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--hsfrat-birincil);
    font-size: 24px;
    opacity: 0.3;
}

.hsfrat-slider-pagination {
    margin-top: 30px;
    text-align: center;
}

.hsfrat-bullets {
    display: inline-flex;
    gap: 8px;
}

.hsfrat-okul-bilgi {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--hsfrat-birincil);
    padding: 6px 12px;
    margin-top: 8px;
}

.hsfrat-okul-bilgi-metin {
    margin: 0;
    font-weight: 600;
    color: var(--hsfrat-metin);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hsfrat-okul-bilgi-link {
    color: var(--hsfrat-birincil);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hsfrat-okul-bilgi-link:hover {
    color: var(--hsfrat-ikincil);
    transform: scale(1.1);
}

/* Yıldız Rating Styles */
.hsfrat-yildiz-aktif {
    color: #FFD700;
    margin-right: 2px;
    font-size: 20px;
}

.hsfrat-yildiz-yarim {
    color: #FFD700;
    margin-right: 2px;
    font-size: 20px;
}

.hsfrat-yildiz-bos {
    color: #E5E7EB;
    margin-right: 2px;
    font-size: 20px;
}

.hsfrat-yildiz-ortalama {
    margin-left: 8px;
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
}

.hsfrat-yorum-metin {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 2.8em;
}

/* Compact Navigation Styles */
.hsfrat-nav-compact {
    gap: 20px !important; /* Reduced gap between menu items */
}

.hsfrat-nav-compact li a {
    padding: 10px 16px !important; /* Reduced padding */
    font-size: 15px !important; /* Slightly smaller font */
}

/* Mobile Dropdown Improvements */
.hsfrat-dropdown-mobil .fa-chevron-down {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hsfrat-dropdown-mobil.hsfrat-aktif .fa-chevron-down {
    transform: rotate(180deg);
}

.hsfrat-dropdown-menu-mobil {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 8px 16px;
}

.hsfrat-dropdown-mobil.hsfrat-aktif .hsfrat-dropdown-menu-mobil {
    max-height: 500px; /* Adjust based on content */
}

.hsfrat-dropdown-menu-mobil a {
    padding: 12px 20px;
    margin: 4px 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .hsfrat-nav-compact {
        gap: 15px !important;
    }
    
    .hsfrat-nav-compact li a {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 992px) {
    .hsfrat-nav-compact {
        gap: 12px !important;
    }
    
    .hsfrat-nav-compact li a {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }
}



/* ===== TERCIH SAYISI BADGE STİLLERİ ===== */
.hsfrat-tercih-badge {
    background: #dc3545;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    display: inline-block;
    min-width: 22px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    border: 2px solid #dc3545;
}

.hsfrat-btn .hsfrat-tercih-badge {
    background: #dc3545;
    color: white;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 10px;
    margin-left: 6px;
    min-width: 20px;
    border: 2px solid #dc3545;
}

/* Mobil için badge optimizasyonu */
@media (max-width: 768px) {
    .hsfrat-tercih-badge {
        font-size: 12px;
        padding: 3px 6px;
        min-width: 20px;
        margin-left: 6px;
    }
    
    .hsfrat-btn .hsfrat-tercih-badge {
        font-size: 11px;
        padding: 3px 6px;
        min-width: 18px;
        margin-left: 5px;
    }
}

/* Küçük ekranlar için badge optimizasyonu */
@media (max-width: 480px) {
    .hsfrat-tercih-badge {
        font-size: 11px;
        padding: 2px 5px;
        min-width: 18px;
        margin-left: 4px;
    }
    
    .hsfrat-btn .hsfrat-tercih-badge {
        font-size: 10px;
        padding: 2px 5px;
        min-width: 16px;
        margin-left: 4px;
    }
}

/* ===== KURSLAR BÖLÜMÜ RESPONSIVE TASARIM ===== */
@media (max-width: 1200px) {
    .hsfrat-kurslar-baslik {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hsfrat-kurslar-sekmeler {
        width: 100%;
        justify-content: flex-start;
    }
    
    .hsfrat-kurslar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .hsfrat-kurslar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hsfrat-sekme-buton {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hsfrat-kurslar-baslik {
        margin-bottom: 30px;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .hsfrat-kurslar-sekmeler {
        gap: 8px;
        padding-bottom: 8px;
        justify-content: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hsfrat-sekme-buton {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 25px;
        text-align: center;
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
    
    .hsfrat-bolum-altbaslik {
        font-size: 18px;
        margin: 15px auto 20px;
        text-align: center;
    }
    
    .hsfrat-kurslar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hsfrat-kurslar-baslik {
        margin-bottom: 25px;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .hsfrat-kurslar-sekmeler {
        gap: 6px;
        padding-bottom: 10px;
        justify-content: center;
        margin-bottom: 12px;
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hsfrat-sekme-buton {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 20px;
        text-align: center;
        flex: 0 0 calc(50% - 3px);
        max-width: calc(50% - 3px);
    }
    
    .hsfrat-bolum-altbaslik {
        font-size: 16px;
        margin: 12px auto 18px;
        text-align: center;
    }
    
    .hsfrat-kurslar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===================================
   3'LÜ BUTON TASARIMI - EN İYİ LİSELER
   =================================== */

.hsfrat-3lu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.hsfrat-3lu-kart {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hsfrat-3lu-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hsfrat-3lu-kart:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.hsfrat-3lu-kart:hover::before {
    transform: scaleX(1);
}

.hsfrat-3lu-ikon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.hsfrat-3lu-kart:hover .hsfrat-3lu-ikon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.hsfrat-3lu-ikon i {
    font-size: 32px;
    color: #ffffff;
}

.hsfrat-3lu-kart h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hsfrat-3lu-kart p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 42px;
}

.hsfrat-3lu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hsfrat-3lu-btn::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;
}

.hsfrat-3lu-btn:hover::before {
    left: 100%;
}

.hsfrat-3lu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.hsfrat-3lu-btn span {
    position: relative;
    z-index: 1;
}

.hsfrat-3lu-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hsfrat-3lu-btn:hover i {
    transform: translateX(3px);
}

/* SEO Açıklama Bölümü */
.hsfrat-seo-aciklama {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border-left: 6px solid #007bff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hsfrat-seo-icerik p {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 20px;
}

.hsfrat-seo-icerik p:last-child {
    margin-bottom: 0;
}

/* Responsive Tasarım - 3'lü Grid */
@media (max-width: 1200px) {
    .hsfrat-3lu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hsfrat-3lu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hsfrat-3lu-kart {
        padding: 25px 20px;
    }
    
    .hsfrat-3lu-ikon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
    
    .hsfrat-3lu-ikon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hsfrat-3lu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hsfrat-3lu-kart {
        padding: 20px 15px;
    }
    
    .hsfrat-3lu-ikon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .hsfrat-3lu-ikon i {
        font-size: 24px;
    }
    
    .hsfrat-3lu-kart h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hsfrat-3lu-kart p {
        font-size: 13px;
        margin-bottom: 20px;
        min-height: 39px;
    }
    
    .hsfrat-3lu-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hsfrat-seo-aciklama {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .hsfrat-seo-icerik p {
        font-size: 15px;
        line-height: 1.7;
        text-indent: 15px;
    }
}

@media (max-width: 576px) {
    .hsfrat-3lu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hsfrat-3lu-kart {
        padding: 25px 20px;
    }
    
    .hsfrat-3lu-ikon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .hsfrat-3lu-ikon i {
        font-size: 28px;
    }
    
    .hsfrat-3lu-kart h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .hsfrat-3lu-kart p {
        font-size: 14px;
        margin-bottom: 25px;
        min-height: auto;
    }
    
    .hsfrat-3lu-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .hsfrat-seo-aciklama {
        padding: 25px 20px;
        margin-top: 25px;
    }
    
    .hsfrat-seo-icerik p {
        font-size: 14px;
        line-height: 1.6;
        text-indent: 10px;
    }
}

/* Tüm Okulları Görme Butonu Stilleri */
.hsfrat-tum-okullar-buton {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hsfrat-tum-okullar-buton:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hsfrat-tum-okullar-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hsfrat-tum-okullar-link:hover {
    background: #ffffff;
    color: #667eea;
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hsfrat-tum-okullar-link i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: #667eea;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hsfrat-tum-okullar-buton {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .hsfrat-tum-okullar-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hsfrat-tum-okullar-link i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Fen Liseleri Sayfası Stilleri */
.hsfrat-okul-turleri {
    margin-bottom: 3rem;
}

.hsfrat-okul-turleri-baslik {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hsfrat-okul-turleri-baslik h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hsfrat-okul-turleri-baslik p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.hsfrat-okul-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hsfrat-okul-kart {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.hsfrat-okul-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hsfrat-okul-resim {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hsfrat-okul-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hsfrat-okul-kart:hover .hsfrat-okul-resim img {
    transform: scale(1.05);
}

.hsfrat-okul-icerik {
    padding: 1.5rem;
}

.hsfrat-okul-baslik {
    margin-bottom: 1rem;
}

.hsfrat-okul-baslik h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.hsfrat-okul-baslik h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hsfrat-okul-baslik h3 a:hover {
    color: #3498db;
}

.hsfrat-okul-tur {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hsfrat-okul-tur i {
    margin-left: 0.3rem;
    color: #2ecc71;
}

.hsfrat-okul-bilgi {
    margin-bottom: 1.5rem;
}

.hsfrat-okul-bilgi p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.hsfrat-okul-detay {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hsfrat-okul-detay-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.hsfrat-okul-detay-item i {
    color: #3498db;
    font-size: 1rem;
}

.hsfrat-okul-detay-item span {
    font-weight: 500;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hsfrat-okul-turleri-baslik h2 {
        font-size: 1.8rem;
    }
    
    .hsfrat-okul-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hsfrat-okul-kart {
        margin-bottom: 1rem;
    }
    
    .hsfrat-okul-icerik {
        padding: 1.2rem;
    }
    
    .hsfrat-okul-detay {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hsfrat-okul-turleri-baslik h2 {
        font-size: 1.5rem;
    }
    
    .hsfrat-okul-turleri-baslik p {
        font-size: 1rem;
    }
    
    .hsfrat-okul-icerik {
        padding: 1rem;
    }
    
    .hsfrat-okul-baslik h3 {
        font-size: 1.2rem;
    }
}


