/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Large Desktop */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* Tablet & Below */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .call-text {
    display: none;
  }

  .call-btn {
    width: 42px;
    padding: 0;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container,
  .header-container {
    padding: 0 16px;
  }

  .announcement-bar {
    font-size: 12px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .action-btn {
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .theme-toggle,
  .hamburger {
    width: 38px;
    padding: 0;
  }

  .header-actions {
    gap: 6px;
  }

  /* Footer */
  .footer-main {
    padding: 50px 0 30px;
  }

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

  .footer-newsletter {
    padding: 30px 0;
  }

  .newsletter-text h3 {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 10px;
  }

  .newsletter-form input {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 14px 20px;
  }

  .newsletter-form button {
    justify-content: center;
    padding: 14px 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .powered-by {
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo-tagline {
    display: none;
  }

  .lang-current {
    display: none;
  }

  .lang-toggle {
    width: 38px;
    padding: 0;
  }
}

/* HERO RESPONSIVE */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-side {
    justify-content: center;
  }
  .hero-side-card {
    max-width: 480px;
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 80px 0 100px;
  }
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0 100px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    gap: 16px;
    justify-content: center;
  }
  .trust-item {
    font-size: 12px;
  }
  .trust-item i {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .hero-side-card {
    padding: 24px;
  }
  .hero-stat-num {
    font-size: 28px;
  }
  .hero-controls {
    bottom: 24px;
    gap: 16px;
  }
  .hero-control {
    width: 38px;
    height: 38px;
  }
  .stats-section {
    padding: 50px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-card {
    padding: 24px 20px;
  }
  .stat-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  .counter {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  .hero-side-stats {
    gap: 12px;
  }
  .hero-stat {
    padding: 12px;
  }
}

/* ABOUT + PRODUCTS RESPONSIVE */
@media (max-width: 1100px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-card.featured {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-section,
  .products-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .about-image {
    min-height: 380px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }
  
  .about-image-main {
    grid-row: 1;
  }
  
  .about-image-main img {
    min-height: 380px;
  }
  
  .about-image-small {
    display: none;
  }
  
  .about-shape {
    display: none;
  }
  
  .about-image-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  
  .about-image-badge i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .about-image-badge strong {
    font-size: 20px;
  }
  
  .about-features {
    gap: 16px;
    margin: 24px 0;
  }
  
  .about-feature {
    padding: 12px;
  }
  
  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-text {
    justify-content: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-image {
    height: 240px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h3 {
    font-size: 20px;
  }
  
  .products-cta {
    padding: 36px 24px;
  }
  
  .products-cta-buttons {
    flex-direction: column;
  }
  
  .products-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* WHOLESALE + GALLERY + TESTIMONIALS RESPONSIVE */
@media (max-width: 1100px) {
  .wholesale-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .wholesale-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .wholesale-section,
  .gallery-section,
  .testimonials-section {
    padding: 60px 0;
  }
  
  .wholesale-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 14px;
  }
  
  .wholesale-cta {
    flex-direction: column;
  }
  
  .wholesale-cta .btn,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
  
  .wholesale-card-main {
    padding: 24px;
  }
  
  .wholesale-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .floating-card {
    display: none;
  }
  
  /* Gallery */
  .gallery-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .gallery-filter {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }
  
  .gallery-item-wide {
    grid-column: span 2;
  }
  
  .gallery-overlay {
    padding: 14px;
    opacity: 1;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.85) 0%, transparent 60%);
  }
  
  .gallery-overlay-content {
    transform: translateY(0);
  }
  
  .gallery-overlay-content h4 {
    font-size: 14px;
  }
  
  .gallery-overlay-content > i {
    display: none;
  }
  
  /* Lightbox */
  .lightbox {
    padding: 20px;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  /* Testimonials */
  .testimonials-slider {
    min-height: 460px;
  }
  
  .testimonial-card {
    padding: 30px 24px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  .testimonial-quote-icon {
    font-size: 60px;
    top: 20px;
    right: 20px;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  
  .ts-stat {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
  }
  
  .ts-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .ts-stat strong {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* WHY US + CONTACT + MAP RESPONSIVE */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .why-section,
  .contact-section,
  .map-section {
    padding: 60px 0;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .why-card {
    padding: 28px 24px;
  }
  
  .why-number {
    font-size: 44px;
    top: 16px;
    right: 20px;
  }
  
  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 18px;
  }
  
  .why-card h3 {
    font-size: 19px;
  }
  
  /* Contact */
  .contact-card {
    padding: 20px;
  }
  
  .contact-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .contact-card-row {
    grid-template-columns: 1fr;
  }
  
  .contact-socials {
    flex-direction: column;
    text-align: center;
  }
  
  .form-card {
    padding: 28px 20px;
  }
  
  .form-header h3 {
    font-size: 22px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Map */
  .map-tabs {
    margin-bottom: 24px;
  }
  
  .map-tab {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .map-content.active {
    grid-template-columns: 1fr;
  }
  
  .map-iframe-wrapper {
    min-height: 320px;
  }
  
  .map-iframe-wrapper iframe {
    height: 320px;
  }
  
  .map-info-card {
    padding: 24px 20px;
  }
  
  .map-info-header h4 {
    font-size: 18px;
  }
  
  .map-info-header i {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .map-tabs {
    flex-direction: column;
  }
  
  .map-tab {
    width: 100%;
    justify-content: center;
  }
}

/* CTA BANNER RESPONSIVE */
@media (max-width: 1100px) {
  .cta-banner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cta-banner-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-banner-features {
    align-items: center;
  }
  
  .cta-banner-buttons {
    justify-content: center;
  }
  
  .cta-trust-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 40px 0;
  }
  
  .cta-banner {
    padding: 50px 28px;
    border-radius: var(--radius-md);
    margin: 0 16px;
  }
  
  .cta-banner-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  
  .cta-banner-desc {
    font-size: 0.95rem;
  }
  
  .cta-banner-features {
    align-items: flex-start;
  }
  
  .cta-feature {
    font-size: 14px;
  }
  
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner-buttons .btn,
  .cta-banner-buttons .btn-white,
  .cta-banner-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
  
  .cta-trust-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .cta-trust-item strong {
    font-size: 22px;
  }
  
  .cta-trust-divider {
    height: 30px;
  }
  
  .cta-banner-visual {
    min-height: 320px;
  }
  
  .cta-discount-circle {
    width: 240px;
    height: 240px;
  }
  
  .cta-discount-inner {
    width: 170px;
    height: 170px;
  }
  
  .cta-discount-percent {
    font-size: 52px;
  }
  
  .cta-discount-label {
    font-size: 18px;
  }
  
  .cta-floating-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-trust-divider {
    display: none;
  }
  
  .cta-trust-row {
    gap: 20px;
  }
  
  .cta-floating-icon {
    display: none;
  }
}
