* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kurumsal & Profesyonel Canlı Renk Paleti 2026 */
    --primary: #1E4CA1;
    --primary-dark: #153b7a;
    --primary-light: #2d5bb8;
    --secondary: #FF6F61;
    --secondary-dark: #e85a4f;
    --accent: #FFC94D;
    --accent-dark: #ffb020;
    --success: #25D366;
    --text-dark: #1a1a1a;
    --text-medium: #2d2d2d;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-gradient-start: #f5f7fa;
    --bg-gradient-end: #e8ecf1;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.12), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.15), 0 4px 8px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 40px -8px rgb(0 0 0 / 0.2), 0 8px 16px -8px rgb(0 0 0 / 0.12);
    --shadow-colored: 0 12px 32px -8px rgba(30, 76, 161, 0.35);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigasyon Menüsü */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero / Karşılama Ekranı */
.hero {
    background-image: url('images/hero.jpg');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 72px;
    min-height: 0;
    aspect-ratio: 16 / 5;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1920px) {
    .hero {
        background-size: 100% 100%;
        aspect-ratio: 16 / 5;
    }
}

@media (min-width: 1921px) {
    .hero {
        background-size: contain;
        background-position: center center;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 76, 161, 0.75) 0%, rgba(255, 111, 97, 0.25) 50%, rgba(26, 26, 26, 0.55) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 76, 161, 0.5) 0%, rgba(255, 111, 97, 0.2) 50%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrapper {
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.1s both;
    position: relative;
    display: inline-block;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
    /* Beyaz arka planı şeffaf yapmak için mix-blend-mode */
    mix-blend-mode: darken;
    background: transparent;
    display: block;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 8px;
}

/* Buton Stilleri */
.btn {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
}

.btn-telefon {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-telefon:hover {
    background: white;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-small {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-whatsapp-small:hover {
    background-color: #20ba5a;
}

.btn-telefon-small {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-telefon-small:hover {
    background-color: var(--primary-dark);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(30, 76, 161, 0.3);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Çıkma Parçalar Bölümü */
.parcalar-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

/* Marka Filtreleri */
.marka-filtreler {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.marka-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.marka-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.marka-btn:hover::before {
    left: 100%;
}

.marka-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.marka-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.marka-btn.active::before {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parcalar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.parca-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.parca-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(30, 76, 161, 0.4);
}

.parca-card:hover::before {
    transform: scaleX(1);
}

.parca-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.parca-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.parca-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(1);
}

.parca-card:hover .parca-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.parca-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 20px 16px;
    padding: 0;
}

.parca-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 0 20px 20px;
    flex-wrap: wrap;
}

/* Hakkımızda Bölümü */
.hakkimizda-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

.hakkimizda-content {
    max-width: 900px;
    margin: 0 auto;
}

.hakkimizda-text {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.hakkimizda-text p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-dark);
}

.hakkimizda-text p:last-child {
    margin-bottom: 0;
}

/* İletişim Bölümü */
.iletisim-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.iletisim-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.iletisim-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.iletisim-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 76, 161, 0.06), transparent);
    transition: left 0.5s ease;
}

.iletisim-item:hover::before {
    left: 100%;
}

.iletisim-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.iletisim-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.iletisim-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.iletisim-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.iletisim-item a:hover {
    color: var(--primary);
}

.iletisim-item p {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

.iletisim-item-map {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.harita-container {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.harita-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.harita-link {
    display: block;
    width: 100%;
    line-height: 0;
}

.harita-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.harita-container:hover .harita-iframe {
    transform: scale(1.01);
}

.harita-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.harita-aciklama {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

.harita-aciklama a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.harita-aciklama a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.iletisim-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 24px 30px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-links li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Markalar Vurgu */
.markalar-vurgu {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.markalar-vurgu h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.markalar-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.marka-badge {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.marka-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-colored);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

/* Responsive Tasarım */
/* Tablet için responsive */
@media (max-width: 1024px) {
    .parcalar-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .marka-filtreler {
        gap: 10px;
    }
    
    .marka-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 24px 0;
        gap: 0;
        border-top: 1px solid #e5e7eb;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 16px 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 24px;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 120px 24px 80px;
        margin-top: 72px;
        min-height: auto;
        background-attachment: scroll;
        background-size: 100% auto;
        aspect-ratio: 16 / 5;
        max-height: 70vh;
    }

    .parcalar-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .marka-filtreler {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .marka-btn {
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .hero-logo {
        max-width: 350px;
    }

    .parcalar-section,
    .hakkimizda-section,
    .iletisim-section {
        padding: 64px 24px;
    }

    .hakkimizda-text {
        padding: 32px 24px;
    }

    .iletisim-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .harita-iframe {
        height: 350px;
    }
    
    .iletisim-item {
        padding: 36px 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

/* Mobil telefon için */
@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
        background-size: 100% auto;
        aspect-ratio: 16 / 5;
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-logo-wrapper {
        margin-bottom: 16px;
    }

    .parcalar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .parcalar-section,
    .hakkimizda-section,
    .iletisim-section {
        padding: 48px 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 20px;
    }
    
    .marka-filtreler {
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .marka-btn {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    .iletisim-item-map {
        padding: 24px 16px;
    }
    
    .harita-image {
        border-radius: 12px;
    }
    
    .harita-iframe {
        height: 300px !important;
        min-height: 300px;
    }
    
    .harita-container {
        margin-top: 16px;
    }
    
    .iletisim-item {
        padding: 32px 20px;
    }
    
    .iletisim-icon {
        font-size: 2rem;
    }
    
    .iletisim-item h3 {
        font-size: 1.125rem;
    }
    
    .iletisim-item p {
        font-size: 1rem;
    }
    
    .iletisim-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 16px;
    }
    
    .markalar-grid {
        gap: 12px;
    }
    
    .marka-badge {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .markalar-vurgu {
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .markalar-vurgu h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
}

/* iOS Safari için özel düzeltmeler */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn, .nav-link {
        -webkit-tap-highlight-color: rgba(30, 76, 161, 0.2);
    }
}

/* Touch-friendly öğeler için */
.btn, .nav-link, .marka-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(30, 76, 161, 0.1);
}

/* Mobil cihazlar için optimizasyonlar */
@media (hover: none) and (pointer: coarse) {
    .btn:hover, .nav-link:hover, .marka-btn:hover {
        transform: none;
    }
    
    .btn:active, .nav-link:active, .marka-btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Android Chrome için */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    body {
        -webkit-font-smoothing: antialiased;
    }
}
