/* RESPONSIVE CSS */

/* Extra large devices (large desktops) */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.63rem;
    }
    
    .floating-images {
        right: 5%;
    }
}

/* Large devices (desktops) */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.60rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.05rem;
    }
    
    .hero-subtitle {
        font-size: 1.51rem;
    }
    
    .hero-image-container {
        height: 450px;
    }
    
    .floating-images {
        right: 2%;
    }
    
    .floating-image {
        width: 100px;
        height: 70px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content-col {
        margin-bottom: 44.00px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.60rem;
    }
    
    .hero-subtitle {
        font-size: 1.38rem;
    }
    
    .hero-image-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-image-container::before {
        width: 120px;
        height: 120px;
    }
    
    .floating-images {
        display: none;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        margin-bottom: 32.00px;
    }
    
    .about-image-container:nth-child(odd) {
        margin-top: 0;
    }
    
    .pricing-grid,
    .coreinfo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1;
        margin-bottom: 32.00px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2.02rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.34rem;
    }
    
    .hero-subtitle {
        font-size: 1.14rem;
    }
    
    .hero-image-container {
        max-width: 100%;
        height: 350px;
    }
    
    .floating-images {
        right: 10px;
        bottom: 20px;
    }
    
    .floating-image {
        width: 80px;
        height: 60px;
    }
    
    .feature-grid, 
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-item-image {
        height: 200px;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.87rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.87rem;
    }
    
    .about-image-container {
        height: 200px;
    }
    
    .service-item,
    .pricing-item,
    .testimonial,
    .coreinfo-item,
    .contact-form {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-image-container::before {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .floating-image {
        width: 60px;
        height: 45px;
    }
}

/* Mobile navigation */
@media (max-width: 992px) {
    .header .navbar-collapse {
        background-color: var(--bg-dark);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 16.00px;
    }
    
    .header.sticky .navbar-collapse {
        background-color: white;
        box-shadow: var(--shadow-sm);
    }
    
    .header .navbar-toggler {
        border: none;
        padding: 0;
    }
    
    .header .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .header.sticky .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 33, 33, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
} 