/* ==================================== 
   17. RESPONSIVE DESIGN
   ==================================== */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2rem; }

    nav { padding: 0 2rem; }

    .hero-content { padding: 0 1.5rem; }

    .stats-container,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile devices (768px) */
@media (max-width: 768px) {
    html { font-size: 14px; }

    h1 { font-size: 2.5rem; letter-spacing: -1px; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }

    .hero { min-height: 80vh; padding: 6rem 1rem 3rem; }
    .hero-subtitle { font-size: 1.2rem; }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    section { padding: 5rem 1.5rem; }

    .section-title { font-size: 2.5rem; }
    .section-description { font-size: 1.1rem; }

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

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }

    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }

    .glass-cta { padding: 3rem 2rem; }

    .glass-cta h3 { font-size: 2rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row { grid-template-columns: 1fr; }

    .stat-number { font-size: 3rem; }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }

    nav { padding: 0 1rem; }

    .logo-img { height: 28px; }

    .container { padding: 0 1rem; }

    .service-card,
    .testimonial-card,
    .stat-card {
        padding: 1.5rem;
    }
}

/* ====================================
   DROPDOWN (keep here or move to header.css - optional)
   ==================================== */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { padding: 0; margin: 0; }

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

/* Flash Messages animations (keep) */
@keyframes slideInRight {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}
