/* ==========================================
   RENK AYARLARI - Kolayca değiştirilebilir
   ========================================== */
   :root {
    /* Ana Renkler */
    --primary-color: #FF6B35;      /* Turuncu */
    --secondary-color: #2C3E50;    /* Koyu Gri/Siyah */
    --accent-color: #F7931E;       /* Açık Turuncu */
    
    /* Arka Plan Renkleri */
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --bg-gray: #ECEFF1;
    
    /* Metin Renkleri */
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    
    /* Durum Renkleri */
    --success-color: #28A745;
    --danger-color: #DC3545;
    --warning-color: #FFC107;
    --info-color: #17A2B8;
    
    /* Gölge ve Border */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --border-radius: 8px;
}

/* ==========================================
   GENEL AYARLAR
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */
.header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    height: 80px;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.brand-subtext {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 60%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    min-height: 500px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.stat-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   SECTIONS
   ========================================== */
.products-section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ==========================================
   PRODUCT CARDS - Makineler
   ========================================== */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--bg-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-hot {
    background: var(--danger-color);
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0;
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-specs i {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

/* ==========================================
   PART CARDS - Yedek Parçalar
   ========================================== */
.part-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.part-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    position: relative;
}

.part-image img {
    max-height: 180px;
    object-fit: contain;
}

.part-content {
    padding: 15px;
}

.part-code {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--text-secondary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.part-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.part-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.part-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.part-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

/* ==========================================
   FEATURE BOXES - Özellikler
   ========================================== */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Index page feature card */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: var(--primary-color);
}

/* ==========================================
   FILTER SIDEBAR - Makineler ve Yedek Parça Sayfaları
   ========================================== */
.filter-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--primary-color);
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Filter sidebar link hover effects */
.filter-sidebar a {
    transition: all 0.3s ease;
}

.filter-sidebar a:hover {
    background: var(--primary-color) !important;
}

.filter-sidebar a:hover strong,
.filter-sidebar a:hover i {
    color: white !important;
}

/* ==========================================
   FORMS - İletişim ve Servis Talep
   ========================================== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px;
    background: var(--bg-gray);
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    background: rgba(255, 107, 53, 0.05);
}

/* ==========================================
   MAKINE/YEDEK PARÇA DETAY SAYFASI
   ========================================== */
.detail-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

/* Yedek parça detay için özel stil */
.part-detail .gallery-main {
    object-fit: contain;
    background: #f8f9fa;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

/* Yedek parça thumbnail için özel stil */
.part-detail .gallery-thumb {
    object-fit: contain;
    background: #f8f9fa;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.detail-info {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.detail-title {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.detail-price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.detail-specs {
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--text-secondary);
}

.spec-value {
    color: var(--secondary-color);
}

.detail-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Card hover effect for related items */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb-section {
    background: var(--bg-gray);
    padding: 20px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* ==========================================
   PAGE HEADER - Blog ve diğer sayfalar
   ========================================== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: white;
}

/* ==========================================
   ABOUT PAGE - Hakkımızda
   ========================================== */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.certificate-box {
    transition: all 0.3s ease;
}

.certificate-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--secondary-color);
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 4px;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================
   TABS - Detay sayfalar için
   ========================================== */
.nav-tabs {
    border-bottom: 2px solid var(--bg-gray);
}

.nav-tabs .nav-link {
    color: var(--text-secondary);
    border: none;
    padding: 15px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border: none;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: white;
    border: none;
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    padding: 30px;
    background: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .filter-sidebar {
        margin-bottom: 30px;
    }
    
    .detail-gallery {
        margin-bottom: 20px;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-price {
        font-size: 22px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .product-card,
    .part-card {
        margin-bottom: 20px;
    }
    
    .feature-box,
    .feature-card {
        margin-bottom: 30px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
#scrollToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollToTop:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5);
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTop:active {
    transform: translateY(-1px);
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobil için ayarlamalar */
@media (max-width: 768px) {
    #scrollToTop {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* ==========================================
   MODERN SERVICES SECTION
   ========================================== */
.services-section {
    padding: 80px 0;
}

.service-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-image {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.service-card-modern:hover .service-link {
    transform: scale(1);
}

.service-link:hover {
    color: var(--accent-color);
}

.service-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: rotateY(360deg);
}

.service-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.service-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: width 0.3s ease;
}

.service-btn:hover::after {
    width: 100%;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: var(--accent-color);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Grid düzeni için alternatif renk şemaları */
.service-card-modern:nth-child(6n+2) .service-icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card-modern:nth-child(6n+3) .service-icon-wrapper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card-modern:nth-child(6n+4) .service-icon-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card-modern:nth-child(6n+5) .service-icon-wrapper {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-card-modern:nth-child(6n+6) .service-icon-wrapper {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .service-body {
        padding: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-icon-wrapper i {
        font-size: 28px;
    }
}

/* ==========================================
   GOOGLE MAPS RESPONSIVE IFRAME
   ========================================== */
.contact-info-box iframe,
div[style*="harita"] iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: var(--border-radius);
}