/* Temel Stil Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Genel Stiller */
body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    padding: 1rem 5%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.logo span {
    color: #e74c3c;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta a {
    background: #e74c3c;
    color: #fff !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta a:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.cta a::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Güncellenmiş Hero Stilleri */
.hero {
    margin-top: 90px; /* Header yüksekliği + 10px */
    position: relative;
    min-height: calc(100vh - 80px); /* Viewport'tan header yüksekliğini çıkar */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%),
                url('images/banner.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    min-height: calc(80vh - 4rem);
}

.hero-text {
    flex: 1 1 55%;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
}

.stat i {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 0.8rem;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.call-to-action {
    flex: 1 1 40%;
    margin-top: 0;
    align-self: center;
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 400px;
}

.call-to-action h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.call-button {
    background: #e74c3c;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.cta a::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Modern Form Tasarımı */
.modern-form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modern-form {
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #7f8c8d;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.input-group i {
    margin-right: 0.5rem;
    color: #e74c3c;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52,152,219,0.2);
}

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

.form-footer {
    margin-top: 2rem;
    text-align: center;
}

.form-footer button {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.form-footer button:hover {
    transform: translateY(-2px);
}

.loading-dots {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .call-to-action {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .cta a {
        margin-top: 1rem;
    }

    header {
        position: relative;
        z-index: 1001;
    }

    .hamburger {
        display: block;
        z-index: 1002;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        margin-top: 70px; /* Mobil header yüksekliği + 10px */
        min-height: calc(100vh - 70px);
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Hizmet Kartları */
.services {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Güven Bölümü */
.trust {
    padding: 4rem 5%;
    background: #2c3e50;
    color: #fff;
}

.trust ul {
    list-style: none;
    margin-top: 2rem;
}

.trust li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Özellik Modülleri */
.features {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h2 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-card h2 i {
    font-size: 1.8rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-card li i {
    color: #e74c3c;
    min-width: 25px;
}

/* Renk Temaları */
.trust-reasons { border-top: 4px solid #e74c3c; }
.speed-reasons { border-top: 4px solid #3498db; }
.quality-reasons { border-top: 4px solid #2ecc71; }
.support-reasons { border-top: 4px solid #f1c40f; }

/* Modern Footer Stilleri */
.modern-footer {
    background: #0f172a;
    color: #f8fafc;
    position: relative;
    margin-top: 8rem;
}

.footer-wave {
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,160L48,138.7C96,117,192,75,288,74.7C384,75,480,117,576,128C672,139,768,117,864,101.3C960,85,1056,75,1152,90.7C1248,107,1344,149,1392,170.7L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    margin-top: -100px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 1.4rem;
}

.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.facebook { background: #1877F2; }
.youtube { background: #FF0000; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.footer-col {
    padding: 1rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3B82F6;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #3B82F6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
}

.contact-item i {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3B82F6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #3B82F6;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobil için Ek Düzeltmeler */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .service-form {
        grid-template-columns: 1fr;
        padding: 1.8rem;
        margin: 1rem;
    }
    
    .service-form input, 
    .service-form select,
    .service-form textarea {
        padding: 0.7rem;
        font-size: 14px;
    }
    
    .service-form button {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        margin: 0 auto;
    }
    
    .hero-banner {
        height: 70vh;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .hero-content {
        margin-top: -30px !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .contact-info li {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-card h2 {
        flex-direction: column;
    }
    
    .feature-card li {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

/* Geniş Ekran Ayarları */
@media (min-width: 1200px) {
    .service-form {
        transform: translateY(-20%);
    }
}

/* Onarım Galerisi */
.repair-gallery {
    padding: 4rem 5%;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Lightbox Stilleri */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: zoom-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Politika Sayfaları Stilleri */
.policy-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-header h1 i {
    color: #e74c3c;
    margin-right: 1rem;
}

.policy-card {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.security-features, .rights-list, .cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.security-item, .right-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.security-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.cookie-card {
    padding: 1.5rem;
    border-left: 4px solid;
    border-radius: 8px;
}

.cookie-card.essential {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.cookie-card.analytics {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.cookie-control {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

.control-options {
    margin: 2rem 0;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.info-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: help;
}

.save-btn {
    background: #2ecc71;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.save-btn:hover {
    background: #27ae60;
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-card {
        padding: 1.5rem;
    }
}

/* Hakkımızda Sayfası Özel Stiller */
.about-page {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.corporate-identity {
    padding: 4rem 0;
    background: #f8f9fa;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.identity-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.identity-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: #e74c3c;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-content p {
    color: #666;
    line-height: 1.7;
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.value-list i {
    color: #e74c3c;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .identity-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100% !important;
        margin: 0 0 2rem 0 !important;
    }
    
    .card-icon {
        margin: 0 auto 1.5rem !important;
    }
    
    .value-list {
        justify-content: center;
        text-align: center;
    }
    
    .identity-card h3 {
        font-size: 1.4rem;
    }
    
    .identity-card p {
        font-size: 0.95rem;
    }
    
    .value-list li {
        justify-content: center;
    }
}

.service-process {
    margin: 4rem 0;
    padding: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.locations {
    margin: 4rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-areas {
    columns: 2;
    list-style: none;
    margin-top: 1rem;
}

.service-areas li {
    padding: 0.5rem 0;
    color: #7f8c8d;
}

/* Hizmet Kart Linkleri */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Hızlı Erişim Bölümünü Kaldır */
.footer-section:nth-child(2) {
    display: none;
}

/* Kurumsal Kimlik Stilleri */
.corporate-identity {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.identity-card {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-5px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Hizmet Ağı Stilleri */
.service-coverage {
    margin: 4rem auto;
    max-width: 1200px;
    text-align: center;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.coverage-card:hover {
    transform: scale(1.05);
}

/* SEO Servis Süreçleri */
.seo-services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.seo-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2rem;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon i {
    font-size: 2rem;
}

.process-card h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.process-steps {
    list-style: none;
}

.process-steps li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
}

.process-steps i {
    color: #e74c3c;
    min-width: 25px;
}

/* Ana Sayfa SEO Süreçleri */
.seo-process {
    background: #f8f9fa;
    padding: 4rem 0;
}

.seo-process h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.process-item h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.process-item ul {
    list-style: none;
}

.process-item li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #7f8c8d;
}

.process-item i.fa-check {
    color: #2ecc71;
    min-width: 20px;
}

/* İletişim Sayfası Stilleri */
.contact-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contact-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.emergency-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #e74c3c;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.cta-button:hover::after {
    transform: scale(1);
}

.cta-button small {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.location-list {
    list-style: none;
    columns: 2;
}

.location-list li {
    padding: 0.5rem 0;
    color: #7f8c8d;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.map-section {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-section {
    margin: 4rem 0;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.facebook { background: #1877F2; }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

.modern-nav {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-nav .logo img {
    height: 50px; /* Logo yüksekliğini ayarlayın */
}

.modern-nav .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-nav .nav-links li {
    margin-left: 20px;
}

.modern-nav .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modern-nav .nav-links li a:hover {
    color: #007bff;
}

.modern-nav .nav-links .cta a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Çağrı Alanı Stilleri */
.call-to-action-container {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    padding: 2.5rem;
    text-align: center;
}

.call-to-action h2 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.call-to-action p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.call-button {
    background: #db3434;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.call-button i {
    font-size: 1.5rem;
}

/* İletişim bilgilerinde e-posta boyutu */
.contact-info li {
    font-size: 0.7em;
    margin: 9px 0;
}

/* İkon boyutlarını koru */
.contact-info li i {
    font-size: 1em;
    min-width: 25px;
}

/* Acil Servis Bölümü Stilleri */
.emergency-section {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border-radius: 20px;
    overflow: hidden;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.emergency-overlay {
    padding: 4rem 2rem;
    position: relative;
}

.emergency-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    color: white;
}

.emergency-text {
    flex: 1 1 55%;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.badge i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.emergency-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.emergency-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.e-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 200px;
    backdrop-filter: blur(5px);
}

.e-stat i {
    font-size: 2rem;
    color: #e74c3c;
}

.e-stat span {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

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

.cta-card {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 40%;
}

.cta-header {
    margin-bottom: 2rem;
}

.cta-header i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

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

.cta-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .e-stat {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-section h1 {
        font-size: 2rem;
    }
}

/* SSS Sayfası Stilleri */
.faq-page {
    padding: 2rem 0;
}

.faq-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.search-box {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-box button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.faq-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.faq-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.question h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.answer {
    color: #666;
    line-height: 1.7;
}

.answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.answer li {
    margin-bottom: 0.5rem;
}

.support-cta {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
}

/* Modern Header Stilleri */
.modern-header {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
    transition: transform 0.3s ease;
}

/* Masaüstü Menü */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.nav-link.active {
    color: #e74c3c;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e74c3c;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: #2c3e50;
    padding: 0.75rem 1rem;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    border-radius: 4px;
}

/* Mobil Menü */
.mobile-nav {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 0 0.5rem;
}

.mobile-nav {
    padding: 1.5rem;
    list-style: none;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-nav li a:hover {
    background: #f8f9fa;
}

.mobile-nav .cta {
    background: #e74c3c;
    color: white !important;
    margin-top: 1rem;
}

.mobile-nav .cta:hover {
    background: #c0392b;
}

.mobile-dropdown .fas.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .fas.fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: 2rem;
    list-style: none;
    display: none;
}

.mobile-dropdown.open .mobile-submenu {
    display: block;
}

@media (max-width: 1200px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Servis Sayfası Stilleri */
.service-page {
    padding-top: 80px;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.tech-specs {
    padding: 4rem 0;
    background: #f9f9f9;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spec-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.spec-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.spec-content {
    padding: 1.5rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.whatsapp {
    background: #25D366;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .spec-card img {
        height: 200px;
    }
}

/* Buzdolabı Servis Özel Stiller */
.service-hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-image {
    width: 45%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(5px);
}

.quick-solutions {
    padding: 4rem 0;
    background: #f8f9fa;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.solution-card.emergency {
    border-left: 5px solid #e74c3c;
}

.tech-expertise {
    padding: 4rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.expertise-icon {
    font-size: 4rem !important;
    padding: 1.5rem;
    background: #e9f9f6;
    border-radius: 15px;
    margin-bottom: 2rem !important;
}

.maintenance-packages {
    padding: 4rem 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.package-card.recommended {
    border: 2px solid #16a085;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #16a085;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.expert-tips {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .service-hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .hero-highlights {
        flex-direction: column;
    }
}

/* Genel Konteyner Genişliği */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Görsel Yerine İkon */
.hero-image {
    display: none;
}

.hero-icon {
    font-size: 8rem;
    color: rgba(255,255,255,0.2);
    margin-left: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Hizmet Kartlarında İkon Vurgusu */
.solution-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #16a085;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.expertise-icon {
    font-size: 4rem !important;
    padding: 1.5rem;
    background: #e9f9f6;
    border-radius: 15px;
    margin-bottom: 2rem !important;
}

/* Mobil Optimizasyon */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-icon {
        font-size: 5rem;
        margin: 2rem 0;
    }
    
    .solution-card i {
        font-size: 2.5rem;
    }
}

/* Yeni CTA Stilleri */
.support-ribbon {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.ribbon-content i.fa-headset {
    font-size: 4rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.ribbon-text {
    flex: 1;
    min-width: 300px;
}

.ribbon-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ribbon-text p {
    opacity: 0.9;
}

.ribbon-button {
    background: #e74c3c;
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.ribbon-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .ribbon-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ribbon-button {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Stil Güncellemeleri */
.footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-services li {
    margin: 0.5rem 0;
}

.footer-services a {
    color: #e0e0e0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-services a:hover {
    color: #16a085;
}

.footer-services i {
    width: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
}

/* Gizlilik Sayfası Stilleri */
.privacy-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px; /* Menü yüksekliği kadar boşluk */
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin: 2rem 0;
    overflow: hidden;
}

.privacy-header {
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #eee;
}

.privacy-header i {
    font-size: 1.8rem;
    color: #3498db;
}

.privacy-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.privacy-body {
    padding: 2rem;
}

.data-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.data-list i {
    color: #3498db;
    min-width: 30px;
    text-align: center;
}

.warning-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.warning-note i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 10px;
}

.right-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.privacy-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #3498db;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: transform 0.3s ease;
}

.privacy-cta:hover {
    transform: translateY(-3px);
}

.update-info {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 6rem 0 2rem;
        margin-top: 60px; /* Mobil menü yüksekliği */
    }
    
    .privacy-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Hakkımızda Hero Stilleri */
.about-hero {
    background: linear-gradient(135deg, #2c3e50, #27ae60);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px; /* Masaüstü menü yüksekliği */
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 2rem;
        margin-top: 60px; /* Mobil menü yüksekliği */
    }
} 