@charset "UTF-8";
/* =========================================================
   Akıllı Depo — custom.css
   ====================================================== */


/* =========================================================
   1. HERO SLIDER - CLS Fix
   ====================================================== */

#hero-slider {
    height: 620px;
    contain: layout style;
}

@media (max-width: 767px) {
    #hero-slider { height: 520px; }
}

/* =========================================================
   2. FONTAWESOME ICON FIX - Yer tutucu ile kayma önleme
   Problem: Font yüklendiğinde ikonlar boyut değiştiriyor
   ====================================================== */

/* FontAwesome ikonları için sabit boyut */
.fa {
    display: inline-block;
    width: 1em;
    height: 1em;
    min-width: 1em;
    text-align: center;
    vertical-align: middle;
}

/* Slider navigation ikonları */
.slider-nav .fa {
    width: 18px;
    height: 18px;
    line-height: 18px;
}

/* CTA buton ikonları */
.cta-btn .fa {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

/* Floating buttons */
.floating-btn .fa {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

/* =========================================================
   5. SPECIFICATION SECTION - Sabit alan rezervasyonu
   Problem: Kartlar yüklendiğinde içerik kayıyor
   ====================================================== */

.w3l-specification-6 {
    contain: layout style;
}

.w3l-specification-6 .title-content {
    min-height: 120px; /* Başlık alanı sabit */
}

.w3l-specification-6 .card {
    min-height: 500px; /* Kart minimum yüksekliği */
}

@media (max-width: 991px) {
    .w3l-specification-6 .card {
        min-height: auto; /* Mobilde esnek */
    }
}

/* =========================================================
   6. IMAGE PLACEHOLDER - Görsel yüklenmeden önce alan ayır
   Problem: Görseller yüklendiğinde layout shift
   ====================================================== */

/* Slider background image */
.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #1a1a2e; /* Fallback renk */
}

/* Kart görselleri için aspect-ratio */
.w3l-specification-6 .card img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

/* =========================================================
   7. CSS CONTAINMENT - Render performansı
   ====================================================== */

/* Ana bölümler için containment */
.w3l-main-slider,
.price-cta-banner,
.w3l-specification-6,
.stats-container {
    contain: layout style;
}

/* =========================================================
   8. WILL-CHANGE OPTIMIZATION
   Animasyonlu elementler için GPU optimizasyonu
   ====================================================== */

.slide {
    will-change: opacity, visibility;
}

.slide.active {
    will-change: auto; /* Aktif slide'da kaldır - bellek tasarrufu */
}

/* =========================================================
   AKILLI DEPO - CUSTOM CSS (FULL OPTIMIZED VERSION)
   Bu dosya sadece projeye özel stiller içindir.
   Bootstrap + tema dosyası: style-starter.css
   ====================================================== */

/* =========================================================
   0. CSS DEĞİŞKENLERİ
   Tüm renk ve ölçüleri buradan yönetin
   ====================================================== */

:root {
    /* Ana Renkler */
    --primary: #d63447;
    --secondary: #d63447;
    --dark: #101923;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    
    /* Arka Plan Renkleri */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
    
    /* Border & Shadow */
    --border-light: #f5f5f5;
    --border-gray: #e0e0e0;
    --border-dark: #dddddd;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-pill: 25px;
    
    /* Shadow */
    --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 35px rgba(214, 52, 71, 0.15);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.4s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* Dark Mode Değişkenleri */
[data-theme="dark"] {
    --primary: #ff5e6d;
    --secondary: #ff8b66;
    --dark: #ffffff;
    --text-dark: #f0f0f0;
    --text-gray: #b0b0b0;
    --text-light: #808080;
    --bg-light: #1a1a1a;
    --bg-white: #0d0d0d;
    --bg-gray: #1f1f1f;
    --border-light: #2a2a2a;
    --border-gray: #333333;
    --border-dark: #444444;
}

/* =========================================================
   1. GENEL YARDIMCI SINIFLAR & BASE STYLES
   ====================================================== */

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

/* Section başlığı - ortak kullanım */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2,
.section-title .hny-title {
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.section-title p {
    margin: 0;
    color: var(--text-gray);
}

/* Küçük vurgu metni */
.badge-text {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

/* Focus Visible (Erişilebilirlik) */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to Content Link (Erişilebilirlik) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--bg-white);
    padding: var(--spacing-sm);
    text-decoration: none;
    z-index: 10000;
    border-radius: var(--radius-sm);
}

.skip-to-content:focus {
    top: 0;
}

/* =========================================================
   2. SCROLL PROGRESS BAR
   Sayfa scroll durumunu gösteren üst çubuk
   ====================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* =========================================================
   3. STICKY HEADER
   Scroll edildiğinde üstte sabit kalan menü
   ====================================================== */

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
    z-index: 999;
}

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

/* =========================================================
   4. HERO BANNER ANIMATIONS
   Ana banner bölümü animasyonları
   ====================================================== */

.banner-infhny {
    animation: fadeInUp 1s ease-out;
}

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

.banner-infhny span {
    display: inline-block;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.banner-infhny h3 {
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.banner-infhny p {
    animation: fadeIn 1.2s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =========================================================
   5. FLOATING ACTION BUTTONS
   WhatsApp ve Telefon butonları
   ====================================================== */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;  /* 1rem yerine 15px */
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
    font-size: 1.5rem;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: var(--primary);
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--bg-white);
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* =========================================================
   6. TABLO BİLEŞENİ (.tablo)
   Örn: <div class="tablo"> ... </div>
   ====================================================== */

.tablo {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
}

/* Tablo başlığı */
.tablo__title,
.tablo h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Gerçek tablo alanı */
.tablo table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
}

.tablo th,
.tablo td {
    border: 1px solid var(--border-dark);
    padding: 0.75rem;
    text-align: center;
}

.tablo th {
    background-color: #0073e6;
    color: var(--bg-white);
    font-weight: 600;
}

.tablo tr:nth-child(even) {
    background-color: var(--bg-gray);
}

/* Alt bilgilendirme kutusu */
.tablo .info {
    margin-top: 1.25rem;
    padding: 0.75rem var(--spacing-sm);
    background: #0073e6;
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.95rem;
}

/* =========================================================
   7. İSTATİSTİK SAYAÇLARI
   Counter bölümü için stiller
   ====================================================== */

.stats-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    color: var(--bg-white);
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =========================================================
   8. DEPOLAMA TİPLERİ BÖLÜMÜ
   Konteyner Depo & Self Storage kartları
   ====================================================== */

/* Kartların bulunduğu satır */
.storage-types {
    margin-top: var(--spacing-xl);
}

/* Ana kart tasarımı */
.storage-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--border-light);
    height: 100%;
}

.storage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Üstteki ikon alanı */
.storage-icon {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* Görsel ikon (PNG/WebP kullanıyorsanız) */
.storage-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.storage-card:hover .storage-img {
    transform: scale(1.1) rotate(5deg);
}

/* Başlık */
.storage-title {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

/* Açıklama */
.storage-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #f0f0f0;
}

/* Özellik listesi */
.storage-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.storage-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.storage-features li:hover {
    transform: translateX(5px);
}

/* Özellik listesindeki yuvarlak ikon */
.feature-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
    font-weight: bold;
}

/* Kart içi bilgi kutusu */
.storage-info-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-left: 4px solid var(--primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.storage-info-box p {
    margin-bottom: var(--spacing-xs);
}

.storage-info-box strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* =========================================================
   9. EK HİZMETLER BÖLÜMÜ
   .additional-services, .service-box, .read-more
   ====================================================== */

.additional-services {
    margin-top: var(--spacing-xl);
}

.service-box {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 52, 71, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-box h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-box p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* "Detaylı Bilgi" linki */
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--spacing-sm);
    transition: var(--transition-normal);
    pointer-events: auto;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--secondary);
    text-decoration: none;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* =========================================================
   10. MÜŞTERİ YORUMLARI (TESTIMONIALS)
   Carousel kartları için stiller
   ====================================================== */

.testimonial-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    margin: var(--spacing-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: var(--spacing-sm);
    border: 3px solid var(--primary);
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* =========================================================
   11. FİYAT BÖLÜMÜ
   pricing-section, price-links, price-link, price-table
   ====================================================== */

/* Fiyat CTA Bölümü */
.pricing-section,
.fiyat-cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xl);
    border: 1px solid var(--border-light);
}

/* Link grubu */
.price-links,
.fiyat-linkler {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

/* Tek tek linkler */
.price-link,
.fiyat-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(214, 52, 71, 0.2);
}

.price-link:hover,
.fiyat-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 52, 71, 0.35);
    color: var(--bg-white);
    text-decoration: none;
}

/* Fiyat tablosu kutusu */
.price-table-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

/* Fiyat tablosu */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
}

.price-table th {
    padding: 1.1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.02rem;
}

.price-table tbody tr {
    border-bottom: 1px solid var(--border-gray);
    transition: background 0.3s ease;
}

.price-table tbody tr:hover {
    background: var(--bg-light);
}

.price-table td {
    padding: var(--spacing-sm);
    text-align: center;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Öne çıkarılmış satır */
.price-table .highlight-row {
    background: #fff8f0;
    font-weight: 600;
}

.price-table .highlight-row:hover {
    background: #fff0e6 !important;
}

/* Fiyat notu – alt bilgi */
.price-note {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    padding: var(--spacing-sm);
    text-align: center;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    font-size: 1.02rem;
}

/* =========================================================
   12. ACCORDION / FAQ COMPONENT
   Genişleyen/daralan bilgi kutuları
   ====================================================== */

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-header {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    user-select: none;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-title {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.accordion-content p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =========================================================
   13. MODAL / POPUP COMPONENT
   Popup pencereler için stiller
   ====================================================== */

.modal-custom {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.modal-custom.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-custom {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: var(--transition-normal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-custom.active .modal-content-custom {
    transform: scale(1);
}

.modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-gray);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* =========================================================
   14. TOOLTIP COMPONENT
   Fare üzerine gelince açıklama baloncuğu
   ====================================================== */

.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 100;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--dark);
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   15. TOAST NOTIFICATION
   Bildirim mesajları
   ====================================================== */

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    border-left: 4px solid #28a745;
}

.toast-notification.error {
    border-left: 4px solid #dc3545;
}

.toast-notification.warning {
    border-left: 4px solid #ffc107;
}

.toast-notification.info {
    border-left: 4px solid #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    margin-right: var(--spacing-sm);
    font-size: 1.5rem;
}

.toast-message {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.toast-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* =========================================================
   16. BREADCRUMB NAVIGATION
   Sayfa yol göstergesi
   ====================================================== */

.breadcrumb-custom {
    background: var(--bg-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-custom a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumb-custom span {
    color: var(--text-gray);
    margin: 0 var(--spacing-xs);
}

.breadcrumb-custom .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* =========================================================
   17. PAGINATION
   Sayfalama
   ====================================================== */

.pagination-custom {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.pagination-custom a,
.pagination-custom span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    min-width: 40px;
    text-align: center;
}

.pagination-custom a:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.pagination-custom .active {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.pagination-custom .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================================
   18. LOADING & SKELETON SCREENS
   Yükleme animasyonları
   ====================================================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-card {
    height: 200px;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* =========================================================
   19. IMAGE EFFECTS
   Resim efektleri
   ====================================================== */

/* Lazy Load Effect */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Image Zoom on Hover */
.image-zoom {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.image-zoom img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.image-zoom:hover img {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.image-overlay:hover::before {
    opacity: 1;
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    color: var(--bg-white);
    z-index: 2;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.image-overlay:hover .image-overlay-content {
    transform: translateY(0);
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* =========================================================
   20. DARK MODE TOGGLE
   Karanlık mod geçiş butonu
   ====================================================== */

.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* =========================================================
   21. RESPONSIVE DÜZENLEMELERİ
   ====================================================== */

/* Tablet (992px altı) */
@media (max-width: 991.98px) {
    :root {
        --spacing-xl: 2rem;
    }

    .storage-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .storage-title {
        font-size: 1.5rem;
    }

    .price-link,
    .fiyat-link {
        display: block;
        margin: 0.5rem auto;
        max-width: 280px;
        text-align: center;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.95rem;
    }

    .testimonial-card {
        margin: var(--spacing-sm);
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .navbar.sticky {
        padding: 0.5rem 0;
    }
}

/* Mobil (768px altı) */
@media (max-width: 767.98px) {
    .modal-content-custom {
        width: 95%;
        padding: var(--spacing-lg);
    }

    .toast-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }

    .toast-notification.show {
        transform: translateY(0);
    }

    .counter {
        font-size: 2.5rem;
    }

    .accordion-title {
        font-size: 1rem;
    }
}

/* Mobil (576px altı) */
@media (max-width: 575.98px) {
    /* Tablo mobil optimizasyonu */
    .tablo {
        padding: var(--spacing-sm);
    }

    .tablo table {
        font-size: 0.85rem;
    }

    /* Depolama kartları mobil */
    .storage-card {
        padding: var(--spacing-md);
    }

    .storage-features li {
        font-size: 0.95rem;
    }

    .storage-img {
        width: 70px;
        height: 70px;
    }

    /* Fiyat bölümü mobil */
    .price-table-wrapper {
        padding: 1rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.85rem;
    }

    .price-links,
    .fiyat-linkler {
        flex-direction: column;
        align-items: stretch;
    }

    .price-link,
    .fiyat-link {
        text-align: center;
        max-width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Floating butonlar küçük ekranlarda */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }

    /* Touch-friendly butonlar */
    .btn,
    .price-link,
    .fiyat-link,
    .read-more {
        min-height: 48px;
        min-width: 48px;
    }

    /* Navbar collapse transition */
    .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-collapse.show {
        max-height: 100vh;
    }

    /* Counter mobil */
    .counter {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.95rem;
    }

    /* Testimonial mobil */
    .testimonial-card::before {
        font-size: 3rem;
        top: -10px;
        left: 10px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    /* Service box mobil */
    .service-box {
        padding: var(--spacing-md);
    }

    /* Modal mobil */
    .modal-content-custom {
        padding: var(--spacing-md);
    }

    /* Breadcrumb mobil */
    .breadcrumb-custom {
        font-size: 0.9rem;
    }
}

/* =========================================================
   22. PERFORMANS İYİLEŞTİRMELERİ
   ====================================================== */

/* GPU hızlandırması için will-change */
.storage-card,
.service-box,
.price-link,
.fiyat-link,
.floating-btn,
.testimonial-card,
.accordion-header {
    will-change: transform;
}

/* Touch action optimizasyonu */
.nav-link,
.btn,
a {
    touch-action: manipulation;
}

/* Font display optimization */
@font-face {
    font-display: swap;
}

/* Animasyonlar için optimize edilmiş özellikler */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   23. HIGH CONTRAST MODE SUPPORT (Erişilebilirlik)
   ====================================================== */

@media (prefers-contrast: high) {
    :root {
        --primary: #c00000;
        --secondary: #d84000;
        --text-dark: #000000;
        --bg-white: #ffffff;
        --border-gray: #000000;
    }

    .storage-card,
    .service-box,
    .testimonial-card {
        border: 2px solid #000000;
    }
}

/* =========================================================
   24. PRINT STILLER (Yazdırma için)
   ====================================================== */

@media print {
    .floating-buttons,
    .scroll-progress,
    .toast-notification,
    .navbar.sticky {
        display: none !important;
    }

    .storage-card,
    .service-box,
    .testimonial-card {
        box-shadow: none;
        border: 1px solid var(--border-gray);
        page-break-inside: avoid;
    }

    .price-link,
    .fiyat-link {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

    .price-table {
        page-break-inside: avoid;
    }

    /* QR kod veya iletişim bilgileri için */
    .print-only {
        display: block !important;
    }

    .no-print {
        display: none !important;
    }
}

/* =========================================================
   25. UTILITY CLASSES
   Hızlı kullanım için yardımcı sınıflar
   ====================================================== */

/* Text Alignment */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

/* Visibility */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* Margins */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--spacing-xs) !important;
}

.mt-2 {
    margin-top: var(--spacing-sm) !important;
}

.mt-3 {
    margin-top: var(--spacing-md) !important;
}

.mt-4 {
    margin-top: var(--spacing-lg) !important;
}

.mt-5 {
    margin-top: var(--spacing-xl) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
    margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
    margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
    margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
    margin-bottom: var(--spacing-xl) !important;
}

/* Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: var(--spacing-xs) !important;
}

.p-2 {
    padding: var(--spacing-sm) !important;
}

.p-3 {
    padding: var(--spacing-md) !important;
}

.p-4 {
    padding: var(--spacing-lg) !important;
}

.p-5 {
    padding: var(--spacing-xl) !important;
}

/* Colors */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Borders */
.border-0 {
    border: none !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.rounded {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-pill {
    border-radius: var(--radius-pill) !important;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-none {
    box-shadow: none !important;
}
/* Floating butonlar düzeltme */
.floating-buttons {
    gap: 15px !important;
}

#movetop {
    bottom: 150px !important;
    right: 20px !important;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 575.98px) {
    .floating-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    .floating-buttons {
        gap: 10px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    #movetop {
        bottom: 130px !important;
        width: 45px !important;
        height: 45px !important;
    }
}
/* Telefon butonu - Kırmızı */
.floating-btn.phone {
    background: #d63447;
}

.floating-btn.phone:hover {
    background: #c02a3c;
}

/* Yukarı çık butonu - Mavi */
.floating-btn.movetop-btn,
#movetop {
    background: #2196F3 !important;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn.movetop-btn:hover,
#movetop:hover {
    background: #1976D2 !important;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/* Mobilde */
@media (max-width: 575.98px) {
    .floating-btn.movetop-btn,
    #movetop {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}
/* =========================================================
   TESTIMONIALS - GÜNCELLENMİŞ TASARIM
   ====================================================== */

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 52, 71, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-icon {
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.testimonial-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1rem;
}

/* Owl Carousel Özel Stiller */
.owl-carousel .owl-item .testimonial-card {
    margin: 10px;
}

.owl-theme .owl-dots {
    margin-top: 2rem;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--border-gray);
    transition: var(--transition-fast);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
}

/* Mobil Optimizasyon */
@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
}
/* =========================================================
   FOOTER - GÜNCELLENMİŞ TASARIM
   ====================================================== */

/* Footer Genel */
.w3l-footer-66 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: var(--spacing-lg);
}

.footer-logo a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-top: var(--spacing-sm);
}

/* Footer Başlıklar */
.footer-heading {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Footer İletişim Listesi */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    color: #b0b0b0;
}

.footer-contact-list li i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    font-size: 1rem;
}

.footer-contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Sosyal Medya İkonları */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.social-icon.facebook:hover {
    background: #3b5998;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Footer Menü */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-menu a i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.8rem;
}

.footer-menu a:hover {
    color: var(--primary);
    text-decoration: none;
    transform: translateX(3px);
}

/* Footer Badges (Güven İkonları) */
.footer-badges {
    margin-top: var(--spacing-lg);
}

.badges-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.badge-item span {
    font-size: 0.75rem;
    color: #b0b0b0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
}

.copyright-text strong {
    color: var(--bg-white);
}

.copyright-text a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.copyright-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer Bottom Links */
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-widget {
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-heading::after {
        width: 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-logo a {
        font-size: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links li::after {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .badges-container {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer-brand,
    .footer-contact,
    .footer-social,
    .footer-widget {
        text-align: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
    }
    
    .footer-menu a {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* =========================================================
   SON - CUSTOM CSS BİTİŞ
   ====================================================== */
/* =========================================================
   TESTIMONIALS VE FOOTER YÜKSELİK DÜZELTMESİ
   ====================================================== */

/* Testimonials bölümü - Yüksekliği azalt */
.w3l-companies-hny-6 {
    padding: 0 !important;
}

.cusrtomer-layout {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

.cusrtomer-layout .py-lg-4 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Testimonials başlık boşluğunu azalt */
.w3l-companies-hny-6 .section-title {
    margin-bottom: 2rem !important;
}

/* Owl carousel dots boşluğunu azalt */
.owl-theme .owl-dots {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* Footer - Yüksekliği azalt */
.footer-hny-grids {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

.footer-hny-grids .py-lg-4 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Footer bottom padding'i azalt */
.footer-bottom {
    padding: 1.5rem 0 !important;
}

/* Testimonial card içi boşlukları azalt */
.testimonial-card {
    padding: 1.5rem !important;
}

.testimonial-text {
    margin-bottom: 1rem !important;
}

.testimonial-author {
    margin-bottom: 0.75rem !important;
    padding-top: 0.75rem !important;
}

/* Footer widget'lar arası boşluğu azalt */
.footer-widget {
    margin-bottom: 0 !important;
}

.footer-brand {
    margin-bottom: 1.5rem !important;
}

.footer-contact {
    margin-bottom: 1.5rem !important;
}

.footer-social {
    margin-bottom: 0 !important;
}

.footer-badges {
    margin-top: 1.5rem !important;
}

/* Footer başlıklar arası boşluğu azalt */
.footer-heading {
    margin-bottom: 1rem !important;
}

/* Mobilde daha da kompakt */
@media (max-width: 767.98px) {
    .cusrtomer-layout {
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer-hny-grids {
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .testimonial-card {
        padding: 1.25rem !important;
    }
    
    .footer-bottom {
        padding: 1rem 0 !important;
    }
}
/* Mobilde daha iyi touch deneyimi için: */
@media (max-width: 575.98px) {
    .btn, .price-link, .fiyat-link {
        min-height: 44px;
        padding: 12px 20px;
    }
}

/* Yazdırma stillerini geliştirelim: */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
}
/* =========================================================
   İNTERAKTİF HARİTA VE ŞEHİRLER BÖLÜMÜ
   ====================================================== */

/* Koyu Arka Plan (Resimdeki gibi) */
.map-section-dark {
    background: #333333; /* Resimdeki koyu gri tonu */
    background: linear-gradient(135deg, #2b2b2b 0%, #3a3a3a 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: none !important; /* Eski border'ı kaldır */
}

/* Başlık Stili */
.map-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: #cccccc; /* "nerelerde bulabilirsiniz" rengi */
}

.map-title .text-primary {
    color: #d63447 !important; /* "Akıllı Depo'yu" rengi */
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #d63447;
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Harita Konteyneri */
.interactive-map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.6; /* Haritayı biraz silik yapıp pinleri öne çıkarır */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Pin (İğne) Stilleri */
.map-pin {
    position: absolute;
    color: #d63447;
    font-size: 2rem;
    transform: translate(-50%, -100%); /* İğnenin ucu tam noktaya gelsin diye */
    transition: all 0.3s ease;
    z-index: 10;
}

.map-pin:hover {
    color: #ffffff;
    transform: translate(-50%, -110%) scale(1.2);
    text-shadow: 0 0 15px #d63447;
}

/* Pin Altındaki Şehir İsmi (Tooltip) */
.map-pin::after {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #d63447;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 5px;
}

.map-pin:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Pin Animasyonu (Nabız Efekti) */
.pin-pulse {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: rgba(214, 52, 71, 0.5);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: translateX(-50%) scale(0.5); opacity: 1; }
    100% { transform: translateX(-50%) scale(3); opacity: 0; }
}

/* HARİTA KOORDİNATLARI 
   Not: Kullandığınız harita görselinin oranına göre bu % değerlerini 
   tarayıcıda "Öğeyi İncele" yaparak ince ayar yapmanız gerekebilir.
*/
.pin-ankara   { top: 40%; left: 45%; }
.pin-istanbul { top: 18%; left: 28%; }
.pin-izmir    { top: 45%; left: 18%; }
.pin-antalya  { top: 70%; left: 35%; }
.pin-bursa    { top: 25%; left: 28%; }
.pin-samsun   { top: 15%; left: 55%; }
.pin-konya    { top: 50%; left: 45%; }


/* Alt Şehir Listesi (Grid) */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.city-card {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-card:hover {
    background: #d63447;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 52, 71, 0.4);
    text-decoration: none;
}

.city-card i {
    color: #d63447;
    transition: 0.3s;
}

.city-card:hover i {
    color: white;
}

/* Telefon Kartı Özel */
.call-card {
    background: #ffffff;
    color: #333;
    font-weight: bold;
}

.call-card:hover {
    background: #e6e6e6;
    color: #000;
}
.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    /* Renk ayarları SVG içinde style etiketinde yapıldı */
}
/* Mobilde Başlık Boyutunu Küçült */
@media (max-width: 768px) {
    .map-title { font-size: 1.8rem; }
    .map-title .text-primary { font-size: 2.2rem; }
    .city-card { width: 45%; justify-content: center; font-size: 0.9rem; }
}
        /* Harita Bölümü Koyu Arka Plan */
        .map-section-dark {
            background: #222222 !important; /* Kesin siyah/gri olması için */
            background: linear-gradient(135deg, #2b2b2b 0%, #3a3a3a 100%) !important;
            color: #ffffff !important;
            padding: 4rem 1rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
            margin-bottom: 3rem;
        }

        /* Başlıklar */
        .map-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            text-transform: uppercase;
            color: #cccccc;
        }
        .map-title .text-primary {
            color: #d63447 !important;
            display: block;
            margin-bottom: 0.5rem;
        }
        .title-line {
            width: 80px;
            height: 4px;
            background: #d63447;
            margin: 1.5rem auto;
            border-radius: 2px;
        }

        /* Harita Konteyneri */
        .interactive-map-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 0;
            /* Mobilde de görünsün diye d-none kaldırıldı */
            display: block; 
        }
        .hny-titlee { font-size: 36px;
    line-height: 46px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;}
        .map-svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
            /* SVG Rengi Beyaz */
            fill: rgba(255, 255, 255, 0.15);
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 1;
            transition: all 0.3s ease;
        }
        
        /* Harita üzerindeki illere gelince parlasın */
        .map-svg path:hover {
            fill: rgba(255, 255, 255, 0.3);
            cursor: pointer;
        }

        /* Pinler (Kırmızı Noktalar) */
        .map-pin {
            position: absolute;
            color: #d63447;
            font-size: 1.5rem; /* Mobilde çok büyük olmasın */
            transform: translate(-50%, -100%);
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
        }
        .map-pin i {
            font-size: 24px;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
        }
        
        /* Pin Animasyonu */
        .pin-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(214, 52, 71, 0.6);
            border-radius: 50%;
            animation: pulse-red 2s infinite;
            z-index: -1;
        }
        @keyframes pulse-red {
            0% { transform: scale(0.5); opacity: 1; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        /* Pin Konumları (Masaüstü ve Mobil Uyumlu Yüzdeler) */
        .pin-ankara   { top: 38%; left: 46%; }
        .pin-istanbul { top: 16%; left: 29%; }
        .pin-izmir    { top: 44%; left: 17%; }
        .pin-antalya  { top: 68%; left: 36%; }
        .pin-bursa    { top: 23%; left: 29%; }
        .pin-samsun   { top: 14%; left: 56%; }
        .pin-konya    { top: 50%; left: 45%; }

        /* Mobilde Pinleri Biraz Kaydır (Harita küçük olduğu için) */
        @media (max-width: 768px) {
            .map-pin { font-size: 1.2rem; }
            .map-title { font-size: 1.5rem; }
            .map-title .text-primary { font-size: 1.8rem; }
        }

        /* Şehir Listesi Kartları */
        .cities-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 900px;
            margin: 0 auto;
        }
        .city-card {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff !important;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        .city-card:hover {
            background: #d63447;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .call-card {
            background: #ffffff;
            color: #333 !important;
            font-weight: bold;
        }
        
        /* Mobil Alt Bar */
        .mobile-cta-bar {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: #d00000;
            display: flex; justify-content: space-around; align-items: center;
            padding: 8px 0; z-index: 9999;
        }
        .mobile-cta-bar a {
            flex: 1; text-align: center; color: #fff; font-size: 12px;
            text-decoration: none; border-right: 1px solid rgba(255,255,255,0.2);
        }
        .mobile-cta-bar a:last-child { border-right: none; }
        .mobile-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #d00000;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            z-index: 9999;
        }
        .mobile-cta-bar a {
            flex: 1;
            text-align: center;
            color: #fff;
            font-size: 12px;
            text-decoration: none;
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        .mobile-cta-bar a:last-child {
            border-right: none;
        }
        .mobile-cta-bar span.fa {
            display: block;
            font-size: 16px;
            margin-bottom: 2px;
        }
            .trust-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 25px;
    }
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }
    .trust-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    .badge-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 10px;
    }
    .badge-info {
        display: flex;
        flex-direction: column;
        background: transparent;

    }
    .badge-rating {
        font-weight: 700;
        font-size: 1.1rem;
        color: #333;
    }
    .badge-text {
        font-size: 0.8rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .trust-badges { gap: 10px; }
        .trust-badge { padding: 10px 15px; }
        .badge-icon { font-size: 1.4rem; width: 38px; height: 38px; }
        .badge-rating { font-size: 0.95rem; }
    }
        
/* =========================================================
   HERO SLIDER - Tüm Stiller
   (index.html'den taşındı)
   ====================================================== */

.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  width: 100%;
}

.hero-slider .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  pointer-events: none; display: flex; align-items: center;
}

.hero-slider .slide.active { opacity: 1; pointer-events: auto; }

.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07); transition: transform 6.5s ease;
}

.hero-slider .slide.active .slide-bg { transform: scale(1); }

.slide-overlay { position: absolute; inset: 0; }

.slide-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 2rem;
}

.s-badge {
  display: inline-block;
  background: rgba(225,29,72,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(225,29,72,.3); color: #E11D48;
  padding: .25rem 1rem; border-radius: 9999px;
  font-size: .875rem; font-weight: 600;
  margin-bottom: 1.5rem; font-family: Inter, sans-serif;
}

.s-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; color: #fff;
  font-family: Inter, sans-serif;
}

.s-title .highlight { color: #E11D48; }

.s-desc {
  font-size: 1.125rem; color: #cbd5e1;
  margin-bottom: 2rem; max-width: 32rem;
  font-family: Inter, sans-serif;
}

.s-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #E11D48; color: #fff; border-radius: .5rem;
  font-weight: 700; text-decoration: none; padding: 1rem 2rem;
  font-size: 1rem; border: none; cursor: pointer;
  font-family: Inter, sans-serif;
  box-shadow: 0 4px 14px rgba(225,29,72,.35);
  transition: opacity .15s, transform .1s;
}
.btn-hero-primary:hover { opacity: .9; color: #fff; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  border-radius: .5rem; font-weight: 700; text-decoration: none;
  padding: 1rem 2rem; font-size: 1rem;
  font-family: Inter, sans-serif; transition: background .15s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Side Stats */
.side-stats {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  display: none; flex-direction: column; gap: 1rem; z-index: 10;
}
@media(min-width:1024px) { .side-stats { display: flex; } }

.stat-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: .75rem;
  padding: 1rem 1.5rem; text-align: center; color: #fff;
}
.stat-card .val { font-size: 1.75rem; font-weight: 900; font-family: Inter, sans-serif; }
.stat-card .lbl { font-size: .7rem; opacity: .75; margin-top: .2rem; font-family: Inter, sans-serif; }

/* Slider Arrows */
.slider-arrow {
  position: absolute; bottom: 1.75rem; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.25); color: #fff;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; outline: none;
}
@media(min-width:768px) { .slider-arrow { display: flex; } }
.slider-arrow:hover { background: rgba(255,255,255,.25); }
.slider-arrow-left  { left: 1.5rem; }
.slider-arrow-right { left: 4.75rem; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 20;
}
@media(min-width:768px) { .hero-dots { left: 10.5rem; transform: none; } }

.hdot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.35); cursor: pointer;
  border: none; transition: background .3s, width .3s; padding: 0;
}
.hdot.active { background: #fff; width: 26px; }

/* Progress Bar */
.slide-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: #E11D48; z-index: 20;
  width: 0; transition: none;
}
.slide-progress.running { transition: width 5s linear; }

/* Slide Animations */
.hero-slider .slide.active .s-badge { animation: sfade .6s .2s both; }
.hero-slider .slide.active .s-title { animation: sfade .7s .4s both; }
.hero-slider .slide.active .s-desc  { animation: sfade .7s .6s both; }
.hero-slider .slide.active .s-btns  { animation: sfade .7s .75s both; }

@keyframes sfade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Marquee Strip */
.marquee-strip { background: #E11D48; overflow: hidden; padding: .65rem 0; }
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 600; font-size: .85rem;
  white-space: nowrap; font-family: Inter, sans-serif;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media(max-width:767px) {
  .s-title { font-size: 2.2rem; }
  .hero-slider { height: 520px; }
}

/* =========================================================
   CRITICAL CSS - Navbar & Above the Fold
   (index.html'den taşındı)
   ====================================================== */

*,::after,::before { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem; line-height: 1.5; color: #212529; background-color: #fff;
}
a { color: #007bff; text-decoration: none; }
.navbar {
  position: relative; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; padding: .5rem 1rem;
}
.navbar-brand { font-size: 1.25rem; font-weight: 700; color: #333; }
.navbar-toggler {
  padding: .25rem .75rem; font-size: 1.25rem;
  background: transparent; border: 1px solid transparent;
}
.collapse:not(.show) { display: none; }
.navbar-nav {
  display: flex; flex-direction: column;
  padding-left: 0; margin-bottom: 0; list-style: none;
}
.nav-link { display: block; padding: .5rem 1rem; color: rgba(0,0,0,.7); }

@media(min-width:992px) {
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .collapse { display: flex !important; }
  .navbar-expand-lg .navbar-toggler { display: none; }
}
/* =========================================================
   REVIEWS SECTION
   ====================================================== */

.reviews-section { background: #f8f9fa; }

/* Trust Stats */
.reviews-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.reviews-stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.reviews-stat-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.reviews-stat-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: #f8f9fa; border-radius: 10px; flex-shrink: 0;
}
.reviews-stat-value { font-size: 1.05rem; font-weight: 700; color: #222; line-height: 1.2; }
.reviews-stat-label { font-size: 0.73rem; color: #888; margin-top: 2px; }


/* Reviews Slider */
.rv-wrap { position: relative; }

.rv-stage { position: relative; min-height: 260px; }

.rv-slide {
  display: none;
  animation: rvFadeIn 0.4s ease;
}
.rv-slide.active { display: block; }

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

/* Review Kart */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(214,52,71,0.1);
  border-color: #f5c6cc;
}
.review-quote {
  font-size: 3.5rem; line-height: 1;
  color: #d63447; opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -0.4rem;
}
.review-text {
  color: #555; font-size: 0.95rem;
  line-height: 1.75; flex: 1;
  margin-bottom: 1.1rem;
}
.review-footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f5f5f5;
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.review-name { font-weight: 700; color: #222; font-size: 0.9rem; }
.review-service { font-size: 0.75rem; color: #d63447; font-weight: 600; margin-top: 1px; }
.review-stars { color: #ffc107; font-size: 0.72rem; letter-spacing: 1px; margin-left: auto; white-space: nowrap; }

/* Ok Butonları */
.rv-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1.5px solid #ddd;
  color: #333; font-size: 1.6rem; line-height: 1;
  cursor: pointer; z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.rv-btn:hover { background: #d63447; border-color: #d63447; color: #fff; }
.rv-prev { left: -20px; }
.rv-next { right: -20px; }
@media (max-width: 575px) {
  .rv-prev { left: 4px; }
  .rv-next { right: 4px; }
}

/* Dots */
.rv-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 1.5rem;
}
.rv-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: #ddd; border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s; padding: 0;
}
.rv-dot.active { background: #d63447; width: 24px; }
