/* ===================================
   Responsive Styles
   =================================== */

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .hero-slider {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        gap: 20px;
    }

    .contact-info {
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .service-card {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .blog-wrapper {
        grid-template-columns: 1fr;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline-content {
        margin: 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }

    .logo h2 {
        font-size: 24px;
    }

    .logo span {
        font-size: 10px;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .feature-box,
    .service-card {
        padding: 30px 20px;
    }

    .service-card {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .service-card h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-features {
        margin: 15px 0;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 6px 0;
        word-wrap: break-word;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .whatsapp-float-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
        bottom: 20px !important;
        left: 20px !important;
    }

    .scroll-top-btn {
        bottom: 20px !important;
        right: 20px !important;
    }
}

