/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-icon {
    margin-bottom: 20px;
}

.hero-image-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-image.jpg') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 30px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 30px 20px;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-card p {
   font-size: 0.95rem !important; /* Yazı boyutunu küçült */
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    color: #5a6c7d;
}

/* === QUICK LINKS === */
.quick-links {
    padding: 60px 30px;
    background: white;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* === HIZLI İLETİŞİM SECTION === */
.quick-contact-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-image-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.quick-contact-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.quick-contact-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.quick-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.quick-contact-form .form-group {
    margin-bottom: 15px;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.submit-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-info-quick {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.contact-item {
    margin-bottom: 10px;
    color: #5a6c7d;
}

/* === SOCIAL MEDIA === */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
    padding: 20px 15px !important; /* Padding'i optimize et */
    min-height: auto !important;
    height: auto !important;
    }
    
    .quick-contact-section {
        padding: 60px 20px;
    }
    
    .quick-contact-container {
        padding: 30px 20px;
    }
    
    .quick-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-image-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-contact-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-image-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-image-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    @media (max-width: 768px) {
    .services-section {
        padding: 30px 20px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px !important;
    }
    
    .service-card {
        padding: 15px 12px !important;
    }
    
    .service-icon {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 25px 15px !important;
    }
    
    .service-card {
        padding: 12px 10px !important;
    }
}
}
/* SADECE anasayfa hızlı iletişim formu için, başka hiçbir yere dokunmaz */
.quick-contact-form .home-kvkk-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 15px 0;
}

.quick-contact-form .home-kvkk-box input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0; /* Dar ekranlarda kutunun ezilmesini engeller */
}

.quick-contact-form .home-kvkk-box label {
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    user-select: none;
}