/*--------------------------------------------------
# Responsive Styles
--------------------------------------------------*/

/* Large Screens (1200px and below) */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-image .image-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-image .image-container i {
        font-size: 160px;
    }
}

/* Medium Screens (992px and below) */
@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
        padding: 120px 0 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image .image-container {
        width: 350px;
        height: 350px;
    }
    
    .hero-image .image-container i {
        font-size: 140px;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Small Screens (768px and below) */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 8px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Extra Small Screens (576px and below) */
@media screen and (max-width: 576px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-image .image-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-image .image-container i {
        font-size: 120px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    /* Testimonial içeriği kaldırıldı */
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-media {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}
