/* Responsive CSS - Aqua Works */

/* ===== Tablet View (max-width: 1024px) ===== */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero */
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-company {
        font-size: 1.5rem;
    }
    
    /* About */
    .about-content {
        gap: 3rem;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ===== Small Tablet View (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Logo adjustment for mobile */
    .logo img {
        height: 40px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    /* Mobile menu always has white background */
    .navbar.transparent .nav-menu {
        background-color: var(--bg-white);
    }
    
    .navbar.transparent .nav-menu a {
        color: var(--text-dark);
        text-shadow: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile mega dropdown styles */
    .mega-dropdown-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        background: var(--bg-white);
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .mega-dropdown-overlay.mobile-show {
        display: block;
    }
    
    .mega-dropdown-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .mega-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    
    .mega-section:last-child {
        border-bottom: none;
    }
    
    .mega-section > h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .mega-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mega-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .mega-column a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .mega-column a i {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Hero */
    .hero {
        height: 80vh;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-company {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Mobile View (max-width: 480px) ===== */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    /* Logo adjustment for small mobile */
    .logo img {
        height: 35px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    body {
        font-size: 14px;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-company {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* About */
    .about {
        padding: 60px 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .stat {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Products */
    .products {
        padding: 60px 0;
    }
    
    .product-card {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Small Mobile (max-width: 360px) ===== */
@media screen and (max-width: 360px) {
    /* Hero */
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 160px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .hero-video-container,
    .scroll-indicator,
    .cta,
    .footer-social {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        background: none;
        padding: 2rem 0;
    }
    
    .hero-content {
        color: #000;
    }
    
    .footer {
        background: none;
        color: #000;
        border-top: 1px solid #000;
    }
}