/* Tablet Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s;
        gap: 1rem;
    }

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

    .search-container {
        width: 100%;
        margin: 1rem 0;
    }

    .search-container input {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .developer-row {
        flex-wrap: wrap;
    }

    .developer-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

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

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

    .section-title h1, .section-title h2 {
        font-size: 2rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .developer-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal-content {
        width: 95%;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .nav-logo a {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h1, .section-title h2 {
        font-size: 1.8rem;
    }

    .container {
        width: 95%;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

/* Responsif Footer */
@media (max-width: 600px) {
    .footer {
    font-size: 0.85rem;
}
}

/* Contact */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .map-container {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .btn-submit {
    font-size: 0.95rem;
  }
}
