﻿/* Responsive CSS */

/* Large tablets and small desktops */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .feature-card, .service-card, .price-card {
        margin-bottom: 2rem;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-content h3 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    section h4 {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .py-5 {
        padding: 60px 0 !important;
    }
    
    .feature-card, .service-card, .price-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-card i, .feature-item i {
        font-size: 2.5rem;
    }
    
    .testimonials-slider .swiper-slide {
        padding: 1rem;
    }
    
    .team-card img {
        width: 100px;
        height: 100px;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .gallery-section img {
        height: 200px;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer h5, .footer h6 {
        font-size: 1.1rem;
    }
    
    .price-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
    
    .accordion-item h6 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-item p {
        padding: 1rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-width: 200px;
    }
    
    .service-card img {
        height: 150px;
    }
}

/* Small mobile phones */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    section h4 {
        font-size: 1rem;
    }
    
    .feature-card, .service-card, .price-card {
        padding: 1rem;
    }
    
    .hero-image img {
        max-width: 180px;
    }
    
    .team-card img {
        width: 80px;
        height: 80px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .gallery-section img {
        height: 150px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Landscape phones */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 150px;
    }
}

/* High resolution displays */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
    }
    
    section h2 {
        font-size: 3rem;
    }
    
    .feature-card, .service-card, .price-card {
        padding: 2.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn-submit,
    .social-icons-grid {
        display: none;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
    
    * {
        box-shadow: none !important;
    }
}
