/* 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;
    padding-top: 80px; /* Header yüksekliği kadar boşluk */
}

/* Header */
header {
    padding: 0,5rem 10%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px; /* Mobil header yüksekliği */
}

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;
}

/* Modern Hero Styles */
.modern-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(33,150,243,0.1) 0%, 
        rgba(25,118,210,0.05) 100%);
    mix-blend-mode: overlay;
}

.modern-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 40%;
    background: rgba(255,68,68,0.05);
    transform: rotate(-4deg);
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    filter: blur(60px);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight Text */
.highlight-text {
    color: #2196F3;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
}

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

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(33,150,243,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33,150,243,0.4);
}

.cta-button i:last-child {
    margin-left: 1rem;
    font-size: 0.9em;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(33,150,243,0.1);
    color: #2196F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.8rem; /* Daha uzun metinler için boyut küçültme */
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem; /* Daha okunaklı hale getirme */
    opacity: 0.9;
}

/* Floating Icons Animation */
.floating-icons {
    position: relative;
    width: 500px;
    height: 500px;
}

.icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(33,150,243,0.3);
}

.icon i {
    color: rgba(33,150,243,0.5);
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.icon.fridge {
    top: 20%;
    left: 10%;
    animation-delay: 0.5s;
}

.icon.washing-machine {
    top: 50%;
    left: 30%;
    animation-delay: 1s;
}

.icon.oven {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-icons {
        display: none;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        margin-top: 80px !important; /* Mobil header yüksekliği + 10px */
        padding: 2rem 0;
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 80px; /* Mobil header yüksekliği */
    }
    
    body {
        padding-top: 80px; /* Header yüksekliği kadar boşluk */
    }
}

/* 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%);
}

/* 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 {
    color: #FF4444;
    font-size: 2.5rem;
    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, #3498db);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
}

.contact-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
}

.contact-hero .subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.contact-grid {
    padding: 60px 0;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: #3498db;
}

.info-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.contact-link:hover {
    color: #2980b9;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

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

.service-areas {
    padding: 60px 0;
    background: white;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.area-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.area-card i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 20px;
}

.area-card h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card ul li {
    margin-bottom: 10px;
    color: #666;
}

.emergency-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 40px 0;
    color: white;
}

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

.cta-text h2 {
    margin-bottom: 10px;
}

.cta-button {
    background: white;
    color: #e74c3c;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 992px) {
    .grid-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 2em;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* 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 */
    }
}

/* Fullscreen Hero Styles */
.fullscreen-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-highlight {
    color: #FF4444;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF4444;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-title:hover .hero-highlight::after {
    transform: scaleX(1);
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: #FF4444;
    margin: 2rem auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-main {
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,68,68,0.3);
}

.cta-secondary {
    border: 2px solid #FF4444;
    color: #FF4444;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,68,68,0.1);
}

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

.feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,68,68,0.08); /* Daha soft bir arkaplan */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #FF4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-main,
    .cta-secondary {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* Hizmetler Bölümü Stilleri */
.services-section {
    padding: 6rem 2rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #FF4444;
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255,68,68,0.05) 0%, 
        rgba(255,68,68,0.02) 100%);
    transform: rotate(45deg);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,68,68,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF4444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-title {
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-features {
    list-style: none;
    position: relative;
    z-index: 2;
}

.card-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FF4444;
    font-size: 0.9rem;
}

.service-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255,68,68,0.05);
    border-radius: 16px;
    max-width: 800px;
    margin: 4rem auto 0;
}

.service-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Galeri Bölümü Stilleri */
.portfolio-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.portfolio-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.6) 100%);
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-title {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.portfolio-features {
    list-style: none;
}

.portfolio-features li {
    color: #64748b;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.portfolio-features i {
    color: #FF4444;
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
}

/* Güven Bölümü Stilleri */
.trust-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

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

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,68,68,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF4444;
    margin: 0 auto 1.5rem;
}

.trust-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.trust-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.trust-features {
    list-style: none;
    text-align: left;
}

.trust-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.trust-features i {
    color: #FF4444;
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background: #e74c3c;
    margin-bottom: 20px;
}

.footer-text {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
}

.footer-badge i {
    color: #e74c3c;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #b3b3b3;
}

.footer-contact li i {
    color: #e74c3c;
    width: 20px;
}

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

.footer-contact a:hover {
    color: #fff;
}

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

.copyright {
    color: #b3b3b3;
    font-size: 0.9em;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
} 