/* Marka Sayfaları İçin Özel CSS Stilleri */
@charset "UTF-8";

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* GPU Acceleration for animations */
.brand-card,
.model-card,
.service-card,
.brand-logo {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimized Animations */
@keyframes techGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(236, 229, 18, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(236, 229, 18, 0.6), 0 0 30px rgba(236, 229, 18, 0.4);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes digitalPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.03);
        filter: brightness(1.1);
    }
}

@keyframes matrixEffect {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Container ve Temel Stiller */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Stilleri */
.breadcrumb-container {
    background: linear-gradient(135deg, rgba(42, 54, 55, 0.95) 0%, rgba(26, 36, 37, 0.95) 100%);
    padding: 120px 0 20px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

.breadcrumb a {
    color: #ECE512;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    color: #666;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 229, 18, 0.1), transparent);
    animation: matrixEffect 3s infinite;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    animation: slideInFromLeft 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #ECE512;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 8px;
}

.breadcrumb a:hover {
    color: #ffffff;
    background: rgba(236, 229, 18, 0.2);
    transform: translateY(-2px);
    animation: techGlow 1s ease-in-out;
}

.breadcrumb .separator {
    color: #888;
    font-weight: bold;
    animation: digitalPulse 2s infinite;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(236, 229, 18, 0.3);
}

/* Marka Hero Bölümü */
.brands-hero,
.brand-hero {
    background: linear-gradient(135deg, #2A3637 0%, #1a2425 100%);
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brands-hero::before,
.brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 229, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    animation: matrixEffect 8s infinite alternate;
    pointer-events: none;
}

.brands-hero::after,
.brand-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(236, 229, 18, 0.03) 100px
    );
    animation: matrixEffect 4s infinite;
    pointer-events: none;
}

.brand-hero h1,
.brands-hero h1 {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.brand-hero p,
.brands-hero p {
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 3;
}

.brand-logo {
    font-size: 4rem;
    color: #ECE512;
    margin-bottom: 20px;
    display: inline-block;
    animation: digitalPulse 3s infinite, techGlow 2s infinite alternate;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(236, 229, 18, 0.5));
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(236, 229, 18, 0.8));
}

.brand-logo.samsung {
    color: #1f8ceb;
}

.brand-logo.xiaomi {
    color: #ff6900;
}

.brand-logo.huawei {
    color: #ff0000;
}

.brand-logo.oppo {
    color: #1ba784;
}

/* Markalar Grid */
.brands-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A3637 0%, #1a2425 100%);
    position: relative;
    overflow: hidden;
}

.brands-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(236, 229, 18, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 229, 18, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 229, 18, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: techGlow 1s ease-in-out;
}

.brand-card:not(:hover) {
    animation: none;
}

.brand-card:nth-child(even) {
    animation-delay: 0.2s;
}

.brand-card:nth-child(3n) {
    animation-delay: 0.4s;
}

.brand-icon {
    font-size: 3rem;
    color: #ECE512;
    margin-bottom: 20px;
    display: block;
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.brand-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.brand-link {
    display: inline-block;
    background: #ECE512;
    color: #2A3637;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: auto;
    align-self: center;
}

.brand-link:hover {
    background: #f0f312;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 229, 18, 0.4);
    color: #2A3637;
}

/* Modeller Bölümü */
.models-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2425 0%, #2A3637 100%);
    position: relative;
    overflow: hidden;
}

.models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(236, 229, 18, 0.02) 102px
    );
    animation: matrixEffect 6s infinite;
    pointer-events: none;
}

.models-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    animation: slideInFromLeft 1s ease-out;
    position: relative;
    z-index: 3;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.model-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.model-card:hover::before {
    left: 100%;
}

.model-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(236, 229, 18, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    animation: techGlow 1.5s ease-in-out;
}

.model-card:not(:hover) {
    animation: none;
}

.model-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.model-card:nth-child(even) {
    animation-delay: 0.3s;
}

.model-image {
    font-size: 2.5rem;
    color: #ECE512;
    margin-bottom: 15px;
}

.model-image.samsung {
    color: #1f8ceb;
}

.model-image.xiaomi {
    color: #ff6900;
}

.model-image.redmi {
    color: #ff6900;
}

.model-image.poco {
    color: #ffff00;
}

.model-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.model-card p {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.model-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.model-services span {
    background: rgba(236, 229, 18, 0.2);
    color: #ECE512;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.model-link {
    display: inline-block;
    background: transparent;
    color: #ECE512;
    padding: 10px 20px;
    border: 2px solid #ECE512;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.model-link:hover {
    background: #ECE512;
    color: #2A3637;
    transform: translateY(-2px);
}

/* Brand Hero Section */
.brand-hero {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #2A3637 0%, #1a2425 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(236, 229, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: matrixEffect 15s infinite alternate;
    pointer-events: none;
}

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

.brand-logo {
    font-size: 4rem;
    color: #ECE512;
    margin-bottom: 20px;
    display: inline-block;
    animation: digitalPulse 3s infinite;
}

.brand-logo.samsung {
    color: #1f8ceb;
}

.brand-logo.xiaomi {
    color: #ff6900;
}

.brand-logo.huawei {
    color: #ff0000;
}

.brand-logo.oppo {
    color: #1ba784;
}

.brand-logo.oneplus {
    color: #eb0028;
}

.brand-logo.realme {
    color: #fecc33;
}

.brand-logo.vivo {
    color: #4285f4;
}

.brand-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.brand-hero p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ECE512;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Models Section */
.models-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2425 0%, #2A3637 100%);
    position: relative;
    overflow: hidden;
}

.models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(155, 89, 182, 0.08) 0%, transparent 50%);
    animation: matrixEffect 12s infinite alternate;
    pointer-events: none;
}

.models-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    animation: slideInFromLeft 1s ease-out;
    position: relative;
    z-index: 3;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A3637 0%, #1a2425 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    animation: matrixEffect 10s infinite alternate;
    pointer-events: none;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    animation: slideInFromRight 1s ease-out;
    position: relative;
    z-index: 3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 229, 18, 0.3);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    animation: digitalPulse 2s infinite;
}

.service-card:not(:hover) {
    animation: none;
}

.service-card:nth-child(2n) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3n) {
    animation-delay: 0.4s;
}

.service-icon {
    font-size: 2.5rem;
    color: #ECE512;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .brands-hero,
    .brand-hero {
        padding: 120px 0 60px 0;
    }
    
    .brand-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .brand-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .brand-logo {
        font-size: 3rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .brand-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .brand-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .models-section,
    .services-section,
    .brands-grid-section {
        padding: 60px 0;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .model-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .model-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .service-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .breadcrumb-container {
        padding: 100px 0 15px 0;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .models-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
    
    /* Animasyonları mobilde daha hafif yap */
    .brand-card::before,
    .model-card::before,
    .service-card::before {
        display: none;
    }
    
    .brands-grid-section::before,
    .models-section::before,
    .services-section::before {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .brand-hero h1 {
        font-size: 2rem;
    }
    
    .brand-hero p {
        font-size: 0.9rem;
    }
    
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .brand-card,
    .model-card,
    .service-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .models-section h2,
    .services-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    /* Küçük ekranlarda animasyonları optimize et */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
}

/* Tamir Süreci Bölümü */
.repair-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2425 0%, #2A3637 100%);
}

.repair-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 229, 18, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ECE512;
    color: #2A3637;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2425 0%, #2A3637 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(236, 229, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    animation: matrixEffect 8s infinite alternate;
    pointer-events: none;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 229, 18, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 229, 18, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: #ECE512;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card a {
    color: #ECE512;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ffffff;
}

/* Service Card List Styles */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.service-card li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ECE512;
    font-weight: bold;
}

/* Contact Content Styles */
.contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ECE512;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: #ECE512;
    color: #2A3637;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 229, 18, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 229, 18, 0.4);
    background: #f0f312;
}

/* Footer */
.footer {
    background: #1a2425;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: #ECE512;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ECE512;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ECE512;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Fiyat Etiketleri */
.model-services span {
    background: rgba(236, 229, 18, 0.2);
    color: #ECE512;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.model-services span:first-child {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.model-services span:nth-child(2) {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.model-services span:nth-child(3) {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .repair-process h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-card,
    .model-card,
    .service-card {
        padding: 25px 20px;
    }
    
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .model-services {
        gap: 5px;
    }
    
    .model-services span {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}