/* Genel Stiller - Mavi ve Beyaz Tema */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2.5rem;
}

.text-muted {
    color: #64748b !important;
}

.text-primary {
    color: #2563eb !important;
}

.btn-primary {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

section {
    padding: 6rem 0;
}

/* Header Stili - Profesyonel Görünüm */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 55px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 3px;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
}

/* Hero/Slider Stili - Müşteri Destek Merkezi Teması */
.hero-slider {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    max-width: 900px;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.2);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
    color: #f1f5f9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* Page Header - Marka Sayfaları için özel */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-header: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 20"><defs><pattern id="header-pattern" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="20" cy="10" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="5" r="0.6" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="15" r="1" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="20" fill="url(%23header-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Article Content - Marka Sayfası Ana İçerik */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.article-content h2,
.article-content h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.article-content h2:after,
.article-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #64748b;
    line-height: 1.6;
}

.article-content ul li:before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.article-content ul li strong {
    color: #1e3a8a;
    font-weight: 700;
}

/* Service Info Card - Ana içerik kartı */
.service-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-info-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.service-info-card h3 {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Service Highlights - Hizmet vurguları */
.service-highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-highlight h5 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-highlight p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Sidebar Service Info Cards */
.col-lg-4 .service-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #2563eb;
    transition: all 0.3s ease;
}

.col-lg-4 .service-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.col-lg-4 .service-info-card h4 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.col-lg-4 .service-info-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.col-lg-4 .service-info-card .list-unstyled li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.col-lg-4 .service-info-card .list-unstyled li:last-child {
    border-bottom: none;
}

.col-lg-4 .service-info-card .fa-check-circle,
.col-lg-4 .service-info-card .fa-angle-right,
.col-lg-4 .service-info-card .fa-clock {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.col-lg-4 .service-info-card span {
    color: #475569;
    font-weight: 500;
}

.col-lg-4 .service-info-card strong {
    color: #1e3a8a;
}

/* Contact Box - CTA kutusu */
.contact-box {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.contact-box: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 20"><defs><pattern id="contact-pattern" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="25" cy="8" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="12" r="0.7" fill="rgba(255,255,255,0.08)"/><circle cx="85" cy="6" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="20" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.2;
}

.contact-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-box .btn-light {
    background: white;
    color: #dc2626;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-box .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Alt Sayfa Header için özel margin */
.bg-white {
    margin-top: 0;
    padding-top: 80px;
}

/* Hizmetler Stili - Profesyonel Kartlar */
.services-card {
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.services-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.services-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.services-icon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-card:hover .services-icon {
    transform: scale(1.1);
}

.services-card .card-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.services-card .card-text {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Stili - Müşteri Hizmetleri Odaklı */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-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 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="5" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="15" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="70" cy="8" r="0.2" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="12" r="0.6" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Minimal Footer */
.minimal-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 0;
}

.minimal-footer .text-muted {
    color: #94a3b8 !important;
}

/* Hakkımızda Stili */
.about-img {
    border-radius: 20px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-check {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
}

/* İletişim Stili */
.contact-info i {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-right: 15px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-weight: 500;
}

/* Footer Stili */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0;
}

.footer-links h5 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    color: #f1f5f9;
    font-weight: 700;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 12px;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Features Strip - Kırmızı Tema - Tüm Cihazlarda Görünür */
.features-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.3);
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-badge i {
    font-size: 14px;
}

.main-call-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-call-link {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    text-decoration: none;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-call-link:hover,
.main-call-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.main-call-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.main-call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-call-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.main-call-text {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.form-badge {
    flex-shrink: 0;
}

.form-badge-link {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    text-decoration: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-badge-link:hover,
.form-badge-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-badge-link i {
    font-size: 16px;
    margin-bottom: 2px;
}

.form-badge-link span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Çağrı Butonu Animasyonu */
.call-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 12px;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
}

.call-button: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: all 0.6s ease;
}

.call-button:hover:before {
    left: 100%;
}

.shake-icon {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    2%, 6%, 10% { transform: rotate(-10deg); }
    4%, 8%, 12% { transform: rotate(10deg); }
    14%, 18% { transform: rotate(-5deg); }
    16%, 20% { transform: rotate(5deg); }
    22%, 100% { transform: rotate(0deg); }
}

/* Dropdown Menü Stilleri */
.dropdown-large {
    min-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-menu {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #f8fafc, #e2e8f0);
    color: #2563eb;
    padding-left: 20px;
}

.dropdown-toggle::after {
    transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobil Uyumlu Dropdown Menü */
@media (max-width: 767px) {
    .dropdown-large {
        width: 100%;
        padding: 0;
    }
    
    .dropdown-large .row {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-large .col-6 {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    
    .dropdown-header {
        text-align: center;
        padding: 10px;
        font-weight: 600;
        background-color: #f8f9fa;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        text-align: center;
    }
    
    .dropdown-menu-end {
        right: auto;
        left: 0;
    }
}

/* Responsif Ayarlar */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    /* Header butonunu mobilde gizle */
    .call-button {
        display: none !important;
    }
    
    /* Page header mobil */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.5rem;
                color: #ffffff;
    }
    
    /* Service info cards mobil */
    .service-info-card {
        padding: 30px 20px;
        margin: 2rem 0;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .service-highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Article content mobil */
    .article-content {
        font-size: 1.05rem;
    }
    
    .article-content h2 {
        font-size: 2rem;
    }
    
    .article-content h3 {
        font-size: 1.5rem;
                color: #000000;
    }
    
    /* Contact box mobil */
    .contact-box {
        padding: 30px 20px;
        margin: 2rem 0;
    }
    
    .contact-box h3 {
        font-size: 1.5rem;
    }
    
    /* Features strip için mobil düzenlemeler */
    .features-container {
        justify-content: center;
        gap: 15px;
    }
    
    .main-call-link {
        padding: 10px 16px;
        flex: 1;
        max-width: 250px;
    }
    
    .main-call-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .main-call-number {
        font-size: 14px;
    }
    
    .main-call-text {
        font-size: 10px;
    }
    
    .form-badge-link {
        width: 45px;
        height: 45px;
    }
    
    .form-badge-link i {
        font-size: 14px;
    }
    
    .form-badge-link span {
        font-size: 7px;
    }
    
    /* Footer padding düzenlemesi */
    .minimal-footer {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    /* Page header çok küçük ekranlar */
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Features strip için çok küçük ekranlar */
    .main-call-link {
        padding: 8px 12px;
        min-width: 200px;
    }
    
    .main-call-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .main-call-number {
        font-size: 13px;
    }
    
    .form-badge-link {
        width: 40px;
        height: 40px;
    }
    
    .form-badge-link i {
        font-size: 12px;
    }
    
    .form-badge-link span {
        font-size: 6px;
    }
    
    /* Service info cards küçük ekran */
    .service-info-card {
        padding: 20px 15px;
    }
    
    /* Footer için daha az padding */
    .minimal-footer {
        padding-bottom: 90px !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 10px;
    }
    
    /* Desktop'ta minimal footer padding düzenlemesi */
    .minimal-footer {
        padding-bottom: 100px !important;
    }
}

/* Marka Sayfası Özel Animate Sınıfları */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-highlight {
    animation: fadeInUp 0.6s ease forwards;
}

.service-highlight:nth-child(1) { animation-delay: 0.1s; }
.service-highlight:nth-child(2) { animation-delay: 0.2s; }
.service-highlight:nth-child(3) { animation-delay: 0.3s; }
.service-highlight:nth-child(4) { animation-delay: 0.4s; }

/* Sidebar kartları için stagger animasyon */
.col-lg-4 .service-info-card:nth-child(1) { animation-delay: 0.2s; }
.col-lg-4 .service-info-card:nth-child(2) { animation-delay: 0.4s; }
.col-lg-4 .service-info-card:nth-child(3) { animation-delay: 0.6s; }

/* Scroll animasyonları için opacity başlangıç değeri */
.service-highlight,
.col-lg-4 .service-info-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Hover efektleri için gelişmiş transitions */
.service-info-card,
.service-highlight,
.contact-box {
    will-change: transform;
    backface-visibility: hidden;
}

/* Premium görünüm için additional shadows */
.article-content h2:first-of-type {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.article-content h2:first-of-type:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 15px 15px 0 0;
}/* Genel Stiller - Mavi ve Beyaz Tema */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2.5rem;
}

.text-muted {
    color: #64748b !important;
}

.text-primary {
    color: #2563eb !important;
}

.btn-primary {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

section {
    padding: 6rem 0;
}

/* Header Stili - Profesyonel Görünüm */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 55px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 3px;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
}

/* Hero/Slider Stili - Müşteri Destek Merkezi Teması */
.hero-slider {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    max-width: 900px;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.2);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
    color: #f1f5f9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* Alt Sayfa Header - Service Details Bölümü */
.page-header {
    background: linear-gradient(rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9)), url('../img/services-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    margin-top: 76px;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image img {
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Service Details İçerik */
.bg-white h2 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.lead {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.7;
}

.bg-white p {
    color: #000000;
    line-height: 1.8;
}

/* Check Circle İkonları */
.fa-check-circle {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Features Kartları */
.service-features {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid #2563eb;
}

.service-features:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-features:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-features h4 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-features p {
    color: #64748b;
    line-height: 1.6;
}

/* Hizmetler Stili - Profesyonel Kartlar */
.services-card {
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.services-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.services-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.services-icon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-card:hover .services-icon {
    transform: scale(1.1);
}

.services-card .card-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.services-card .card-text {
    color: #64748b;
    line-height: 1.6;
}

/* Accordion (FAQ) Stilleri */
.accordion-item {
    border: none;
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    color: #1e3a8a;
    padding: 20px 25px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    border: none;
}

.accordion-body {
    background: white;
    padding: 25px;
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Servis Süreci - Step by Step */
.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step h4 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.4rem;
}

.step p {
    color: #64748b;
    line-height: 1.7;
}

/* Testimonial Kartları */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e2e8f0;
}

.testimonial-card h5 {
    color: #1e3a8a;
    font-weight: 700;
}

.testimonial-card .text-muted {
    color: #94a3b8 !important;
}

.star-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Stili - Müşteri Hizmetleri Odaklı */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-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 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="5" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="15" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="70" cy="8" r="0.2" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="12" r="0.6" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Hakkımızda Stili */
.about-img {
    border-radius: 20px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-check {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
}

/* İletişim Stili */
.contact-info i {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-right: 15px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-weight: 500;
}

/* Footer Stili */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0;
}

.footer-links h5 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    color: #f1f5f9;
    font-weight: 700;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 12px;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Features Strip - Kırmızı Tema - Tüm Cihazlarda Görünür */
.features-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.3);
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-badge i {
    font-size: 14px;
}

.main-call-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-call-link {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    text-decoration: none;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-call-link:hover,
.main-call-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.main-call-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.main-call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-call-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.main-call-text {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.form-badge {
    flex-shrink: 0;
}

.form-badge-link {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    text-decoration: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-badge-link:hover,
.form-badge-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-badge-link i {
    font-size: 16px;
    margin-bottom: 2px;
}

.form-badge-link span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Çağrı Butonu Animasyonu */
.call-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 12px;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
}

.call-button: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: all 0.6s ease;
}

.call-button:hover:before {
    left: 100%;
}

.shake-icon {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    2%, 6%, 10% { transform: rotate(-10deg); }
    4%, 8%, 12% { transform: rotate(10deg); }
    14%, 18% { transform: rotate(-5deg); }
    16%, 20% { transform: rotate(5deg); }
    22%, 100% { transform: rotate(0deg); }
}

/* Dropdown Menü Stilleri */
.dropdown-large {
    min-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-menu {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #f8fafc, #e2e8f0);
    color: #2563eb;
    padding-left: 20px;
}

.dropdown-toggle::after {
    transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobil Uyumlu Dropdown Menü */
@media (max-width: 767px) {
    .dropdown-large {
        width: 100%;
        padding: 0;
    }
    
    .dropdown-large .row {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-large .col-6 {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    
    .dropdown-header {
        text-align: center;
        padding: 10px;
        font-weight: 600;
        background-color: #f8f9fa;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        text-align: center;
    }
    
    .dropdown-menu-end {
        right: auto;
        left: 0;
    }
}

/* Responsif Ayarlar */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    /* Header butonunu mobilde gizle */
    .call-button {
        display: none !important;
    }
    
    /* Features strip için mobil düzenlemeler */
    .features-container {
        justify-content: center;
        gap: 15px;
    }
    
    .main-call-link {
        padding: 10px 16px;
        flex: 1;
        max-width: 250px;
    }
    
    .main-call-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .main-call-number {
        font-size: 14px;
    }
    
    .main-call-text {
        font-size: 10px;
    }
    
    .form-badge-link {
        width: 45px;
        height: 45px;
    }
    
    .form-badge-link i {
        font-size: 14px;
    }
    
    .form-badge-link span {
        font-size: 7px;
    }
    
    /* Service features mobil */
    .service-features {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Steps mobil */
    .step {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Footer padding düzenlemesi */
    footer {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    /* Features strip için çok küçük ekranlar */
    .main-call-link {
        padding: 8px 12px;
        min-width: 200px;
    }
    
    .main-call-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .main-call-number {
        font-size: 13px;
    }
    
    .form-badge-link {
        width: 40px;
        height: 40px;
    }
    
    .form-badge-link i {
        font-size: 12px;
    }
    
    .form-badge-link span {
        font-size: 6px;
    }
    
    /* Footer için daha az padding */
    footer {
        padding-bottom: 90px !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 10px;
    }
    
    /* Desktop'ta footer padding düzenlemesi */
    footer {
        padding-bottom: 100px !important;
    }
}

/* Alt Sayfa Özel Stilleri */

/* Service Details için özel margin */
.service-details-section {
    margin-top: 80px;
    padding-top: 0;
}

/* Service başlığı için özel stil */
.service-main-title {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 20px;
}

.service-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

/* Alt sayfalar için navbar margin fix */
body {
    padding-top: 76px;
}

/* Service image container için özel efekt */
.service-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.service-image-container:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #2563eb15, #dc262615);
    border-radius: 25px;
    z-index: -1;
}

/* FAQ section için özel padding */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Testimonial section için gradient background */
.testimonial-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Alt sayfa CTA section için özel stil */
.service-cta {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    position: relative;
    overflow: hidden;
}

.service-cta: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 20"><defs><pattern id="service-grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="15" cy="12" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="40" cy="8" r="0.6" fill="rgba(255,255,255,0.06)"/><circle cx="65" cy="15" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="85" cy="6" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="20" fill="url(%23service-grain)"/></svg>');
    opacity: 0.3;
}

/* Service features grid için responsive düzenleme */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

/* Alt sayfa için özel button stilleri */
.service-btn-primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.service-btn-primary:hover {
    background: linear-gradient(45deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    color: white;
}

/* Service info boxes */
.service-info-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #dc2626;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-info-box h5 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-info-box p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Breadcrumb styling */
.service-breadcrumb {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 15px 0;
    margin-top: 76px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #64748b;
}

/* Service statistics */
.service-stats {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.service-stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 10px;
    display: block;
}

.service-stats-label {
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}/* Genel Stiller - Mavi ve Beyaz Tema */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2.5rem;
}

.text-muted {
    color: #64748b !important;
}

.text-primary {
    color: #2563eb !important;
}

.btn-primary {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

section {
    padding: 6rem 0;
}

/* Header Stili - Profesyonel Görünüm */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 55px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 3px;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
}

/* Hero/Slider Stili - Müşteri Destek Merkezi Teması */
.hero-slider {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    max-width: 900px;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.2);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
    color: #f1f5f9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* Hizmetler Stili - Profesyonel Kartlar */
.services-card {
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.services-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.services-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.services-icon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-card:hover .services-icon {
    transform: scale(1.1);
}

.services-card .card-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.services-card .card-text {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Stili - Müşteri Hizmetleri Odaklı */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-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 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="5" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="15" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="70" cy="8" r="0.2" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="12" r="0.6" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Hakkımızda Stili */
.about-img {
    border-radius: 20px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-check {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
}

/* İletişim Stili */
.contact-info i {
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-right: 15px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-weight: 500;
}

/* Footer Stili */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0;
}

.footer-links h5 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    color: #f1f5f9;
    font-weight: 700;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #2563eb, #60a5fa);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 12px;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Features Strip - Kırmızı Tema - Tüm Cihazlarda Görünür */
.features-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.3);
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-badge i {
    font-size: 14px;
}

.main-call-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-call-link {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    text-decoration: none;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-call-link:hover,
.main-call-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.main-call-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.main-call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-call-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.main-call-text {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.form-badge {
    flex-shrink: 0;
}

.form-badge-link {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    text-decoration: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-badge-link:hover,
.form-badge-link:focus {
    color: #b91c1c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-badge-link i {
    font-size: 16px;
    margin-bottom: 2px;
}

.form-badge-link span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Çağrı Butonu Animasyonu */
.call-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 12px;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
}

.call-button: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: all 0.6s ease;
}

.call-button:hover:before {
    left: 100%;
}

.shake-icon {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    2%, 6%, 10% { transform: rotate(-10deg); }
    4%, 8%, 12% { transform: rotate(10deg); }
    14%, 18% { transform: rotate(-5deg); }
    16%, 20% { transform: rotate(5deg); }
    22%, 100% { transform: rotate(0deg); }
}

/* Dropdown Menü Stilleri */
.dropdown-large {
    min-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-menu {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #f8fafc, #e2e8f0);
    color: #2563eb;
    padding-left: 20px;
}

.dropdown-toggle::after {
    transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobil Uyumlu Dropdown Menü */
@media (max-width: 767px) {
    .dropdown-large {
        width: 100%;
        padding: 0;
    }
    
    .dropdown-large .row {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-large .col-6 {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    
    .dropdown-header {
        text-align: center;
        padding: 10px;
        font-weight: 600;
        background-color: #f8f9fa;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        text-align: center;
    }
    
    .dropdown-menu-end {
        right: auto;
        left: 0;
    }
}

/* Responsif Ayarlar */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    /* Header butonunu mobilde gizle */
    .call-button {
        display: none !important;
    }
    
    /* Features strip için mobil düzenlemeler */
    .features-container {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    
    .feature-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .feature-badge i {
        font-size: 12px;
    }
    
    .main-call-link {
        padding: 10px 16px;
    }
    
    .main-call-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .main-call-number {
        font-size: 14px;
    }
    
    .main-call-text {
        font-size: 10px;
    }
    
    .form-badge-link {
        width: 45px;
        height: 45px;
    }
    
    .form-badge-link i {
        font-size: 14px;
    }
    
    .form-badge-link span {
        font-size: 7px;
    }
    
    /* Footer'ı mobilde daha düzenli göster */
    footer .row {
        text-align: center;
    }
    
    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
    
    /* Footer padding düzenlemesi - Features strip için */
    footer {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    /* Features strip için çok küçük ekranlar */
    .feature-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .main-call-link {
        padding: 8px 12px;
    }
    
    .main-call-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .main-call-number {
        font-size: 13px;
    }
    
    .form-badge-link {
        width: 40px;
        height: 40px;
    }
    
    .form-badge-link i {
        font-size: 12px;
    }
    
    .form-badge-link span {
        font-size: 6px;
    }
    
    /* Footer için daha az padding */
    footer {
        padding-bottom: 90px !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 10px;
    }
    
    /* Desktop'ta footer padding düzenlemesi */
    footer {
        padding-bottom: 100px !important;
    }
}