/* Frontend CSS - Premium White Theme */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: white;
}

/* Kampanya barı varsa body padding'ini artır */
body.has-campaign-bar {
    padding-bottom: 120px;
}

/* Mobilde kampanya barı için daha az padding */
@media (max-width: 768px) {
    body.has-campaign-bar {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    body.has-campaign-bar {
        padding-bottom: 60px;
    }
}

/* Navbar Styles */
.navbar {
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--gray-50);
}

/* Bayi Giriş Butonu */
.nav-link[href*="seller"] {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.nav-link[href*="seller"]:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-link[href*="seller"] i {
    margin-right: 0.5rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    color: white;
}

/* Hero Section - Premium Design */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--gray-800);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 20px;
}

/* Mobil Hero Section Optimizasyonları */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        z-index: 3;
        padding: 0 1rem;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    
    .hero-section .row {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        color: var(--gray-600);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-hero:active {
        transform: scale(0.98);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stats .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .hero-stats .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }
    
    .hero-stats .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    
    .hero-stats .stat-label {
        font-size: 0.875rem;
        margin: 0;
    }
    
    .hero-image-container {
        transform: none;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        margin-top: 1rem;
        z-index: 2;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hero-image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .hero-image {
        height: 280px;
        border-radius: 16px;
    }
    
    .hero-image-overlay {
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image {
        height: 240px;
    }
}

@media (max-width: 375px) {
    .hero-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        height: 200px;
    }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stats .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        background: rgba(37, 99, 235, 0.05);
        border-radius: 8px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    
    .hero-stats .stat-label {
        font-size: 0.875rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
        transform: none;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-image-overlay {
        z-index: 1;
    }
    
    /* Mobilde hero content'in z-index'ini artır */
    .hero-content {
        position: relative;
        z-index: 10;
    }
    
    /* Mobilde hero image container'ın z-index'ini düşür */
    .hero-image-container {
        position: relative;
        z-index: 1;
    }
}

/* Feature Cards - Premium Design */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.feature-card h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Feature Cards Mobile - 2'li yan yana */
@media (max-width: 768px) {
    /* Bootstrap grid override */
    .row.g-4 > .col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .feature-card .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Feature Cards - Çok küçük ekranlar için tek sütun */
@media (max-width: 576px) {
    /* Bootstrap grid override - tek sütun */
    .row.g-4 > .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
        font-size: 1.25rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .feature-card .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Feature Cards - En güçlü override */
@media (max-width: 768px) and (min-width: 577px) {
    .features-section .row.g-4 > div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        float: left !important;
        box-sizing: border-box !important;
    }
    
    .features-section .row.g-4 > div:nth-child(odd) {
        padding-right: 0.5rem !important;
    }
    
    .features-section .row.g-4 > div:nth-child(even) {
        padding-left: 0.5rem !important;
    }
}

/* Features Grid - Özel CSS */
.features-grid {
    display: flex !important;
    flex-wrap: wrap !important;
}

@media (max-width: 768px) {
    .features-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .features-grid > div {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
    }
    
    /* Bootstrap'i tamamen override et */
    .features-grid .col-lg-4,
    .features-grid .col-md-6,
    .features-grid .col-sm-6 {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .features-grid > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .features-grid .col-lg-4,
    .features-grid .col-md-6,
    .features-grid .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* FEATURE CARDS MOBIL FIX - EN YÜKSEK ÖNCELİK */
@media (max-width: 768px) {
    .features-section .row.g-4.features-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin: 0 !important;
    }
    
    .features-section .row.g-4.features-grid > div,
    .features-section .row.g-4.features-grid .col-lg-4,
    .features-section .row.g-4.features-grid .col-md-6,
    .features-section .row.g-4.features-grid .col-sm-6 {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
        padding: 0 !important;
        margin: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
}

/* BOOTSTRAP COL CLASSES OVERRIDE - MOBIL */
@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
    
    .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
    
    .col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

@media (max-width: 576px) {
    .col-lg-4,
    .col-md-6,
    .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* MOBİLOZELLİK CLASS - MOBİL CİHAZLARDA 50% */
.mobilozellik {
    width: 100%;
    max-width: 33%;
    flex: 0 0 100%;
}

@media (max-width: 768px) {
    .mobilozellik {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 576px) {
    .mobilozellik {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* PRICING CARDS 4'LÜ YAN YANA - EN YÜKSEK ÖNCELİK */
@media (min-width: 992px) {
    .pricing-section .row.g-4.justify-content-center {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin: 0 !important;
    }
    
    .pricing-section .row.g-4.justify-content-center > div,
    .pricing-section .row.g-4.justify-content-center .col-lg-3 {
        flex: 0 0 calc(25% - 0.75rem) !important;
        max-width: calc(25% - 0.75rem) !important;
        width: calc(25% - 0.75rem) !important;
        padding: 0 !important;
        margin: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
    
    .pricing-section .row.g-4.justify-content-center .pricing-card {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* PRICING GRID - ÖZEL CSS */
.pricing-grid {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Fiyat Alın ve Sınırsız paketler için özel stiller */
.pricing-card .price:contains("Fiyat Alın"),
.pricing-card .price:contains("Fiyat Alın") {
    color: #007bff !important;
    font-weight: 600 !important;
}

.pricing-card .price-period:contains("İletişime Geçin"),
.pricing-card .price-period:contains("İletişime Geçin") {
    color: #6c757d !important;
    font-size: 0.9em !important;
}

.pricing-card .pricing-badge:contains("Sınırsız"),
.pricing-card .pricing-badge:contains("Sınırsız") {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    font-weight: 600 !important;
}

@media (min-width: 992px) {
    .pricing-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .pricing-grid > div {
        flex: 0 0 calc(25% - 0.75rem) !important;
        max-width: calc(25% - 0.75rem) !important;
        width: calc(25% - 0.75rem) !important;
    }
    
    .pricing-grid .col-lg-3 {
        flex: 0 0 calc(25% - 0.75rem) !important;
        max-width: calc(25% - 0.75rem) !important;
        width: calc(25% - 0.75rem) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .features-section .row.g-4.features-grid > div,
    .features-section .row.g-4.features-grid .col-lg-4,
    .features-section .row.g-4.features-grid .col-md-6,
    .features-section .row.g-4.features-grid .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    font-weight: 400;
}

/* Pricing Section - Premium Design */
.pricing-section {
    background: linear-gradient(135deg, white 0%, var(--gray-50) 50%, white 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Pricing Section - 4'lü paketler için container düzenlemesi */
@media (min-width: 992px) {
    .pricing-section .container {
        max-width: 1400px;
    }
    
    .pricing-section .row.g-4 {
        gap: 1rem !important;
    }
    
    /* 4'lü paketler için güçlü override */
    .pricing-section .row.g-4 > div {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        width: 25% !important;
        padding: 0 0.5rem !important;
    }
    
    .pricing-section .row.g-4 .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        width: 25% !important;
        padding: 0 0.5rem !important;
    }
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Pricing Cards - Premium Design */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Pricing Cards - 4'lü yan yana için kompakt tasarım */
@media (min-width: 992px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-card .pricing-price .price {
        font-size: 1.8rem;
    }
    
    .pricing-card .pricing-features ul li {
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }
    
    .pricing-card .btn-pricing {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-card .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-card .pricing-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .pricing-card .pricing-note {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    position: relative;
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
}
.feature-badge{
    background: color(srgb 0.9583 0.6159 0.0523);
    border-radius: 10px;
    color: #fff;
}

/* CAPTCHA Styles */
.captcha-container {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.captcha-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.captcha-question span {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

#refreshCaptcha {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#refreshCaptcha:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

#refreshCaptcha i {
    transition: transform 0.3s ease;
}

#refreshCaptcha:hover i {
    transform: rotate(360deg);
}

.captcha-container input[type="number"] {
    border: 2px solid var(--gray-300);
    transition: all 0.3s ease;
}

.captcha-container input[type="number"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.captcha-container input[type="number"]:invalid {
    border-color: var(--danger-color);
}

/* CAPTCHA Animation */
@keyframes captchaShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.captcha-error {
    animation: captchaShake 0.5s ease-in-out;
    border-color: var(--danger-color) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.pricing-badge-featured {
    position: absolute;
    top: 10px;
    left: 50px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    color: white;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.pricing-card h4 {
    color: var(--gray-900);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing Features */
.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.btn-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    width: 100%;
    margin-bottom: 1rem;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-pricing-featured {
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-pricing-featured:hover {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-pricing-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Pricing CTA Section */
.pricing-cta {
    background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-cta .container {
    position: relative;
    z-index: 2;
}

/* CTA Header */
.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.pricing-cta:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.pricing-cta h3 {
    color: var(--gray-900);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--gray-600);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* CTA Features */
.cta-features {
    margin-bottom: 3rem;
}

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

.cta-feature-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cta-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.cta-feature-content h5 {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-feature-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.cta-stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* CTA Actions */
.cta-actions {
    text-align: center;
    margin-top: 3rem;
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-guarantee i {
    font-size: 1.2rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    margin-bottom: 1rem;
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.btn-cta-secondary i {
    margin-right: 0.5rem;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .pricing-cta {
        padding: 2rem 1.5rem;
    }
    
    .pricing-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-stat-number {
        font-size: 2rem;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        margin-right: 0;
    }
}

/* Animation for CTA elements */
.cta-feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.cta-feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.cta-stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.cta-stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay to CTA elements */
.cta-feature-item:nth-child(1) { transition-delay: 0.1s; }
.cta-feature-item:nth-child(2) { transition-delay: 0.2s; }
.cta-feature-item:nth-child(3) { transition-delay: 0.3s; }
.cta-feature-item:nth-child(4) { transition-delay: 0.4s; }
.cta-feature-item:nth-child(5) { transition-delay: 0.5s; }
.cta-feature-item:nth-child(6) { transition-delay: 0.6s; }

.cta-stat-item:nth-child(1) { transition-delay: 0.7s; }
.cta-stat-item:nth-child(2) { transition-delay: 0.8s; }
.cta-stat-item:nth-child(3) { transition-delay: 0.9s; } 

/* Testimonials Section - Premium Design */
.testimonials-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    margin: 3rem 0;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

/* Testimonial Cards - Premium Design */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    min-width: 320px; /* Daraltıldı */
    max-width: 380px; /* Maksimum genişlik eklendi */
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--warning-color);
    font-size: 1rem;
}

/* Testimonial Content */
.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

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

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
    font-family: serif;
}

/* Testimonial Footer */
.testimonial-footer {
    text-align: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
}

.testimonial-footer h5 {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-footer span {
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.testimonial-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Testimonials Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.testimonials-stats .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .testimonials-container {
        gap: 1rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .testimonials-stats .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animation for testimonial cards */
.testimonial-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-scroll animation */
@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.testimonials-container.auto-scroll {
    animation: slideTestimonials 30s linear infinite;
}

.testimonials-container.auto-scroll:hover {
    animation-play-state: paused;
} 

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn-cta-primary {
    margin: 0;
    margin-bottom: 1rem;
}

/* Contact Section - Premium Design */
.contact-section {
    background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.contact-form-container h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Contact Info Container */
.contact-info-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.contact-info-container h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    margin-top: 2rem;
}

.map-container h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Map Container - Contact Card Version */
.contact-info-container .map-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.contact-info-container .map-container h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-container .map-container h6 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-container .map-container .small {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.map-wrapper iframe {
    border-radius: 16px;
    width: 100%;
    height: 400px;
    border: none;
}

/* Contact Card Map Wrapper */
.contact-info-container .map-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 0.5rem;
}

.contact-info-container .map-wrapper iframe {
    border-radius: 12px;
    height: 250px;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
    background: #f8f9fa;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    display: block;
}

/* Leaflet Map Customization */
.leaflet-container {
    border-radius: 16px;
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
}

.leaflet-map-pane {
    border-radius: 16px;
}

.leaflet-tile-pane {
    border-radius: 16px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: inherit;
}

.leaflet-popup-tip {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.leaflet-control-zoom {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-control-zoom a {
    border-radius: 4px;
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 300px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Contact Card Map Overlay */
.contact-info-container .map-overlay {
    top: 10px;
    right: 10px;
    padding: 1rem;
    max-width: 250px;
    border-radius: 8px;
}

.map-info h5 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.map-info h6 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.map-info h5 i,
.map-info h6 i {
    color: var(--primary-color);
}

.map-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-info-container .map-info p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.map-info .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.map-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

.map-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.map-actions .btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.map-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.map-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.map-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.map-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Footer - Premium Design */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    opacity: 0.3;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social .social-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1rem;
    margin-right: 0;
}

.footer-menu h6 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.footer-menu ul li {
    margin-bottom: 0.75rem;
}

.footer-menu ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-newsletter {
    text-align: right;
}

.newsletter-form .input-group {
    max-width: 300px;
    margin-left: auto;
}

.newsletter-form .form-control {
    border-radius: 12px 0 0 12px;
    border: 2px solid var(--gray-700);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
    padding: 0.75rem 1rem;
    border: 2px solid var(--primary-color);
    border-left: none;
}

/* Responsive Design for Contact and Footer */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        padding: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-newsletter {
        text-align: center;
        margin-top: 2rem;
    }
    
    .newsletter-form .input-group {
        margin: 0 auto;
    }
    
    .footer-menu {
        margin-bottom: 2rem;
    }
    
    /* Responsive Map */
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info-container .map-wrapper iframe {
        height: 200px;
    }
    
    .contact-info-container .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
} 

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    min-width: 320px; /* Daraltıldı */
    max-width: 380px; /* Maksimum genişlik eklendi */
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CTA Area - Tamamen Yeniden Tasarlandı */
.pricing-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    background-size: 200px 200px, 300px 300px, 400px 400px;
    animation: float 20s ease-in-out infinite;
}

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

.pricing-cta .container {
    position: relative;
    z-index: 2;
}

/* CTA Header */
.cta-header {
    margin-bottom: 3rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-icon i {
    font-size: 2.5rem;
    color: #333;
}

.cta-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA Features */
.cta-features {
    margin: 3rem 0;
}

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

.cta-feature-item {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-feature-item::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.6s ease;
}

.cta-feature-item:hover::before {
    left: 100%;
}

.cta-feature-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #333;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.cta-feature-item:hover .cta-feature-icon {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.4);
}

.cta-feature-content h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-feature-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.cta-stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-stat-label {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Actions */
.cta-actions {
    margin-top: 3rem;
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

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

.cta-guarantee i {
    font-size: 1.2rem;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
    color: #333;
}

.btn-cta-secondary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-secondary::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.6s ease;
}

.btn-cta-secondary:hover::before {
    left: 100%;
}

.btn-cta-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.6);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.btn-cta-outline:hover::before {
    left: 100%;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cta {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }
    
    .cta-header h3 {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-feature-item {
        padding: 1.5rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .cta-stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .cta-stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Login Dropdown Button */
.login-dropdown {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-left: 1rem !important;
}

.login-dropdown:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important;
}

.login-dropdown:focus {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important;
}

.nav-item.dropdown {
    position: relative !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0.5rem !important;
    background: white !important;
    border: 1px solid var(--gray-100) !important;
    min-width: 200px !important;
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-item {
    padding: 0.75rem 1.5rem !important;
    color: var(--gray-700) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.dropdown-item i {
    width: 16px !important;
    text-align: center !important;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    transform: translateX(5px) !important;
    transition: all 0.2s ease !important;
}

.dropdown-item:active {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)) !important;
    transform: translateX(3px) !important;
}

.dropdown-item:focus {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    margin-left: 0.5rem !important;
    transition: transform 0.3s ease !important;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg) !important;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 8rem 0 4rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.registration-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
    position: relative;
    z-index: 2;
}

.registration-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.business-type-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
    text-align: center;
}

.business-type-group .form-check {
    flex: 1;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.business-type-group .form-check:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.business-type-group .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

.business-type-group .form-check-input:checked ~ .form-check {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.business-type-group .form-check-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    cursor: pointer;
}

.business-type-group .form-check-label i {
    font-size: 2rem;
    color: var(--primary-color);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-text {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

/* Login Credentials Section */
.login-credentials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.login-credentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 14px;
    pointer-events: none;
}

.login-credentials-section h5 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.login-credentials-section h5::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 6rem 0 2rem;
    }
    
    .registration-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .registration-title {
        font-size: 2rem;
    }
    
    .business-type-group {
        flex-direction: column;
    }
    
    .business-type-group .form-check {
        padding: 1rem;
    }
    
    .login-credentials-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Konum Butonu ve Toast Stilleri */
.input-group .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.input-group .btn-outline-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.input-group .btn-outline-primary i {
    font-size: 0.9rem;
}

/* Toast Bildirimleri */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 1rem 1.5rem;
    z-index: 9999;
    transform: translateX(100%);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    max-width: 350px;
}

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

.toast-notification.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-notification.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast-notification.toast-warning {
    border-left: 4px solid var(--warning-color);
}

.toast-notification.toast-info {
    border-left: 4px solid var(--info-color);
}

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

.toast-content i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-success .toast-content i {
    color: var(--success-color);
}

.toast-error .toast-content i {
    color: var(--danger-color);
}

.toast-warning .toast-content i {
    color: var(--warning-color);
}

.toast-info .toast-content i {
    color: var(--info-color);
}

.toast-content span {
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.4;
}

/* Responsive Toast */
@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-menu h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-menu ul li {
    margin-bottom: 0.5rem;
}

.footer-menu ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-menu ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.footer-newsletter .input-group {
    max-width: 300px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
}

.footer-newsletter .form-control::placeholder {
    color: #9ca3af;
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    color: white;
}

.footer-newsletter .btn-primary-custom {
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter .btn-primary-custom:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Footer - High Priority */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-menu {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer .footer-menu ul,
    .footer-menu ul {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem 1rem !important;
        text-align: left !important;
        max-width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-direction: row !important;
        width: 100% !important;
    }
    
    .footer .footer-menu ul li,
    .footer-menu ul li {
        flex: 0 0 calc(50% - 0.5rem) !important;
        display: block !important;
        width: calc(50% - 0.5rem) !important;
        margin: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
    
    .footer-menu {
        padding: 0 0.5rem;
    }
    
    .footer-menu ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-menu ul li a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
        display: block;
        transition: all 0.3s ease;
    }
    
    .footer-menu ul li a:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .footer-newsletter .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Ana başlıkları tek sütun yap */
    .footer-menu-wrapper {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .footer-menu {
        width: 100% !important;
        max-width: 250px !important;
    }
    
    /* Başlık hizalaması - küçük ekran */
    .footer-menu h6 {
        text-align: center !important;
        margin-bottom: 0.75rem !important;
        padding-left: 0 !important;
    }
    
    .footer-links-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-wrap: nowrap !important;
    }
    
    .footer-links-grid li {
        flex: 1 1 100% !important;
        width: 100% !important;
        float: none !important;
    }
    
    .footer-links-grid li a {
        text-align: center !important;
        padding-left: 0 !important;
    }
    
    /* Fallback for old selectors */
    .footer .footer-menu ul,
    .footer-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-wrap: nowrap !important;
    }
    
    .footer .footer-menu ul li,
    .footer-menu ul li {
        flex: 1 1 100% !important;
        width: 100% !important;
        float: none !important;
    }
    
    .footer .footer-menu ul li a,
    .footer-menu ul li a {
        text-align: center !important;
        padding-left: 0 !important;
    }
    
    /* Newsletter mobil düzeltmesi - 576px altı */
    .newsletter-input-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0 !important;
    }
    
    .newsletter-input {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .newsletter-button {
        flex: 0 0 auto !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
    }
    
    /* Mail aboneliği düzeltmesi */
    .footer-newsletter .input-group {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .footer-newsletter .form-control {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .footer-newsletter .btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        display: inline-block !important;
        margin-left: 0.5rem !important;
    }
    
    .footer-newsletter .newsletter-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    /* Force horizontal layout for newsletter */
    .footer-newsletter .input-group,
    .footer-newsletter .newsletter-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
    }
    
    .footer-newsletter .form-control,
    .footer-newsletter .btn {
        display: inline-block !important;
        float: none !important;
        vertical-align: top !important;
    }
    
    /* Override Bootstrap input-group */
    .footer-newsletter .input-group > * {
        display: inline-block !important;
        vertical-align: middle !important;
    }
    
    .footer-newsletter .input-group > .form-control {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-right: none !important;
    }
    
    .footer-newsletter .input-group > .btn {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-left: none !important;
    }
    
    .footer-menu ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-menu h6 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-menu {
        padding: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 375px) {
    .footer-menu ul li a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .footer-menu h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* Newsletter Custom Styles */
.newsletter-input-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0 !important;
}

.newsletter-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem 0 0 0.5rem !important;
    background-color: #f9fafb !important;
    color: #374151 !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.newsletter-input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.newsletter-button {
    flex: 0 0 auto !important;
    padding: 0.75rem 1rem !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    border-radius: 0 0.5rem 0.5rem 0 !important;
    color: white !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.newsletter-button:active {
    transform: translateY(0) !important;
}

/* Footer Mobile Fix - Highest Priority */
@media (max-width: 768px) {
    /* Ana başlıkları 2'li yan yana yap */
    .footer-menu-wrapper {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .footer-menu {
        width: 100% !important;
        max-width: 200px !important;
    }
    
    /* Başlık hizalaması */
    .footer-menu h6 {
        text-align: left !important;
        margin-bottom: 0.75rem !important;
        padding-left: 0 !important;
    }
    
    /* Alt menüleri tek satır yap */
    .footer-links-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .footer-links-grid li {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
    
    .footer-links-grid li a {
        display: block !important;
        width: 100% !important;
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        color: #9ca3af !important;
        transition: all 0.3s ease !important;
        text-align: left !important;
        padding-left: 0 !important;
    }
    
    /* Footer row'u flex yap */
    .footer .row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem 0 !important;
    }
    
    /* Fallback for old selectors */
    .footer .row .col-md-6 .footer-menu ul,
    .footer .row .col-sm-6 .footer-menu ul,
    .footer .footer-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .footer .row .col-md-6 .footer-menu ul li,
    .footer .row .col-sm-6 .footer-menu ul li,
    .footer .footer-menu ul li {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
    
    .footer .row .col-md-6 .footer-menu ul li a,
    .footer .row .col-sm-6 .footer-menu ul li a,
    .footer .footer-menu ul li a {
        display: block !important;
        width: 100% !important;
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        color: #9ca3af !important;
        transition: all 0.3s ease !important;
        text-align: left !important;
        padding-left: 0 !important;
    }
    
    /* Mail aboneliği düzeltmesi - 768px altı */
    .footer-newsletter .input-group {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .footer-newsletter .form-control {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .footer-newsletter .btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        display: inline-block !important;
        margin-left: 0.5rem !important;
    }
    
    .footer-newsletter .newsletter-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    /* Newsletter mobil düzeltmesi - 768px altı */
    .newsletter-input-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0 !important;
    }
    
    .newsletter-input {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .newsletter-button {
        flex: 0 0 auto !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    animation: float 20s ease-in-out infinite;
}

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

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


.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-item p {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin: 0;
}

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

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    color: #333;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
    color: #333;
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

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

.hero-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.category-card h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Latest Posts Section */
.latest-posts {
    padding: 6rem 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-image svg,
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.post-date {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sidebar Posts */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sidebar-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.sidebar-post .post-image {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post .post-content {
    flex: 1;
    padding: 0;
}

.sidebar-post .post-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.sidebar-post h4 {
    margin-bottom: 0.5rem;
}

.sidebar-post h4 a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-post h4 a:hover {
    color: var(--primary-color);
}

.sidebar-post .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.sidebar-post .post-date,
.sidebar-post .read-time {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    animation: float 20s ease-in-out infinite;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form .form-control:focus {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.15);
    color: white;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-left: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Responsive Blog Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats .row {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .featured-post {
        margin-bottom: 2rem;
    }
    
    .sidebar-posts {
        margin-top: 2rem;
    }
    
    .newsletter-content h3 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1.1rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    animation: float 20s ease-in-out infinite;
}

.blog-detail-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-detail-meta .author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-detail-meta .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-detail-meta .author-details h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.blog-detail-meta .author-details p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

.blog-detail-meta .post-stats {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.blog-detail-meta .post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-detail-content .content {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-detail-content .content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content .content h2,
.blog-detail-content .content h3,
.blog-detail-content .content h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-detail-content .content h2 {
    font-size: 1.8rem;
}

.blog-detail-content .content h3 {
    font-size: 1.5rem;
}

.blog-detail-content .content h4 {
    font-size: 1.3rem;
}

.blog-detail-content .content ul,
.blog-detail-content .content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-content .content li {
    margin-bottom: 0.5rem;
}

.blog-detail-content .content blockquote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.blog-detail-content .content blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
}

.blog-detail-content .content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Blog Sidebar */
.blog-sidebar {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.related-post .post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-post .post-image svg {
    width: 100%;
    height: 100%;
}

.related-post .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-post .post-content h6 {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post .post-content h6 a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post .post-content h6 a:hover {
    color: var(--primary-color);
}

.related-post .post-date {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-sidebar h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.recent-posts {
    margin-bottom: 2rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-item .post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-item .post-content {
    flex: 1;
    padding: 0;
}

.recent-post-item h6 {
    margin-bottom: 0.5rem;
}

.recent-post-item h6 a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-item h6 a:hover {
    color: var(--primary-color);
}

.recent-post-item .post-date {
    color: var(--gray-500);
    font-size: 0.85rem;
}

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

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid var(--gray-200);
}

.categories-list a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.categories-list .count {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.categories-list a:hover .count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Responsive Blog Detail */
@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 4rem 0 2rem;
    }
    
    .blog-detail-content {
        padding: 2rem;
        margin-top: -1rem;
    }
    
    .blog-detail-content h1 {
        font-size: 2rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-detail-meta .post-stats {
        justify-content: flex-start;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
        position: static;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .nav-link[href*="seller"] {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white !important;
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    }
    
    .nav-link[href*="seller"]:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 12px;
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: var(--gray-50);
        transform: translateX(5px);
    }
}

/* Mobil Sabit Sepet İkonu */
.mobile-cart-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.mobile-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.2rem;
}

.mobile-cart-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.mobile-cart-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Mobilde sepet ikonunu gizle */
@media (max-width: 991px) {
    .mobile-cart-fixed {
        display: none !important;
    }
    
    /* Mobilde navbar'daki sepeti gizle */
    .navbar-nav .nav-link[href="cart.php"] {
        display: none;
    }
}

/* Tüm mobil ekranlarda sepet ikonunu gizle */
@media (max-width: 768px) {
    .mobile-cart-fixed {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-cart-fixed {
        display: none !important;
    }
}

/* References Section Styles */
.references-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.references-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.references-container {
    position: relative;
    width: 100%;
    z-index: 2;
}

.references-row {
    height: 170px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.references-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.references-row-1 .references-track {
    animation-name: slideLeft;
}

.references-row-2 .references-track {
    animation-name: slideRight;
}

.references-row-3 .references-track {
    animation-name: slideLeft;
}

.references-row:hover .references-track {
    animation-play-state: paused;
}

.reference-item {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reference-logo {
    max-width: 85%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    filter: grayscale(0%);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive References */
@media (max-width: 768px) {
    .references-row {
        height: 120px;
        margin: 15px 0;
    }
    
    .reference-item {
        width: 100px;
        height: 100px;
        margin: 0 15px;
    }
    
    .reference-logo {
        max-width: 75%;
        max-height: 60%;
    }
}

@media (max-width: 576px) {
    .references-row {
        height: 80px;
        margin: 10px 0;
    }
    
    .reference-item {
        width: 70px;
        height: 70px;
        margin: 0 10px;
    }
    
    .reference-logo {
        max-width: 70%;
        max-height: 50%;
    }
}

/* Sabit Kampanya Barı */
.fixed-campaign-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #ff4757;
    max-height: 120px; /* Maksimum yükseklik sınırı */
    overflow: hidden;
}

.fixed-campaign-bar.show {
    transform: translateY(0);
}

.campaign-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.campaign-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.campaign-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.campaign-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Futura-Med', 'Futura', 'Arial', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.campaign-details p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.campaign-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.campaign-code {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.campaign-code:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.campaign-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.campaign-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.campaign-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.campaign-countdown {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 5px;
    display: inline-block;
}

/* Kampanya Barı Animasyonları */
@keyframes campaignPulse {
    0%, 100% {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 -4px 25px rgba(255, 107, 107, 0.3);
    }
}

.fixed-campaign-bar.urgent {
    animation: campaignPulse 2s infinite;
    background: linear-gradient(135deg, #ff4757, #ff3838);
}

/* Mobilde animasyonu hafiflet */
@media (max-width: 768px) {
    .fixed-campaign-bar.urgent {
        animation: campaignPulse 3s infinite;
    }
    
    /* Mobilde daha yumuşak geçiş */
    .fixed-campaign-bar {
        transition: transform 0.3s ease-out;
    }
}

/* Kampanya Barı Toggle Switch Stilleri */
.form-check-input:checked {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.form-check-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

.form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Kampanya Barı */
@media (max-width: 768px) {
    .fixed-campaign-bar {
        padding: 8px 0;
        border-top: 2px solid #ff4757;
    }
    
    .campaign-bar-content {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        padding: 0 12px;
    }
    
    .campaign-info {
        flex-direction: row;
        gap: 8px;
        flex: 1;
        min-width: 0; /* Text overflow için */
    }
    
    .campaign-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .campaign-details {
        min-width: 0;
        flex: 1;
    }
    
    .campaign-details h4 {
        font-size: 13px;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .campaign-details p {
        font-size: 11px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .campaign-countdown {
        display: none; /* Mobilde countdown gizle */
    }
    
    /* Mobilde daha kompakt görünüm için */
    .campaign-details h4 {
        line-height: 1.2;
    }
    
    .campaign-details p {
        line-height: 1.1;
    }
    
    .campaign-actions {
        flex-direction: row;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .campaign-code {
        font-size: 11px;
        padding: 4px 6px;
        border-width: 1px;
        white-space: nowrap;
    }
    
    .campaign-btn {
        font-size: 11px;
        padding: 6px 10px;
        white-space: nowrap;
        min-width: auto;
    }
    
    .campaign-close {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .fixed-campaign-bar {
        padding: 6px 0;
    }
    
    .campaign-bar-content {
        padding: 0 8px;
        gap: 6px;
    }
    
    .campaign-info {
        gap: 6px;
    }
    
    .campaign-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .campaign-details h4 {
        font-size: 12px;
    }
    
    .campaign-details p {
        font-size: 10px;
    }
    
    .campaign-code {
        font-size: 10px;
        padding: 3px 5px;
        letter-spacing: 0.5px;
    }
    
    .campaign-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .campaign-close {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 375px) {
    .campaign-details h4 {
        font-size: 11px;
    }
    
    .campaign-details p {
        font-size: 9px;
    }
    
    .campaign-code {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .campaign-btn {
        font-size: 9px;
        padding: 4px 6px;
    }
}

/* Sadece restaurant.php sayfasındaki delivery-info için */
.restaurant-actions .delivery-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.restaurant-actions .delivery-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: white;
    font-size: 0.95rem;
}

.restaurant-actions .delivery-info .info-item:last-child {
    margin-bottom: 0;
}

.restaurant-actions .delivery-info .info-item i {
    width: 20px;
    text-align: center;
    color: white;
    font-size: 1.1rem;
}

.restaurant-actions .delivery-info .info-item span {
    flex: 1;
    font-weight: 500;
    text-align: left;
}

/* Sadece restaurant.php'deki text-success yazıları beyaz olsun */
.restaurant-actions .delivery-info .info-item.text-success {
    color: white !important;
}

.restaurant-actions .delivery-info .info-item.text-success i {
    color: white !important;
}

/* Restaurant Actions */
.restaurant-actions {
    text-align: center;
}

.restaurant-actions .action-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
}

.restaurant-actions .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.restaurant-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Loyalty Stars Styles */
.loyalty-stars-mini,
.loyalty-stars-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
}

.loyalty-stars-mini i,
.loyalty-stars-compact i {
    color: #ffd700;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-description-mini {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.loyalty-stars-mini {
    font-size: 0.7rem;
    padding: 3px 8px;
    opacity: 1 !important;
    visibility: visible !important;
}

.loyalty-stars-compact {
    font-size: 0.75rem;
    padding: 4px 10px;
    opacity: 1 !important;
    visibility: visible !important;
}

.loyalty-stars-mini:hover,
.loyalty-stars-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.6);
    transition: all 0.3s ease;
}

/* Order Modal Styles */
#orderModal {
    z-index: 10000 !important;
}

#orderModal .modal-backdrop {
    z-index: 9999 !important;
}

#orderModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Bootstrap Modal Z-Index Override */
.modal {
    z-index: 10000 !important;
}

.modal-backdrop {
    z-index: 9999 !important;
}

#orderModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 24px;
}

#orderModal .modal-title {
    font-weight: 600;
    color: #2c3e50;
}

#orderModal .modal-body {
    padding: 30px 24px;
}

#orderModal .app-buttons .btn {
    height: 70px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    text-decoration: none;
}

#orderModal .app-buttons .btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#orderModal .app-buttons .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #6c757d !important;
}

#orderModal .app-buttons .btn i {
    font-size: 24px;
}

#orderModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 16px 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .restaurant-actions .delivery-info {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .restaurant-actions .delivery-info .info-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .restaurant-actions .delivery-info .info-item i {
        width: 18px;
        font-size: 1rem;
    }
    
    .restaurant-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .loyalty-stars-mini,
    .loyalty-stars-compact {
        font-size: 0.65rem;
        padding: 1px 4px;
    }
    
    #orderModal .app-buttons {
        flex-direction: column;
    }
    
    #orderModal .app-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Compact product grid for main products */
.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.product-card-compact {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-image-compact {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.product-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-compact:hover .product-image-compact img {
    transform: scale(1.05);
}

.default-product-image-compact {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
}

.popular-badge-mini {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-badge-compact {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-content-compact {
    padding: 12px;
}

.product-content-compact h5 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.product-description-compact {
    color: #7f8c8d;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.original-price-compact {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 0.8rem;
}

.current-price-compact {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1rem;
}

.product-actions-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.product-actions-compact .btn {
    flex: 1;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-actions-compact .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.product-actions-compact .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive adjustments for compact products */
@media (max-width: 768px) {
    .products-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .product-image-compact {
        height: 100px;
    }
    
    .product-content-compact {
        padding: 10px;
    }
    
    .product-content-compact h5 {
        font-size: 0.9rem;
    }
    
    .product-description-compact {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }
}