/* Golly Akademi - Pediatri Platformu CSS */

/* Kurumsal Renk Paleti */
:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #06b6d4;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Genel Tipografi */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Navbar Kurumsal Stilleri */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-heavy);
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    box-shadow: var(--shadow-medium);
}

/* Hero Section Kurumsal Stilleri */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    color: var(--white);
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border: none;
    box-shadow: var(--shadow-medium);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
}

/* Feature Cards Kurumsal Stilleri */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    height: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.feature-icon.doctor {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.feature-icon.pharmacy {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
}

.feature-icon.representative {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
}

.feature-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Modern Product Cards Kurumsal Stilleri */
.product-card-modern {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    border: 1px solid var(--border-color);
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.product-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
}

.product-image-modern {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-image-modern .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-content-modern {
    padding: 1.75rem;
    background: var(--white);
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-title-modern {
    color: var(--primary-color);
}

.product-description-modern {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: var(--white);
    font-size: 0.9rem;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Product Categories Kurumsal Stilleri */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.product-categories .btn {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
    font-size: 0.9rem;
}

.product-categories .btn:hover,
.product-categories .btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Statistics Section Kurumsal Stilleri */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.stat-item {
    transition: transform 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Contact Section Kurumsal Stilleri */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    padding: 3rem;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

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

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

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

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

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

.notification i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

.notification.info i {
    color: #17a2b8;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design Kurumsal Stilleri */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
    }
    
    .section-title {
        font-size: 1.875rem !important;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .product-categories {
        gap: 0.75rem;
    }
    
    .product-categories .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .product-content-modern {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .product-categories .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* No Products Message */
.no-products {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.no-products i {
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-products h4 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.no-products p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Product Detail Page Styles */
.page-title-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--accent-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

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

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

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

/* Product Images */
.product-images-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0,0,0,0.05);
}

.main-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.main-image-container:hover img {
    transform: scale(1.02);
}

.thumbnail-images {
    margin-top: 1.5rem;
    padding: 0.5rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 12px;
}

.thumbnail-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    border-radius: 12px;
    opacity: 0.7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thumbnail-image:hover {
    opacity: 1;
    border-color: #667eea;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.thumbnail-image.active {
    opacity: 1;
    border-color: #667eea;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.default-product-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: hidden;
}

.default-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.default-product-image i {
    font-size: 4rem;
    color: #667eea;
    z-index: 2;
    position: relative;
    margin-bottom: 1rem;
}

.default-product-image p {
    color: #6c757d;
    font-weight: 500;
    z-index: 2;
    position: relative;
    margin: 0;
}

/* Product Info */
.product-info {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    height: 100%;
}

.category-badge .badge {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.product-rating .stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating .stars i {
    font-size: 1.2rem;
    color: #f39c12;
}

.product-description h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description p {
    line-height: 1.6;
    color: #6c757d;
}

.product-features h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.product-features ul li i {
    color: #28a745;
}

/* Product Actions */
.product-actions .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Product Tabs */
.product-tabs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nav-tabs {
    border: none;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 1rem;
}

.tab-pane {
    padding: 2rem;
}

.specifications-list {
    display: grid;
    gap: 1rem;
}

.specification-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Similar Products */
.similar-products-section {
    background: white;
}

.similar-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .product-images-container {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .main-image-container img {
        height: 350px;
    }
    
    .default-product-image {
        height: 350px;
    }
    
    .thumbnail-image {
        height: 70px;
    }
    
    .product-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tab-pane {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-images-container {
        padding: 0.75rem;
    }
    
    .main-image-container img {
        height: 300px;
    }
    
    .default-product-image {
        height: 300px;
    }
    
    .thumbnail-image {
        height: 60px;
    }
    
    .product-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .tab-pane {
        padding: 1rem;
    }
}

/* Sipariş Sistemi Styles */
.siparis-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.product-card-siparis {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

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

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

.product-card-siparis:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--primary-light);
}

.product-image-siparis {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.product-image-siparis .product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.product-image-siparis .product-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-content-siparis {
    padding: 2rem;
    background: var(--white);
}

.product-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(10px);
}

.product-title-siparis {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description-siparis {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-actions-siparis {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 0.75rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quantity-controls .btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.quantity-controls .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.quantity-controls .btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 70px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

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

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Sepet Styles */
.cart-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
}



/* Cart Item Images */
.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.quantity-btn-cart {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.7rem;
}

.remove-item {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.7rem;
}

/* Modal Styles */
.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

#orderSummary {
    max-height: 200px;
    overflow-y: auto;
}

#orderSummary div {
    padding: 0.25rem 0;
    border-bottom: 1px solid #e9ecef;
}

#orderSummary div:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card-siparis {
        margin-bottom: 1rem;
    }
    
    .product-image-siparis {
        height: 180px;
    }
    
    .product-content-siparis {
        padding: 1rem;
    }
    
    .quantity-controls {
        flex-direction: row;
        justify-content: center;
    }
    
    .cart-item {
        padding: 0.75rem;
    }
    
    .cart-item-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .product-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .product-categories .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .product-title-siparis {
        font-size: 1rem;
    }
    
    .product-description-siparis {
        font-size: 0.8rem;
    }
    
    .quantity-controls {
        padding: 0.25rem;
    }
    
    .quantity-input {
        width: 50px;
    }
}

/* Mobil Sepet Ek Optimizasyonlar */
@media (max-width: 768px) {
    /* Mobilde sepetin üstte kalmasını sağla */
    .siparis-section {
        position: relative;
    }
    
    .siparis-section .col-lg-4 {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    /* Mobilde sepet kartının gölgesini artır */
    .siparis-section .col-lg-4 .card {
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        border: none;
    }
    
    /* Mobilde sepet başlığını daha belirgin yap */
    .siparis-section .col-lg-4 .card-header {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-bottom: none;
    }
    
    /* Mobilde sepet içeriğini daha okunabilir yap */
    .siparis-section .col-lg-4 .card-body {
        background: #f8f9fa;
        border-radius: 0 0 15px 15px;
    }
    
    /* Mobilde sepet item'larını daha belirgin yap */
    .siparis-section .col-lg-4 .cart-item {
        background: white;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    
    /* Mobilde sepet butonlarını daha erişilebilir yap */
    .siparis-section .col-lg-4 .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobilde sepet boş durumunu daha güzel göster */
    .siparis-section .col-lg-4 .text-center.text-muted {
        background: white;
        border-radius: 8px;
        padding: 30px 20px;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    /* Küçük mobilde sepeti daha kompakt yap */
    .siparis-section .col-lg-4 {
        margin-bottom: 10px;
    }
    
    .siparis-section .col-lg-4 .card-header {
        padding: 10px 15px;
    }
    
    .siparis-section .col-lg-4 .card-body {
        padding: 10px 15px;
    }
    
    .siparis-section .col-lg-4 .cart-item {
        padding: 8px;
        margin-bottom: 6px;
    }
    
    /* Küçük mobilde sepet butonlarını daha büyük yap */
    .siparis-section .col-lg-4 .btn {
        min-height: 48px;
        font-size: 0.9rem;
    }
}

/* Mobile Cart Positioning - Fixed Bottom Right */
@media (max-width: 768px) {
    .siparis-section .row {
        flex-direction: column;
    }
    
    .cart-column {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 320px;
        max-width: calc(100vw - 40px);
        z-index: 1000;
        background: var(--white);
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
        max-height: 400px;
        overflow: hidden;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .cart-column.collapsed {
        transform: translateY(calc(100% - 60px));
    }
    
    .cart-header-mobile {
        background: var(--primary-gradient);
        color: var(--white);
        padding: 15px 20px;
        border-radius: 16px 16px 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
    }
    
    .cart-header-mobile h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .cart-header-mobile .cart-count {
        background: var(--white);
        color: var(--primary-color);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }
    
    .cart-header-mobile .toggle-icon {
        transition: transform 0.3s ease;
    }
    
    .cart-column.collapsed .toggle-icon {
        transform: rotate(180deg);
    }
    
    .cart-content-mobile {
        padding: 20px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .cart-column.collapsed .cart-content-mobile {
        display: none;
    }
    
    .cart-item-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .cart-item-mobile:last-child {
        border-bottom: none;
    }
    
    .cart-item-image-mobile {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        object-fit: cover;
        border: 1px solid var(--border-color);
    }
    
    .cart-item-details-mobile {
        flex: 1;
        min-width: 0;
    }
    
    .cart-item-title-mobile {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .cart-item-quantity-mobile {
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .quantity-controls-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .quantity-btn-mobile {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        border: 1px solid var(--border-color);
        background: var(--white);
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .quantity-btn-mobile:hover {
        background: var(--primary-light);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .quantity-input-mobile {
        width: 30px;
        text-align: center;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 12px;
        padding: 2px;
    }
    
    .cart-actions-mobile {
        padding: 15px 20px;
        border-top: 1px solid var(--border-color);
        background: var(--light-bg);
        display: flex;
        gap: 10px;
    }
    
    .cart-actions-mobile .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .products-column {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .cart-column {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 10px;
    }
    
    .cart-header-mobile {
        padding: 12px 16px;
    }
    
    .cart-content-mobile {
        padding: 16px;
    }
    
    .cart-actions-mobile {
        padding: 12px 16px;
    }
    
    .products-column {
        margin-bottom: 100px;
    }
}

/* Floating Cart Button for Mobile */
@media (max-width: 768px) {
    .floating-cart-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-gradient);
        color: var(--white);
        border: none;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        transform: scale(1);
    }
    
    .floating-cart-btn:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-xl);
    }
    
    .floating-cart-btn .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--accent-color);
        color: var(--white);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }
    
    .cart-column {
        display: none;
    }
    
    .cart-column.show {
        display: block;
    }
}

/* Mobile Cart Additional Styles */
@media (max-width: 768px) {
    .cart-column.show {
        display: block;
    }
    
    .cart-column:not(.show) {
        display: none;
    }
    
    /* Floating cart button animation */
    .floating-cart-btn {
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    
    /* Mobile cart panel entrance animation */
    .cart-column.show {
        animation: slideInUp 0.3s ease-out;
    }
    
    @keyframes slideInUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* Mobile cart header hover effect */
    .cart-header-mobile:hover {
        background: var(--primary-dark);
    }
    
    /* Mobile cart item hover effects */
    .cart-item-mobile:hover {
        background: var(--light-bg);
        border-radius: 8px;
        padding: 12px;
        margin: 0 -12px;
    }
    
    /* Mobile quantity controls enhancement */
    .quantity-btn-mobile:active {
        transform: scale(0.95);
    }
    
    /* Mobile cart actions button enhancement */
    .cart-actions-mobile .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
}

/* Desktop Cart Enhancements */
@media (min-width: 769px) {
    .cart-item {
        transition: all 0.2s ease;
    }
    
   
    
    .cart-item-image {
        transition: transform 0.2s ease;
    }
    
    .cart-item:hover .cart-item-image {
        transform: scale(1.05);
    }
}

/* İletişim Sayfası Stilleri */
.contact-form-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-form-content .sec-title {
    text-align: left;
    margin-bottom: 40px;
}

.contact-form-content .sec-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form-content .sec-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .message-btn {
    margin-top: 20px;
}

.contact-form .theme-btn-one {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.contact-form .theme-btn-one:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* İletişim Bilgi Sidebar */
.contact-info-sidebar {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.single-info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.single-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.single-info-box:last-child {
    margin-bottom: 0;
}

.single-info-box .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.single-info-box .icon-box i {
    color: var(--white);
    font-size: 1.2rem;
}

.single-info-box .text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.single-info-box .text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Harita Bölümü */
.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-section .sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.map-section .sec-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.map-section .sec-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-outer {
    position: relative;
}

.map-canvas {
    width: 100%;
    height: 450px;
}

.map-canvas iframe {
    border-radius: 15px;
}

/* SSS Bölümü */
.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.faq-section .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .sec-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-section .sec-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.single-faq-block {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.single-faq-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.single-faq-block .inner-box {
    padding: 25px 30px;
}

.single-faq-block .upper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-faq-block .upper-box h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.single-faq-block .upper-box .icon-box {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.single-faq-block .upper-box .icon-box i {
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.single-faq-block.active .upper-box .icon-box i {
    transform: rotate(45deg);
}

.single-faq-block .content-box {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.single-faq-block.active .content-box {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.single-faq-block .content-box p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-info-sidebar {
        margin-top: 40px;
        position: static;
    }
    
    .map-canvas {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-form-content .sec-title h2 {
        font-size: 2rem;
    }
    
    .faq-section .sec-title h2 {
        font-size: 2rem;
    }
    
    .map-section .sec-title h2 {
        font-size: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
    }
    
    .single-info-box {
        padding: 15px;
    }
    
    .single-info-box .icon-box {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .single-faq-block .inner-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .contact-form-content .sec-title {
        margin-bottom: 30px;
    }
    
    .contact-form-content .sec-title h2 {
        font-size: 1.8rem;
    }
    
    .faq-section .sec-title h2 {
        font-size: 1.8rem;
    }
    
    .map-section .sec-title h2 {
        font-size: 1.8rem;
    }
    
    .map-canvas {
        height: 300px;
    }
    
    .single-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .single-info-box .icon-box {
        margin: 0 0 15px 0;
    }
}

/* Yeni İletişim Sayfası Tasarımı */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero .pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-hero .pattern-1,
.contact-hero .pattern-2 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.contact-hero .pattern-1 {
    top: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

.contact-hero .pattern-2 {
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.contact-hero .breadcrumb-nav {
    margin-bottom: 30px;
}

.contact-hero .breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.contact-hero .breadcrumb-list li {
    color: rgba(255, 255, 255, 0.8);
}

.contact-hero .breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-hero .breadcrumb-list li a:hover {
    color: var(--white);
}

.contact-hero .breadcrumb-list .separator {
    color: rgba(255, 255, 255, 0.5);
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

.contact-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 80px 0;
    background: var(--white);
}

/* İletişim sayfası genişlik sınırlaması */
.contact-info-cards .auto-container,
.contact-form-section .auto-container,
.map-section .auto-container,
.faq-section .auto-container,
.cta-section .auto-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero .auto-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* İletişim formu daha kompakt görünüm */
.contact-form-section .row {
    justify-content: center;
}

.contact-form-section .content-column {
    max-width: 600px;
}

.contact-form-section .sidebar-column {
    max-width: 350px;
}

/* İletişim kartları daha düzenli */
.contact-info-cards .row {
    justify-content: center;
}

.contact-info-cards .info-card-column {
    max-width: 320px;
}

/* Harita bölümü daha kompakt */
.map-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ bölümü daha düzenli */
.faq-section .row {
    justify-content: center;
}

.faq-section .content-column {
    max-width: 500px;
}

.info-card {
    margin-bottom: 30px;
}

.info-card .card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.info-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.info-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.info-card .icon-box i {
    color: var(--white);
    font-size: 2rem;
}

.info-card .content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card .content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card .content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card .content a:hover {
    color: var(--primary-dark);
}

.direction-link,
.call-link,
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-bg);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.direction-link:hover,
.call-link:hover,
.email-link:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Enhanced Form Styling */
.contact-form .input-group {
    position: relative;
}

.contact-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
    transition: color 0.3s ease;
}

.contact-form .input-group input,
.contact-form .input-group textarea {
    padding-left: 50px;
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
    transform: none;
}

.contact-form .input-group input:focus + .input-icon,
.contact-form .input-group textarea:focus + .input-icon {
    color: var(--primary-color);
}

.contact-form .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-form .input-group input:focus ~ .input-line,
.contact-form .input-group textarea:focus ~ .input-line {
    width: 100%;
}

.contact-form .theme-btn-one {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

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

.contact-form .theme-btn-one:hover::before {
    left: 100%;
}

/* Enhanced Sidebar */
.contact-info-sidebar .sidebar-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.contact-info-sidebar .sidebar-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info-sidebar .sidebar-header p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-sidebar .schedule {
    margin-top: 15px;
}

.contact-info-sidebar .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-sidebar .schedule-item:last-child {
    border-bottom: none;
}

.contact-info-sidebar .schedule-item .day {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info-sidebar .schedule-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.emergency-link,
.appointment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.emergency-link:hover,
.appointment-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.emergency-link.emergency {
    background: #dc3545;
}

.emergency-link.emergency:hover {
    background: #c82333;
}

/* Enhanced Map Section */
.map-section .sec-title .title-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-section .sec-title .title-icon i {
    color: var(--white);
    font-size: 2rem;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 250px;
}

.map-overlay .overlay-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-overlay .overlay-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.map-overlay .overlay-content p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Enhanced FAQ Section */
.faq-section .sec-title .title-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.faq-section .sec-title .title-icon i {
    color: var(--white);
    font-size: 2rem;
}

.faq-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.action-link.emergency {
    background: #dc3545;
    color: var(--white);
}

.action-link.emergency:hover {
    background: #c82333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content .cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-content .cta-icon i {
    font-size: 3rem;
    color: var(--white);
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.theme-btn-two {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.theme-btn-two:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Enhanced Responsive Design */
@media (max-width: 991px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .contact-hero .hero-stats {
        gap: 40px;
    }
    
    .contact-hero .stat-number {
        font-size: 2rem;
    }
    
    .info-card .card-inner {
        padding: 30px 20px;
    }
    
    .map-overlay {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
    
    /* Tablet boyutunda daha kompakt */
    .contact-form-section .content-column,
    .contact-form-section .sidebar-column {
        max-width: none;
    }
    
    .contact-info-cards .info-card-column {
        max-width: none;
    }
    
    .faq-section .content-column {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .theme-btn-one,
    .theme-btn-two {
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .info-card .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .info-card .icon-box i {
        font-size: 1.5rem;
    }
    
    .cta-content .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-content .cta-icon i {
        font-size: 2.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    /* Mobilde container padding'i azalt */
    .contact-info-cards .auto-container,
    .contact-form-section .auto-container,
    .map-section .auto-container,
    .faq-section .auto-container,
    .cta-section .auto-container,
    .contact-hero .auto-container {
        padding: 0 15px;
    }
}

/* Modern İletişim Sayfası Stilleri */
.modern-contact-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

/* Hero Section Modern */
.contact-hero-modern {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-modern {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
}

.current {
    color: white;
    font-weight: 600;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats-modern {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-modern {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Cards Modern */
.contact-cards-modern {
    padding: 80px 0;
    background: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card-modern {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-address {
    border-color: #4CAF50;
}

.card-phone {
    border-color: #2196F3;
}

.card-email {
    border-color: #FF9800;
}

.card-hours {
    border-color: #9C27B0;
}

.card-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.card-address .card-icon-modern {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.card-phone .card-icon-modern {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.card-email .card-icon-modern {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.card-hours .card-icon-modern {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.card-content-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.card-content-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.phone-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}

.email-link {
    color: #FF9800;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    color: #666;
    font-weight: 500;
}

.time {
    color: #333;
    font-weight: 600;
}

.card-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    z-index: -1;
}

/* Contact Form Modern */
.contact-form-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.form-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.form-section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.form-section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.form-container-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-contact-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper-modern i {
    position: absolute;
    left: 15px;
    color: #667eea;
    font-size: 1.1rem;
}

.input-wrapper-modern input,
.input-wrapper-modern textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-wrapper-modern input:focus,
.input-wrapper-modern textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-wrapper-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-modern {
    text-align: center;
    margin-top: 30px;
}

.submit-btn-modern {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

/* Quick Info Modern */
.quick-info-modern {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.info-header p {
    color: #666;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.info-item-modern:hover {
    background: #e8f4fd;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.info-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.emergency-btn,
.appointment-btn,
.documents-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.emergency-btn {
    background: linear-gradient(135deg, #f44336, #e91e63);
}

.appointment-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.documents-btn {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.emergency-btn:hover,
.appointment-btn:hover,
.documents-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Map Section Modern */
.map-section-modern {
    padding: 80px 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.map-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.map-header p {
    font-size: 1.1rem;
    color: #666;
}

.map-container-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-info-overlay {
    position: absolute;
    top: 30px;
    right: 40px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.overlay-content-modern h4 {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.address-text {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.directions-btn-modern,
.call-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.directions-btn-modern {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.call-btn-modern {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

.directions-btn-modern:hover,
.call-btn-modern:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* FAQ Section Modern */
.faq-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.faq-question h4 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-item-modern.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-item-modern.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-action:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.faq-action.emergency {
    background: linear-gradient(135deg, #f44336, #e91e63);
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-content-modern {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-icon-modern {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #ffd700;
}

.cta-content-modern h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-modern p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #ffd700;
    color: #333;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-primary:hover,
.cta-btn-secondary:hover {
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}

.cta-btn-primary:hover {
    background: #ffed4e;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .form-container-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title-modern {
        font-size: 2.8rem;
    }
    
    .hero-stats-modern {
        gap: 20px;
    }
    
    .stat-item-modern {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .form-container-modern {
        padding: 0 15px;
    }
    
    .modern-contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info-overlay {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero-modern {
        padding: 40px 0;
    }
    
    .hero-title-modern {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .info-card .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .info-card .icon-box i {
        font-size: 1.5rem;
    }
    
    .cta-content .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-content .cta-icon i {
        font-size: 2.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    /* Mobilde container padding'i azalt */
    .contact-info-cards .auto-container,
    .contact-form-section .auto-container,
    .map-section .auto-container,
    .faq-section .auto-container,
    .cta-section .auto-container,
    .contact-hero .auto-container {
        padding: 0 15px;
    }
}
