/*
=============================================
SMARTPUNKT - PROFESSIONAL WEBSITE STYLES
Version: 1.0
Author: Alone Wolf
=============================================
*/

/* =============================================
   TABLE OF CONTENTS
   1. Reset & Base Styles
   2. Typography
   3. Header & Navigation
   4. Hero Section
   5. Sections
   6. Service Cards
   7. About Section
   8. Stores Section
   9. Testimonials
   10. Contact Form
   11. Footer
   12. Floating Buttons
   13. Utilities
   14. Animations
   15. Responsive
============================================= */

/* =============================================
   1. RESET & BASE STYLES
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-purple: #9333ea;
    --primary-purple-dark: #7e22ce;
    
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   SMARTPUNKT FRANCHISE BANNER
   Modern Top Bar Design
   Version: 1.0
   ============================================ */

/* Banner Container */
.franchise-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Daha opak arka plan (yazılar daha net görünür) */
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.5s ease-out;
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Banner Hidden State */
.franchise-banner.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in;
}

/* Left Side - Message */
.franchise-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.franchise-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
    /* Güçlü gölge - her arka planda görünür */
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.franchise-text {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffffff;
    /* Güçlü gölge - her arka planda görünür */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.franchise-text strong {
    font-weight: 700;
    /* Strong için ekstra güçlü gölge */
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Right Side - CTA Button */
.franchise-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.franchise-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.franchise-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Close Button */
.franchise-close {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.franchise-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Body Padding to Prevent Content Overlap */
body.has-franchise-banner {
    padding-top: 52px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .franchise-banner {
        padding: 8px 12px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
        min-height: 70px;  /* Sabit yükseklik */
        /* Mobilde neredeyse tam opak (maksimum okunabilirlik) */
        background: rgba(37, 99, 235, 0.98);
    }

    .franchise-banner-content {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .franchise-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .franchise-cta {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .franchise-btn {
        padding: 8px 16px;
        font-size: 11px;
        flex: 1;
        max-width: 150px;
    }

    .franchise-close {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    body.has-franchise-banner {
        padding-top: 70px;  /* Banner yüksekliği */
    }
}

@media (max-width: 480px) {
    .franchise-banner {
        padding: 6px 10px;
        min-height: 65px;
    }
    
    .franchise-text {
        font-size: 10px;
        line-height: 1.2;
    }

    .franchise-icon {
        font-size: 16px;
    }
    
    .franchise-btn {
        padding: 6px 12px;
        font-size: 10px;
        max-width: 130px;
    }
    
    .franchise-close {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: 4px;
        right: 4px;
    }
    
    body.has-franchise-banner {
        padding-top: 65px;
    }
    
    /* Header pozisyonu */
    #header {
        top: 65px;
    }
    
    body:not(.has-franchise-banner) #header {
        top: 0;
    }
}

/* ============================================
   OPTIONAL: PRINT STYLES
   Banner gizlemek için print yaparken
   ============================================ */

@media print {
    .franchise-banner {
        display: none !important;
    }
    
    body.has-franchise-banner {
        padding-top: 0 !important;
    }
}
/* =============================================
   2. TYPOGRAPHY
============================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.text-center {
    text-align: center;
}

/* =============================================
   3. LAYOUT
============================================= */
/* =============================================
   CONTAINER WIDTH FIX
   Tüm container'ları genişlet
============================================= */

/* Ana container - daha geniş */
.container {
    max-width: 1400px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Büyük ekranlar için */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px !important;
        padding: 0 3rem;
    }
}

/* Laptop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px !important;
        padding: 0 2rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        max-width: 100% !important;
        padding: 0 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
.section {
    padding: var(--section-padding);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   4. HEADER & NAVIGATION - FRANCHISE BANNER UYUMLU
============================================= */

/* Header - Franchise banner altına kaydırıldı */
#header {
    position: fixed;
    top: 52px;  /* Franchise banner yüksekliği */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;  /* Banner'dan düşük (9999) */
    transition: all 0.3s ease;
}

/* Banner kapatıldığında header yukarı çıksın */
body:not(.has-franchise-banner) #header {
    top: 0;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-call:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =============================================
   MOBILE RESPONSIVE - FRANCHISE BANNER UYUMLU
============================================= */

@media (max-width: 768px) {
    /* Mobilde banner 70px olduğu için header de 70px aşağıda */
    #header {
        top: 70px;
    }
    
    /* Banner kapatıldığında header yukarı çıksın */
    body:not(.has-franchise-banner) #header {
        top: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;  /* Header altında başlasın */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    /* Banner kapatıldığında mobil menü pozisyonu */
    body:not(.has-franchise-banner) .nav-menu {
        top: 70px;  /* Sadece header yüksekliği */
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-cta {
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .btn-call {
        width: auto;  /* 100% yerine auto */
        padding: 0.5rem 1rem;  /* Daha küçük padding */
        font-size: 13px;  /* Font küçült */
        justify-content: center;
    }
}

@media (max-width: 991px) {
    #header {
        top: 70px;
    }
    
    body:not(.has-franchise-banner) #header {
        top: 0;
    }
}
/* =============================================
   5. HERO SECTION
============================================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    margin-top: 80px;
}

.heroSwiper {
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 2rem 0;
}

.hero-slide .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.feature-item i {
    font-size: 1.25rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

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

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 40px;
    border-radius: 6px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.3);
}

/* =============================================
   6. BUTTONS
============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-green {
    background: var(--primary-green) !important;
    color: var(--white) !important;
}

.btn-purple {
    background: var(--primary-purple) !important;
    color: var(--white) !important;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* =============================================
   7. SERVICE CARDS
============================================= */

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* =============================================
   8. ABOUT SECTION
============================================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.about-feature p {
    margin: 0;
    font-size: 0.938rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* =============================================
   9. STORES SECTION
============================================= */

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.store-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.store-info {
    padding: 2rem;
}

.store-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-info h3 i {
    color: var(--primary-blue);
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray);
}

.store-detail i {
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.store-actions {
    display: flex;
    gap: 1rem;
}

.store-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* =============================================
   10. TESTIMONIALS
============================================= */

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.1;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* =============================================
   11. CONTACT FORM
============================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-card p {
    margin: 0;
    color: var(--gray);
}

.contact-card a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.checkbox-label input {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}


/* =============================================
   13. FLOATING BUTTONS
============================================= */

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-btn {
    background: #25d366;
}

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

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-5px);
}

/* =============================================
   14. ANIMATIONS
============================================= */

.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.6s both;
}

.animate-slide-in {
    animation: slideIn 0.8s ease;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   15. RESPONSIVE
============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;  /* 3rem → 2.5rem */
        line-height: 1.2;
    }
    
    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-call span {
        display: none;
    }
    
    .hero-section {
        margin-top: 80px;
    }
    
    .hero-slide {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .heroSwiper {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;  /* 2rem → 1.5rem */
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;  /* 1rem → 0.875rem (14px) */
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;  /* Aralarındaki boşluğu küçült */
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;  /* Daha küçük padding */
        font-size: 0.875rem;  /* Font küçült (14px) */
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;  /* Boşluğu küçült */
    }
    
    .feature-item {
        padding: 0.5rem 0.875rem;  /* Küçült */
        font-size: 0.75rem;  /* Font küçült (12px) */
    }
    
    .feature-item i {
        font-size: 0.875rem;  /* Icon küçült */
    }
    
    .hero-image {
        order: 2;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    

    .floating-buttons {
        right: 1rem;
        bottom: 1rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* =============================================
   BRANDS SECTION - MODERN CARDS
   "Wir reparieren alle Marken" için
============================================= */

/* Brands Grid Container */
.brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
}

.brands-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Brand Card */
.brand-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-blue);
}

/* Background Animation on Hover */
.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

/* Brand Icon */
.brand-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.brand-card:hover .brand-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

/* Specific Brand Colors */
.brand-card[data-brand="apple"] .brand-icon {
    background: linear-gradient(135deg, #000000, #434343);
}

.brand-card[data-brand="samsung"] .brand-icon {
    background: linear-gradient(135deg, #1428a0, #034ea2);
}

.brand-card[data-brand="huawei"] .brand-icon {
    background: linear-gradient(135deg, #ff0000, #c10000);
}

.brand-card[data-brand="xiaomi"] .brand-icon {
    background: linear-gradient(135deg, #ff6700, #fd4900);
}

.brand-card[data-brand="oneplus"] .brand-icon {
    background: linear-gradient(135deg, #f50514, #c20411);
}

.brand-card[data-brand="google"] .brand-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.brand-card[data-brand="sony"] .brand-icon {
    background: linear-gradient(135deg, #0033cc, #001a66);
}

.brand-card[data-brand="oppo"] .brand-icon {
    background: linear-gradient(135deg, #00b140, #008f33);
}

/* Brand Name */
.brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-name {
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* Checkmark Badge */
.brand-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.brand-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* CTA Button below brands */
.brands-cta {
    text-align: center;
    margin-top: 3rem;
}

.brands-cta p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.brands-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.brands-cta .btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1.5rem 1rem;
    }
    
    .brand-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   ANKAUF SECTION - MODERN STEP CARDS
   "Wie funktioniert der Ankauf?" için
============================================= */

/* Ankauf Section */
.ankauf-how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.ankauf-how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ankauf-how-it-works .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Connecting Lines (Desktop only) */
.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-green) 0%, 
        var(--primary-green) 20%,
        #d1d5db 20%,
        #d1d5db 40%,
        var(--primary-green) 40%,
        var(--primary-green) 60%,
        #d1d5db 60%,
        #d1d5db 80%,
        var(--primary-green) 80%,
        var(--primary-green) 100%
    );
    z-index: 0;
}

/* Step Card */
.step-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
    border-color: var(--primary-green);
}

/* Step Number Badge */
.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

/* Pulse animation for step number */
.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.5;
    z-index: -1;
}

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

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
}

/* Step Title */
.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-title {
    color: var(--primary-green);
}

/* Step Description */
.step-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Alternative: Euro symbol for step 4 */
.step-card[data-step="4"] .step-icon {
    font-size: 3rem;
    font-weight: 900;
}

/* CTA Section below steps */
.ankauf-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ankauf-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.ankauf-cta p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ankauf-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ankauf-cta-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ankauf-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Image placeholder */
.ankauf-image-container {
    text-align: center;
    margin: 3rem 0;
}

.ankauf-image-container img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .steps-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .ankauf-cta {
        padding: 2rem 1.5rem;
    }
    
    .ankauf-cta h3 {
        font-size: 1.5rem;
    }
    
    .ankauf-cta-buttons {
        flex-direction: column;
    }
    
    .ankauf-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .ankauf-how-it-works {
        padding: 60px 0;
    }
}

/* =============================================
   WHY CHOOSE US SECTION - MODERN ICON CARDS
   "Warum SmartPunkt?" için
============================================= */

#ueber-uns {
    margin-top: 2px;
}

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Features Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Feature Card */
.why-feature-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.why-feature-card:hover::before {
    opacity: 1;
}

/* Feature Icon Container */
.why-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.why-feature-card:hover .why-feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Different colors for each card */
.why-feature-card[data-feature="techniker"] .why-feature-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.why-feature-card[data-feature="teile"] .why-feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.why-feature-card[data-feature="garantie"] .why-feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.why-feature-card[data-feature="service"] .why-feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.why-feature-card[data-feature="preise"] .why-feature-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.why-feature-card[data-feature="kunden"] .why-feature-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

/* Feature Content */
.why-feature-content {
    flex: 1;
}

.why-feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-feature-title {
    color: var(--primary-blue);
}

/* Highlight number/stat in title */
.why-feature-title .highlight {
    color: var(--primary-blue);
    font-weight: 900;
}

.why-feature-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Badge for special features */
.why-feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-feature-badge {
    opacity: 1;
    transform: scale(1);
}

/* Stats Counter Animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Testimonial Preview */
.why-testimonials-preview {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-testimonials-preview h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.why-testimonials-preview p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .why-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-feature-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .why-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .why-feature-title {
        font-size: 1.25rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .why-testimonials-preview {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-feature-card {
        padding: 1.5rem;
    }
}

/* =============================================
   CONTAINER WIDTH FIX
   Container genişliği artırma
============================================= */


/* Wider container for better layout */
.container {
    max-width: 1200px !important;  /* 1200px'den 1400px'e çıkarıldı */
    margin: 0 auto;
    padding: 0 20px;
}

/* For very large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px !important;
    }
}

/* Tablet için */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* Mobile için */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* =============================================
   FOOTER FIX - WITH !IMPORTANT OVERRIDE
   Eski CSS'i override eden versiyon
============================================= */

/* Footer Ana Container - OVERRIDE */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    color: #ffffff !important;
    padding: 4rem 0 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Decorative line */
.footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #2563eb, #9333ea, #10b981) !important;
}

/* Footer Content Grid */
.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Footer Column Headers */
.footer-col h4 {
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    position: relative !important;
    padding-bottom: 0.75rem !important;
}

.footer-col h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #2563eb, #9333ea) !important;
    border-radius: 2px !important;
}

/* Company Description */
.footer-col:first-child p {
    color: #94a3b8 !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
}

/* Social Links - Modern */
.social-links {
    display: flex !important;
    gap: 1rem !important;
}

.social-links a {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.social-links a:hover {
    background: #2563eb !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4) !important;
    border-color: #2563eb !important;
}

.social-links a i {
    font-size: 1.125rem !important;
    color: #ffffff !important;
}

/* Footer Links */
.footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.875rem !important;
}

.footer-links li a {
    color: #94a3b8 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.938rem !important;
    position: relative !important;
    padding-left: 0 !important;
    text-decoration: none !important;
}

.footer-links li a::before {
    content: '→' !important;
    opacity: 0 !important;
    transform: translateX(-10px) !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    left: -20px !important;
}

.footer-links li a:hover {
    color: #ffffff !important;
    padding-left: 10px !important;
}

.footer-links li a:hover::before {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Icons in links */
.footer-links li a i {
    color: #2563eb !important;
    width: 20px !important;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center !important;
    padding: 2rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 2rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-bottom p {
    color: #64748b !important;
    margin: 0 !important;
    font-size: 0.938rem !important;
}

footer.footer > .container,
footer.footer .footer-inner,
footer.footer .footer-content {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px !important;
}

/* Icon - MOR */
.gallery-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);  /* ← MOR */
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),  /* ← MOR shadow */
        0 0 0 4px rgba(102, 126, 234, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.gallery-cta-content:hover .gallery-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),  /* ← MOR shadow */
        0 0 0 6px rgba(102, 126, 234, 0.15);
}

.gallery-cta-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Button - MOR */
.gallery-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);  /* ← MOR */
    color: #ffffff;
    font-size: 1.063rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),  /* ← MOR shadow */
        0 0 0 0 rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gallery-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gallery-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.gallery-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),  /* ← MOR shadow */
        0 0 0 4px rgba(102, 126, 234, 0.2);
}

.gallery-cta-button i {
    transition: transform 0.3s ease;
}

.gallery-cta-button:hover i {
    transform: translateX(5px);
}

/* Glow efekt - MOR */
.gallery-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.05) 0%,  /* ← MOR glow */
        transparent 70%
    );
    animation: pulse-glow 4s ease-in-out infinite;
}

/*footer {
  outline: 2px solid red; /* test için çerçeve */ /*
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer .footer-inner,
footer .footer-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

footer, footer * {
  outline: 1px solid red; /* sadece test için */ /*
}

*/

/* =============================================
   GALLERY CTA - CARDS IN CARD
   Kart içinde mini kartlar
============================================= */

.gallery-cta-cards {
    margin: 80px 0;
    padding: 0 20px;
}

.gallery-cta-main {
    max-width: 1600px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 1) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.gallery-cta-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-cta-main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.gallery-cta-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.gallery-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.gallery-cta-badge i {
    font-size: 1rem;
}

.gallery-cta-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.gallery-cta-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Mini Cards Grid */
.gallery-mini-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.mini-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.15),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

.mini-card:hover::before {
    transform: scaleX(1);
}

.mini-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.mini-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.mini-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.mini-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Footer */
.gallery-cta-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),
        0 0 0 0 rgba(102, 126, 234, 0.5);
    position: relative;
    overflow: hidden;
}

.gallery-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gallery-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.gallery-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.4),
        0 0 0 4px rgba(102, 126, 234, 0.2);
}

.gallery-cta-btn i {
    transition: transform 0.3s ease;
}

.gallery-cta-btn:hover i {
    transform: translateX(5px);
}

.gallery-cta-hint {
    margin-top: 15px;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .gallery-cta-main {
        padding: 50px 40px;
    }
    
    .gallery-mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .gallery-cta-cards {
        margin: 60px 0;
        padding: 0 15px;
    }
    
    .gallery-cta-main {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .gallery-cta-heading {
        font-size: 2rem;
    }
    
    .gallery-cta-description {
        font-size: 1rem;
    }
    
    .gallery-mini-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .mini-card {
        padding: 25px 20px;
    }
    
    .gallery-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-cta-heading {
        font-size: 1.75rem;
    }
    
    .mini-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .mini-card-icon i {
        font-size: 1.25rem;
    }
}

/* =============================================
   FİLİALEN SECTION HEADER - MODERN
============================================= */

.filialen-header {
    text-align: center;
    margin-bottom: 60px;
}

.filialen-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.filialen-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.filialen-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .filialen-header {
        margin-bottom: 40px;
    }
    
    .filialen-tag {
        font-size: 0.813rem;
        padding: 8px 20px;
    }
    
    .filialen-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .filialen-subtitle {
        font-size: 1.063rem;
    }
}

@media (max-width: 480px) {
    .filialen-title {
        font-size: 1.75rem;
    }
    
    .filialen-subtitle {
        font-size: 1rem;
    }
}