/* ============================================
   WhatsApp Destek Butonu - Sol alt köşede sabit
   ============================================ */
.whatsapp-support-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.whatsapp-support-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-support-link:hover::before {
    left: 100%;
}

.whatsapp-support-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-support-link:hover .whatsapp-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-text {
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Responsive - Mobilde sadece ikon göster */
@media (max-width: 768px) {
    .whatsapp-support-button {
        left: 15px;
        bottom: 20px;
    }
    
    .whatsapp-support-link {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
        gap: 0;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon-wrapper {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .whatsapp-support-button {
        left: 10px;
        bottom: 15px;
    }
    
    .whatsapp-support-link {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .whatsapp-icon-wrapper {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

/* ============================================
   V2 Theme - Turuncu & Siyah Modern Tasarım
   ============================================ */

:root {
    /* Turuncu Renk Paleti */
    --orange-primary: #FF6B35;
    --orange-dark: #E85A2B;
    --orange-light: #FF8C5A;
    --orange-accent: #FFA07A;
    --orange-hover: #FF8533; /* Turuncu arka plan üzerinde daha belirgin turuncu hover rengi */
    --orange-hover-dark: #FF4500; /* Turuncu arka plan üzerinde daha koyu turuncu - daha belirgin */
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #E85A2B 100%);
    
    /* Siyah Renk Paleti */
    --black-primary: #1A1A1A;
    --black-dark: #000000;
    --black-light: #2D2D2D;
    --black-accent: #3A3A3A;
    
    /* Gri Tonları */
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #8A8A8A;
    --gray-text: #696E77;
    
    /* Beyaz */
    --white: #FFFFFF;
    
    /* Shadow */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* ============================================
   Modern Hero Section - TEMİZ YAPILANDIRMA
   ============================================ */

/* Header'dan sonraki boşluğu kaldır */
.header-area + .v2-hero-section,
.sticky_header_content + .v2-hero-section {
    margin-top: 0;
    padding-top: 0;
}

/* Hero Section Ana Container */
.v2-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 0;
}

/* Slide Item - Temel Yapı */
.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.7s ease-in-out, 
                transform 0.7s ease-in-out,
                visibility 0s linear 0.7s;
    z-index: 1;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
    transition: opacity 0.7s ease-in-out, 
                transform 0.7s ease-in-out,
                visibility 0s;
    position: relative;
    height: auto;
    min-height: auto;
}

/* Slide Geçiş Animasyonları - Smooth Fade + Slide */
.hero-slide-item.slide-exit {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-in-out, 
                transform 0.5s ease-in-out;
}

.hero-slide-item.slide-enter {
    opacity: 0;
    transform: translateX(20px);
    animation: slideEnterSmooth 0.7s ease-in-out forwards;
}

@keyframes slideEnterSmooth {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Background Image - Smooth Transition */
.hero-slide-item .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide-item.active .hero-background {
    height: 100%;
    min-height: 100%;
    opacity: 1;
}

.hero-slide-item:not(.active) .hero-background {
    opacity: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide-item.active .hero-bg-image {
    opacity: 1;
}

.hero-slide-item:not(.active) .hero-bg-image {
    opacity: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide-item:not(.active) .hero-gradient-overlay {
    opacity: 0;
}

.hero-slide-item.active .hero-gradient-overlay {
    opacity: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 3;
    opacity: 0.3;
}

/* Container - İçerik Alanı */
.hero-slide-item .container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    box-sizing: border-box;
}

.hero-slide-item .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Slider Content Animations - Modern ve Akıcı */
.hero-slide-item:not(.active) .hero-badge-new,
.hero-slide-item:not(.active) .hero-title-new,
.hero-slide-item:not(.active) .hero-description-new,
.hero-slide-item:not(.active) .hero-buttons,
.hero-slide-item:not(.active) .hero-stats {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
}

.hero-slide-item.active .hero-badge-new {
    animation: fadeInDownModern 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-slide-item.active .hero-title-new {
    animation: fadeInUpModern 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-slide-item.active .hero-description-new {
    animation: fadeInUpModern 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-slide-item.active .hero-buttons {
    animation: fadeInUpModern 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-slide-item.active .hero-stats {
    animation: fadeInLeftModern 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* Modern Animasyon Keyframes */
@keyframes fadeInDownModern {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
        filter: blur(6px);
    }
    60% {
        opacity: 0.9;
        transform: translateY(5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInUpModern {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(6px);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.01);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInLeftModern {
    0% {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
        filter: blur(6px);
    }
    60% {
        opacity: 0.9;
        transform: translateX(5px) scale(1.01);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 3;
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-main-content {
    max-width: 800px;
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    margin-top: 0;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    color: var(--orange-primary);
    font-size: 16px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.hero-title-new {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    color: var(--white);
}

.hero-description-new {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 650px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary i {
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover i {
    transform: scale(1.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 0;
    padding-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Hero stats altındaki boşluğu kontrol et - Maksimum 50px */
.hero-stats {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero-content-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero section container - hero-stats sonrası maksimum 50px boşluk */
.hero-slide-item .container {
    padding-bottom: 50px !important;
}

/* Hero section'ın kendisi de boşluk bırakmamalı */
.v2-hero-section,
.hero-slider-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: var(--orange-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slider Pagination */
/* Slider Pagination - KALDIRILDI */

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Header Container - Unified Width
   ============================================ */
.v2-header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ============================================
   Top Bar - Premium & Modern Design
   ============================================ */
.v2-top-bar-minimal {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.v2-top-bar-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.top-bar-minimal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.top-bar-minimal-left,
.top-bar-minimal-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-phone-minimal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 18px;
    border-radius: 6px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.top-bar-phone-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.top-bar-phone-minimal:hover::before {
    left: 100%;
}

.top-bar-phone-minimal i {
    color: var(--orange-primary);
    font-size: 16px;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.top-bar-phone-minimal span {
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.top-bar-phone-minimal:hover {
    color: var(--white);
    background: var(--orange-gradient);
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.top-bar-phone-minimal:hover i {
    color: var(--white) !important;
}

.top-bar-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.top-bar-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.top-bar-hours:hover::before {
    left: 100%;
}

.top-bar-hours:hover {
    color: var(--white);
    background: var(--orange-gradient);
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.top-bar-hours i {
    color: var(--orange-primary);
    font-size: 16px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-hours:hover i {
    color: var(--white) !important;
}

/* Top Bar Address - Premium Modern Design */
.top-bar-address {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    border: 1.5px solid rgba(255, 107, 53, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    max-width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.top-bar-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.top-bar-address::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.top-bar-address:hover::before {
    left: 100%;
}

.top-bar-address:hover::after {
    opacity: 1;
}

.top-bar-address i.fa-map-marker-alt {
    color: var(--orange-primary);
    font-size: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    animation: mapPulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mapPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-2px);
    }
}

.top-bar-address:hover i.fa-map-marker-alt {
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    text-align: left;
}

.address-line {
    display: block;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.address-line:first-child {
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
}

.address-line:last-child {
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-address:hover .address-line {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobilde adres satırları için */
@media (max-width: 991px) {
    .address-line {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.address-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 4px;
    opacity: 0.8;
}

.top-bar-address:hover {
    color: var(--white);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6), 
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.top-bar-address:hover .address-icon {
    color: var(--white);
    transform: translateX(4px) translateY(-4px) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.top-bar-hours span {
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ============================================
   Main Header - Clean & Modern Design
   ============================================ */
.v2-modern-header {
    padding: 18px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.header-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

/* Logo Section */
.header-logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.v2-logo-link {
    display: block;
    transition: transform 0.3s ease;
    line-height: 0;
}

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

.v2-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}

/* Navigation Menu */
.v2-modern-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.v2-modern-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

.v2-modern-item {
    list-style: none !important;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.v2-modern-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--black-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    height: 100%;
    min-height: 44px;
}

.v2-modern-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.v2-modern-link:hover {
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.05);
}

.v2-modern-link:hover::after,
.v2-modern-link.active::after {
    width: 60%;
    transform: translateX(-50%) scaleX(1);
}

.v2-modern-link.active {
    color: var(--orange-primary);
    font-weight: 600;
}

.v2-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--orange-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.v2-modern-link:hover .v2-link-icon,
.v2-modern-link.active .v2-link-icon {
    transform: scale(1.15);
    color: var(--orange-primary);
}

.link-text {
    position: relative;
    z-index: 1;
}

/* ============================================
   V3 Hamburger Menu - Premium Corporate Design
   ============================================ */

/* V4 Hamburger Button - Premium & Clickable */
.v3-hamburger {
    display: none;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10001;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.v3-hamburger:focus {
    outline: 2px solid var(--orange-primary);
    outline-offset: 2px;
}

.v3-hamburger:hover {
    transform: scale(1.1);
}

.v3-hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
    pointer-events: none;
}

.v3-hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
    pointer-events: none;
}

.v3-hamburger-inner,
.v3-hamburger-inner::before,
.v3-hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--black-primary);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-hamburger-inner::before,
.v3-hamburger-inner::after {
    content: '';
    display: block;
}

.v3-hamburger-inner::before {
    top: -8px;
}

.v3-hamburger-inner::after {
    bottom: -8px;
}

.v3-hamburger:hover .v3-hamburger-inner,
.v3-hamburger:hover .v3-hamburger-inner::before,
.v3-hamburger:hover .v3-hamburger-inner::after {
    background-color: var(--orange-primary);
}

/* Active State - Transform to X */
.v3-hamburger.is-active .v3-hamburger-inner {
    transform: rotate(45deg);
    background-color: var(--orange-primary);
}

.v3-hamburger.is-active .v3-hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    background-color: var(--orange-primary);
}

.v3-hamburger.is-active .v3-hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

/* Header Sticky Styles */
.sticky_header_content .v2-modern-header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Header Background */
.header-area {
    background: var(--white);
    transition: all 0.3s ease;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sticky_header_content.fixed-header .header-area {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Header ve Hero arası boşluk kaldır */
.header-area + #content,
.sticky_header_content + #content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#content > .v2-hero-section,
#content > .hero-slider-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Logo */
.logo_box,
.logobox {
    padding: 10px 0;
}

.logo_box img,
.logobox img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo_box:hover img,
.logobox:hover img {
    transform: scale(1.05);
}

/* Randevu Button */
.button .theme_btn {
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.button .theme_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger_menu {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger_menu .line {
    width: 100%;
    height: 3px;
    background: var(--black-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger_menu:hover .line {
    background: var(--orange-primary);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .v2-navbar {
        display: none;
    }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Services Section - Minimal 2 Column Design
   ============================================ */
.v2-services-section {
    padding: 10px 0 50px;
    background: var(--white);
    position: relative;
    margin-top: 0;
}

/* Hero ve Services arası boşluğu kaldır */
.v2-hero-section + .v2-services-section,
.hero-slider-section + .v2-services-section,
section.v2-hero-section + section.v2-services-section {
    margin-top: 0 !important;
    padding-top: 30px !important;
}

.services-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.service-minimal-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    min-height: 280px;
    position: relative;
}

.service-minimal-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark), var(--orange-primary));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-minimal-card:hover::after {
    opacity: 1;
}

.service-minimal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    border-color: var(--orange-primary);
}

.service-minimal-card.card-left {
    flex-direction: row;
}

.service-minimal-card.card-right {
    flex-direction: row-reverse;
}

.service-minimal-image {
    position: relative;
    width: 45%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
}

.service-minimal-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-minimal-card:hover .service-minimal-image::after {
    opacity: 1;
}

.service-minimal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-minimal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(26, 26, 26, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-minimal-card:hover .service-minimal-overlay {
    opacity: 1;
}

.service-minimal-content {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 107, 53, 0.02) 100%);
    transition: background 0.5s ease;
}

.service-minimal-card:hover .service-minimal-content {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-minimal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-minimal-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.service-minimal-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.service-minimal-card:hover .service-minimal-icon {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.service-minimal-card:hover .service-minimal-icon::before {
    width: 100px;
    height: 100px;
}

.service-minimal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-minimal-card:hover .service-minimal-title {
    color: var(--orange-primary);
}

.service-minimal-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-minimal-card:hover .service-minimal-text {
    color: var(--black-light);
}

/* Kartın üzerine gelindiğinde buton görünsün ve hover rengine dönsün */
.service-minimal-card:hover .service-minimal-link {
    opacity: 1;
    transform: translateX(3px);
    visibility: visible;
    color: var(--white);
    border-color: var(--orange-primary);
    gap: 12px;
}

.service-minimal-card:hover .service-minimal-link::before {
    left: 0;
}

.service-minimal-card:hover .service-minimal-link i {
    transform: translateX(5px);
}

/* Buton başlangıçta gizli */
.service-minimal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
}

.service-minimal-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    transition: left 0.4s ease;
    z-index: 0;
}

.service-minimal-link:hover::before {
    left: 0;
}

.service-minimal-link span,
.service-minimal-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-minimal-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.service-minimal-link:hover {
    gap: 12px;
    color: var(--white);
    border-color: var(--orange-primary);
    transform: translateX(3px);
}

.service-minimal-link:hover i {
    transform: translateX(5px);
}

/* Services Responsive */
@media (max-width: 991px) {
    .services-minimal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-minimal-card.card-left,
    .service-minimal-card.card-right {
        flex-direction: column;
    }
    
    .service-minimal-image {
        width: 100%;
        height: 250px;
    }
    
    .service-minimal-content {
        padding: 30px 25px;
    }
}

/* ============================================
   About Section
   ============================================ */
.v2-about-section {
    padding: 50px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--orange-primary);
    font-size: 20px;
}

.feature-text {
    font-weight: 600;
    color: var(--black-primary);
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

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

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

/* ============================================
   Stats Section
   ============================================ */
/* ============================================
   Stats Section - Premium Design
   ============================================ */
.v2-stats-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: var(--black-primary);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, var(--black-primary) 100%);
}

.stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px);
    opacity: 0.5;
}

.stats-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stats-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

.stats-particles .particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.stats-particles .particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
}

.stats-particles .particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
}

.stats-particles .particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation-delay: 6s;
}

.stats-particles .particle:nth-child(5) {
    left: 90%;
    top: 50%;
    animation-delay: 8s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

.stats-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.stats-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.stats-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card-premium {
    position: relative;
    perspective: 1000px;
}

.stat-card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    filter: blur(20px);
}

.stat-card-premium:hover .stat-card-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.stat-card-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-premium:hover .stat-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--orange-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 
        0 25px 60px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.3);
}

.stat-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.stat-card-premium:hover .stat-card-shine {
    opacity: 1;
    animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.stat-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.6s ease;
    transform: scale(1);
}

.stat-card-premium:hover .stat-icon-bg {
    opacity: 0.4;
    transform: scale(1.3);
}

.stat-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.5),
        0 0 0 8px rgba(255, 107, 53, 0.1),
        0 0 0 16px rgba(255, 107, 53, 0.05);
}

.stat-card-premium:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 0 12px rgba(255, 107, 53, 0.2),
        0 0 0 24px rgba(255, 107, 53, 0.1);
}

.stat-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--orange-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.stat-card-premium:hover .stat-icon-pulse {
    animation: pulse-ring 2s ease-out infinite;
}

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

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-card-premium:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.stat-card-premium:hover .stat-label {
    color: var(--white);
}

.stat-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.stat-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--orange-gradient);
    border-radius: 10px;
    transition: width 2s ease-out;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.stat-card-premium:hover .stat-progress-fill {
    width: 100%;
}

/* Stats Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .v2-stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-title {
        font-size: 32px;
    }
    
    .stat-card-inner {
        padding: 40px 25px;
    }
    
    .stat-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

/* ============================================
   Process Section
   ============================================ */
.v2-process-section {
    padding: 20px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    position: relative;
    padding: 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.process-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.process-content {
    grid-column: 2;
}

.process-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 10px;
}

.process-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.process-connector {
    position: absolute;
    left: 30px;
    top: 90px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--orange-primary);
    opacity: 0.3;
}

.process-item:last-child .process-connector {
    display: none;
}

/* ============================================
   FAQ Section
   ============================================ */
.v2-faq-section {
    padding: 50px 0;
    background: var(--gray-light);
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-orange);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--orange-primary);
    color: var(--white);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-primary);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: var(--white);
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    color: var(--orange-primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
}

.faq-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Testimonials Section - Minimal 2 Column Grid
   ============================================ */
.v2-testimonials-section {
    padding: 100px 0;
    background: #fafbfc;
    position: relative;
}

.v2-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card-minimal {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-card-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.testimonial-rating-minimal i {
    color: #FFB800;
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(255, 184, 0, 0.3));
}

.testimonial-quote-minimal {
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card-minimal:hover .testimonial-quote-minimal {
    background: var(--orange-gradient);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.testimonial-text-minimal {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-footer-minimal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar-minimal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-minimal:hover .testimonial-avatar-minimal {
    border-color: var(--orange-primary);
    transform: scale(1.05);
}

.testimonial-avatar-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-minimal.no-avatar {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 20px;
}

.testimonial-info-minimal {
    flex: 1;
    min-width: 0;
}

.testimonial-name-minimal {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-designation-minimal {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-testimonials {
    padding: 80px 20px;
    text-align: center;
    color: var(--gray-text);
}

.empty-testimonials i {
    font-size: 72px;
    color: var(--gray-medium);
    margin-bottom: 25px;
    opacity: 0.5;
}

.empty-testimonials p {
    font-size: 18px;
    color: var(--gray-text);
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-card-inner {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .v2-testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonial-card-inner {
        padding: 24px;
    }
    
    .testimonial-text-minimal {
        font-size: 14px;
        -webkit-line-clamp: 5;
    }
    
    .testimonial-header-minimal {
        margin-bottom: 16px;
    }
    
    .testimonial-footer-minimal {
        padding-top: 16px;
    }
}

/* ============================================
   Brands Section
   ============================================ */
/* ============================================
   Brands Section - Premium Design
   ============================================ */
.v2-brands-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.brands-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brands-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
}

.brands-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.02) 2px, rgba(255, 107, 53, 0.02) 4px);
    opacity: 0.5;
}

.brands-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brands-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange-gradient);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.brands-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

.brands-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.brand-card-premium {
    position: relative;
    perspective: 1000px;
}

.brand-card-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    filter: blur(15px);
}

.brand-card-premium:hover .brand-card-glow {
    opacity: 1;
    animation: brand-glow-pulse 2s ease-in-out infinite;
}

@keyframes brand-glow-pulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.brand-card-inner {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid var(--gray-medium);
    z-index: 1;
}

.brand-card-premium:hover .brand-card-inner {
    transform: translateY(-20px) rotateY(5deg);
    border-color: var(--orange-primary);
    box-shadow: 
        0 30px 70px rgba(255, 107, 53, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 107, 53, 0.2);
}

.brand-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.brand-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.brand-card-premium:hover .brand-image-bg {
    opacity: 0.1;
}

.brand-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.brand-card-premium:hover .brand-image {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 3;
}

.brand-card-premium:hover .brand-overlay {
    opacity: 1;
}

.brand-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
    z-index: 4;
}

.brand-card-premium:hover .brand-shine {
    opacity: 1;
    animation: brand-shine-sweep 1.5s ease-in-out;
}

@keyframes brand-shine-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.brand-content {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    z-index: 5;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-primary);
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.brand-card-premium:hover .brand-name {
    color: var(--orange-primary);
}

.brand-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background: var(--gray-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
    opacity: 0.5;
}

.brand-card-premium:hover .brand-icon {
    background: var(--orange-gradient);
    transform: scale(1.1) rotate(360deg);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Brands Responsive */
@media (max-width: 1200px) {
    .brands-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brands-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .v2-brands-section {
        padding: 50px 0;
    }
    
    .brands-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brands-title {
        font-size: 32px;
    }
    
    .brand-image-wrapper {
        height: 180px;
    }
    
    .brand-image {
        padding: 20px;
    }
}

/* ============================================
   Footer - Corporate Design
   ============================================ */
.v2-footer {
    position: relative;
    background: var(--black-primary);
    color: var(--white);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, var(--black-primary) 0%, rgba(26, 26, 26, 0.98) 50%, var(--black-primary) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px);
    opacity: 0.5;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column {
    position: relative;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--orange-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.social-link:hover i {
    transform: scale(1.2) rotate(360deg);
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.footer-menu {
    list-style: none !important;
    padding: 0;
    margin: 0;
    counter-reset: none !important;
}

.footer-menu li {
    margin-bottom: 12px;
    list-style: none !important;
    counter-increment: none !important;
}

.footer-menu li::before {
    content: none !important;
    display: none !important;
}

.footer-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* Footer Links - İkonlar Her Zaman Görünür */
.footer-links .footer-menu a i {
    font-size: 14px;
    color: var(--orange-primary);
    opacity: 1;
    transform: translateX(0);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-links .footer-menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links .footer-menu a:hover i {
    background: var(--orange-gradient);
    color: var(--white);
    transform: scale(1.1) translateX(3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Footer Services - İkonlar Her Zaman Görünür */
.footer-services .footer-menu a i {
    font-size: 16px;
    opacity: 1;
    transform: translateX(0);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-services .footer-menu a:hover i {
    background: var(--orange-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.footer-services .footer-menu a:hover {
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .contact-icon {
    background: var(--orange-gradient);
    border-color: var(--orange-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--orange-primary);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-copyright strong {
    color: var(--orange-primary);
    font-weight: 700;
}

.footer-visitor-counter {
    display: flex;
    align-items: center;
}

.visitor-counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.visitor-counter-box:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.visitor-counter-box i {
    color: var(--orange-primary);
    font-size: 18px;
}

.visitor-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-primary);
    min-width: 40px;
    text-align: center;
}

.visitor-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer Services - Mobil Responsive */
    .footer-services .footer-menu a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .footer-services .footer-menu a i {
        font-size: 14px;
        width: 22px;
        height: 22px;
    }
    
    .footer-services .footer-menu li {
        margin-bottom: 10px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================================
   Mobile Menu & Responsive Fixes
   ============================================ */

/* Hide ShareThis Sticky Buttons */
#st-2,
.st-sticky-share-buttons {
    display: none !important;
}

/* Hide Blue Scroll to Top (Progress Indicator) */
.prgoress_indicator {
    display: none !important;
}

/* ============================================
   V3 Mobile Menu - Premium Corporate Design
   ============================================ */

/* V3 Menu Overlay */
.v3-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* V3 Mobile Menu */
.v3-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.v3-mobile-menu.is-active {
    transform: translateX(0);
}

/* V3 Menu Header */
.v3-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.v3-menu-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.v3-menu-close {
    width: 44px;
    height: 44px;
    background: var(--orange-gradient);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.v3-menu-close:hover {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.v3-close-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.v3-close-icon::before,
.v3-close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transform-origin: center;
}

.v3-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.v3-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* V3 Menu Content */
.v3-menu-content {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.v3-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v3-menu-item {
    margin: 0;
    padding: 0;
}

.v3-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--black-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
}

.v3-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-gradient);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-menu-link:hover::before,
.v3-menu-link.active::before {
    transform: scaleY(1);
}

.v3-link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.v3-link-text {
    flex: 1;
    transition: all 0.3s ease;
}

.v3-link-arrow {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.v3-menu-link:hover,
.v3-menu-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    color: var(--orange-primary);
    padding-left: 28px;
}

.v3-menu-link:hover .v3-link-icon,
.v3-menu-link.active .v3-link-icon {
    transform: scale(1.15);
    color: var(--orange-primary);
}

.v3-menu-link:hover .v3-link-arrow,
.v3-menu-link.active .v3-link-arrow {
    color: var(--orange-primary);
    transform: translateX(4px);
}

/* V3 Menu Footer */
.v3-menu-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-menu-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.v3-menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.v3-menu-cta:hover::before {
    left: 0;
}

.v3-cta-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.v3-cta-whatsapp .v3-cta-icon {
    background: #25D366;
}

.v3-cta-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.v3-cta-label {
    font-size: 11px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.v3-cta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-primary);
    transition: color 0.3s ease;
}

.v3-menu-cta:hover {
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.v3-menu-cta:hover .v3-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.v3-menu-cta:hover .v3-cta-label,
.v3-menu-cta:hover .v3-cta-value {
    color: var(--white);
}

.v3-cta-whatsapp:hover .v3-cta-icon {
    background: #25D366;
    transform: scale(1.1) rotate(-5deg);
}

/* Responsive Header */
@media (max-width: 991px) {
    .v2-modern-nav {
        display: none !important;
    }
    
    .v3-hamburger {
        display: block !important;
    }
    
    .header-inner-wrapper {
        justify-content: space-between !important;
        gap: 15px;
    }
    
    .v2-logo {
        max-height: 50px;
    }
    
    .v2-top-bar-minimal {
        padding: 10px 0;
    }
    
    .top-bar-minimal-content {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        align-items: center;
    }
    
    .top-bar-minimal-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .top-bar-minimal-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        order: -1; /* Üstte görünmesi için */
        margin-bottom: 5px;
    }
    
    .top-bar-phone-minimal {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .top-bar-hours {
        font-size: 13px;
        font-weight: 600;
        padding: 6px 14px;
        letter-spacing: 0.2px;
    }
    
    .top-bar-hours i {
        font-size: 14px;
    }
    
    .top-bar-address {
        font-size: 12px;
        padding: 12px 20px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
    }
    
    .top-bar-address i.fa-map-marker-alt {
        font-size: 18px;
    }
    
    .address-text {
        gap: 2px;
        text-align: center;
        align-items: center;
    }
    
    .address-line {
        font-size: 11px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .address-line:first-child {
        font-size: 11px;
    }
    
    .address-line:last-child {
        font-size: 10px;
    }
    
    .address-icon {
        font-size: 12px;
    }
    
    .v2-hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        padding-top: 0;
    }
}

/* Responsive Sections - Reduce Padding */
@media (max-width: 768px) {
    .v2-services-section {
        padding: 0 0 50px;
        margin-top: 0;
    }
    
    .v2-hero-section + .v2-services-section,
    .hero-slider-section + .v2-services-section {
        margin-top: 0;
        padding-top: 30px !important;
    }
    
    .v2-about-section,
    .v2-stats-section,
    .v2-faq-section,
    .v2-brands-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services-minimal-grid {
        gap: 30px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
}


/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .about-wrapper,
    .faq-wrapper,
    .brands-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 18px;
    }
}

/* ============================================
   MOBİL BOŞLUK SORUNU - EN GÜÇLÜ ÇÖZÜM
   ============================================ */
@media (max-width: 768px) {
    /* Tüm parent container'ları sıfırla - EN AGGRESİF YAKLAŞIM */
    html body,
    body html,
    html,
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    #wrapper_full,
    #content,
    .content_all_warpper,
    .site-content,
    div#wrapper_full,
    div#content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Header'dan sonraki boşluğu tamamen kaldır */
    .header-area,
    .sticky_header_content,
    .v2-modern-header,
    header.header-area,
    div.sticky_header_content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .header-area + #content,
    .sticky_header_content + #content,
    .header-area + .v2-hero-section,
    .sticky_header_content + .v2-hero-section,
    .header-area + .hero-slider-section,
    .sticky_header_content + .hero-slider-section,
    .header-area + section.v2-hero-section,
    .sticky_header_content + section.v2-hero-section,
    #content > .v2-hero-section,
    #content > section.v2-hero-section,
    #content > .hero-slider-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Hero Section - Tüm varyasyonlar - YÜKSEKLİK KÜÇÜLTME */
    .v2-hero-section,
    section.v2-hero-section,
    .v2-hero-section.hero-slider-section,
    section.v2-hero-section.hero-slider-section {
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .hero-slider-section,
    section.hero-slider-section {
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-slider-wrapper,
    div.hero-slider-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
    }
    
    /* Görünmeyen slider'ları tamamen gizle - layout'tan çıkar */
    .hero-slide-item:not(.active),
    div.hero-slide-item:not(.active) {
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: 0 !important;
        min-height: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        position: absolute !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    
    /* Aktif slider normal görünsün */
    .hero-slide-item.active,
    div.hero-slide-item.active {
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: 0 !important;
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    
    /* Görünmeyen slider container'larını tamamen gizle */
    .hero-slide-item:not(.active) .container,
    div.hero-slide-item:not(.active) .container {
        padding: 0 !important;
        margin: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        display: none !important;
    }
    
    /* Aktif slider container'ı normal görünsün */
    .hero-slide-item.active .container,
    div.hero-slide-item.active .container {
        padding: 30px 15px 30px !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .hero-content-wrapper,
    div.hero-content-wrapper {
        width: 100%;
        padding: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .hero-main-content,
    div.hero-main-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-badge-new,
    div.hero-badge-new {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .hero-title-new {
        margin-bottom: 15px !important;
    }
    
    .hero-description-new {
        margin-bottom: 20px !important;
    }
    
    .hero-buttons {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-main-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-title-new {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    .hero-description-new {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 0 !important;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    /* Hero Stats - Mobilde Tamamen Kaldır */
    .hero-stats {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
    }
    
    .hero-stats * {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-badge-new {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        grid-template-columns: 60px 1fr;
    }
    
    .process-connector {
        left: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL (576px ve altı)
   ============================================ */
@media (max-width: 576px) {
    .hero-slide-item .container {
        padding: 15px 10px 5px;
    }
    
    .hero-title-new {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-description-new {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-badge-new {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-content-wrapper,
    div.hero-content-wrapper {
        padding: 0 5px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-main-content,
    div.hero-main-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-badge-new,
    div.hero-badge-new {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 8px !important;
    }
    
    .hero-title-new {
        margin-bottom: 12px !important;
    }
    
    .hero-description-new {
        margin-bottom: 15px !important;
    }
    
    .hero-buttons {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Hero section'dan sonraki services section için boşluk kaldır */
    .v2-hero-section + .v2-services-section,
    .hero-slider-section + .v2-services-section,
    section.v2-hero-section + section.v2-services-section {
        margin-top: 0 !important;
        padding-top: 30px !important;
    }
    
    .v2-services-section {
        padding: 0 0 50px !important;
        margin-top: 0 !important;
    }
    
    .hero-title-new {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-description-new {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-badge-new {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .badge-text {
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

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

.service-card,
.stat-card,
.testimonial-card,
.brand-item {
    animation: fadeInUp 0.6s ease-out;
}

/* FAQ Accordion JavaScript için */
.faq-question {
    user-select: none;
}

/* ============================================
   Genel Hover Renkleri - Mavi yerine Turuncu
   Turuncu arka plan üzerinde daha belirgin turuncu ton
   Bootstrap #0a58ca rengini override et
   ============================================ */

/* Bootstrap'in mavi hover rengini (#0a58ca) turuncu yap - EN YÜKSEK ÖNCELİK */
/* Bootstrap'in a:hover{color:#0a58ca} kuralını override et */
a:hover,
a:focus,
a:active,
a:visited:hover,
a:link:hover,
body a:hover,
html a:hover,
* a:hover {
    color: var(--orange-hover) !important;
}

/* Tüm link hover renklerini turuncu yap (mavi #0a58ca yerine) */
a:hover:not(.whatsapp-support-link):not(.service-minimal-link):not(.hero-btn-primary):not(.hero-btn-secondary):not(.v3-menu-cta):not(.v2-modern-link):not(.v3-menu-link):not(.social-link):not(.nolink),
a:focus:not(.whatsapp-support-link):not(.service-minimal-link):not(.hero-btn-primary):not(.hero-btn-secondary):not(.v3-menu-cta):not(.v2-modern-link):not(.v3-menu-link):not(.social-link):not(.nolink) {
    color: var(--orange-hover) !important;
}

/* Turuncu arka plan üzerindeki linkler için daha koyu turuncu */
[style*="background"] a:hover,
.orange-bg a:hover,
[class*="orange"] a:hover,
[style*="#FF6B35"] a:hover,
[style*="#FF8533"] a:hover,
[style*="background-color: #FF6B35"] a:hover,
[style*="background-color:#FF6B35"] a:hover,
[style*="background: #FF6B35"] a:hover,
[style*="background:#FF6B35"] a:hover {
    color: var(--orange-hover-dark) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Bootstrap ve diğer kütüphanelerin mavi hover renklerini override et */
.btn-primary:hover:not(.whatsapp-support-link):not(.service-minimal-link):not(.hero-btn-primary):not(.hero-btn-secondary),
.btn:hover:not(.whatsapp-support-link):not(.service-minimal-link):not(.hero-btn-primary):not(.hero-btn-secondary) {
    background-color: var(--orange-hover) !important;
    border-color: var(--orange-hover) !important;
    color: var(--white) !important;
}

/* Bootstrap'in spesifik mavi renklerini override et */
a[href]:hover,
a[href]:focus,
a[href]:active {
    color: var(--orange-hover) !important;
}

/* Inline style ile mavi renk kullanılan hover'ları override et */
[style*="color: #0a58ca"]:hover,
[style*="color:#0a58ca"]:hover,
[style*="color: #0a58ca"]:focus,
[style*="color:#0a58ca"]:focus {
    color: var(--orange-hover) !important;
}

