/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary color - Dark Blue */
  --primary: #1E3A5F;
  --primary-700: #172E4C;
  --primary-900: #091626;

  /* Text colors */
  --text-gray-900: #111827;
  --text-gray-600: #4b5563;
  --text-gray-500: #6b7280;
  --text-white: #ffffff;

  /* Background colors */
  --bg-white: #ffffff;
  --bg-gray-50: #f9fafb;
  --bg-gray-100: #f3f4f6;

  /* Border colors */
  --border-gray-200: #e5e7eb;
  --border-gray-100: #f3f4f6;

  /* Shadow */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  /* Spacing */
  --container-padding: 1rem;
}

@media (min-width: 640px) {
  :root {
    --container-padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 2rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-padding: 3rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-gray-900);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 50;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .navbar-content {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-text h1 {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.025em;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--text-gray-500);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-600);
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 0.125rem;
  background-color: var(--primary);
  transition: width 0.2s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--bg-gray-100);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

@media (min-width: 1024px) {
  .language-switcher {
    display: flex;
  }
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-gray-600);
}

.lang-btn:hover {
  color: var(--text-gray-900);
}

.lang-btn.active {
  background-color: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Navbar Actions */
.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .navbar-actions {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-600);
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--text-gray-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-700);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--bg-white);
}

.btn-white:hover {
  background-color: #f3f4f6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--text-gray-600);
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: var(--text-gray-900);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
}

@media (max-width: 1023px) {
  .mobile-menu.open {
    display: block;
  }
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 18rem;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  padding-top: 5rem;
}

.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--bg-gray-100);
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray-100);
  color: var(--text-gray-600);
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-menu-footer {
  margin-top: 2rem;
}

.mobile-menu-footer .btn {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    height: 600px;
  }
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  z-index: 20;
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transition: background-color 0.2s;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: var(--text-white);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1280px) {
  .hero-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-white);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  color: var(--text-white);
  font-size: 0.875rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-gray {
  background-color: var(--bg-gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-badge {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--text-gray-600);
  max-width: 32rem;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background-color: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--text-white);
  font-weight: bold;
  font-size: 1.25rem;
}

.card-content {
  padding: 1.25rem;
}

.card-description {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card-count {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.advantage-card {
  background-color: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  border: none;
  transition: box-shadow 0.3s;
}

.advantage-card:hover {
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.advantage-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.advantage-content {
  padding: 1.5rem;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.75rem;
}

.advantage-description {
  color: var(--text-gray-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background-color: var(--primary);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .page-header {
    padding: 5rem 0;
  }
}

.page-header-content {
  text-align: center;
}

.page-header-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-header-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .page-header-title {
    font-size: 3rem;
  }
}

.page-header-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 32rem;
  margin: 0 auto;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
}

.contact-info-card,
.contact-form-card {
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-info-content,
.contact-form-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .contact-info-content,
  .contact-form-content {
    padding: 2rem;
  }
}

.contact-info-header {
  margin-bottom: 1.5rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.75rem;
}

.contact-info-description {
  color: var(--text-gray-600);
  line-height: 1.6;
}

.contact-info-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--bg-gray-50);
  border-radius: 0.5rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-text {
  flex: 1;
  min-width: 0;
}

.contact-info-text h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray-900);
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.875rem;
  color: var(--text-gray-600);
  line-height: 1.5;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.social-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  border: 1px solid;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  height: 2.5rem;
}

.social-btn-facebook {
  border-color: #2563eb;
  color: #2563eb;
}

.social-btn-facebook:hover {
  background-color: #2563eb;
  color: white;
}

.social-btn-instagram {
  border-color: #db2777;
  color: #db2777;
}

.social-btn-instagram:hover {
  background-color: #db2777;
  color: white;
}

/* Contact Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-gray-200);
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-block {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--primary-900);
  color: var(--text-white);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  background-color: var(--text-white);
  color: var(--primary);
}

.footer-brand-text h3 {
  font-weight: bold;
  font-size: 1.25rem;
}

.footer-brand-text p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--text-white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-white);
}

.footer-brand-section {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand-section {
    grid-column: span 1;
  }
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Products Page Styles */
.products-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .products-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Products Sidebar */
.products-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .products-sidebar {
    width: 16rem;
    flex-shrink: 0;
    position: sticky;
    top: 6rem;
  }
}

.products-filter-card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.products-filter-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.products-filter-header h3 {
  font-weight: 600;
  color: var(--text-gray-900);
}

.products-filter-header svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

.products-filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-btn {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-gray-700);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.filter-btn:hover {
  background-color: var(--bg-gray-100);
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
}

/* Products Main */
.products-main {
  flex: 1;
}

/* Products Search */
.products-search {
  margin-bottom: 2rem;
}

.search-wrapper {
  position: relative;
  max-width: 28rem;
}

.search-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray-400);
  width: 1.25rem;
  height: 1.25rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.75rem;
  border: 1px solid var(--border-gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.search-clear:hover {
  color: var(--text-gray-600);
}

/* Products Count */
.products-count {
  margin-bottom: 1.5rem;
}

.products-count p {
  color: var(--text-gray-600);
  font-size: 0.95rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
  background-color: var(--bg-gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
}

.product-card:hover .product-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.product-content {
  padding: 1.25rem;
}

.product-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(37, 99, 235, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.product-card:hover .product-title {
  color: var(--primary);
}

.product-description {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-moq {
  font-size: 0.875rem;
  color: var(--text-gray-500);
}

.product-moq strong {
  color: var(--text-gray-900);
  font-weight: 600;
}

.product-view-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.product-view-btn:hover {
  text-decoration: underline;
}

/* Products Empty State */
.products-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.empty-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--bg-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.empty-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-gray-400);
}

.products-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-gray-900);
  margin-bottom: 0.5rem;
}

.products-empty p {
  color: var(--text-gray-600);
}

/* Products Pagination */
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-gray-200);
  border-radius: 0.375rem;
  background: var(--bg-white);
  color: var(--text-gray-700);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--bg-gray-50);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagination-number {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--text-gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-number:hover {
  background-color: var(--bg-gray-100);
}

.pagination-number.active {
  background-color: var(--primary);
  color: white;
}

/* Product Modal */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 0.75rem;
  max-width: 48rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-700);
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 1);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }
}

.modal-image {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--bg-gray-100);
  aspect-ratio: 1 / 1;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-details h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-gray-900);
}

.modal-category {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-info-item h4 {
  font-weight: 600;
  color: var(--text-gray-900);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.modal-info-item p {
  color: var(--text-gray-600);
  line-height: 1.6;
}

.modal-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-colors span {
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-gray-100);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-gray-700);
}

.modal-moq {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

/* About Page Styles */
.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-overview-text {
  order: 1;
}

.about-overview-images {
  order: 2;
}

@media (min-width: 1024px) {
  .about-overview-text {
    order: 1;
  }
  .about-overview-images {
    order: 2;
  }
}

.about-overview-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-overview-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-overview-title {
    font-size: 3rem;
  }
}

.about-overview-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-overview-description p {
  color: var(--text-gray-600);
  line-height: 1.8;
  font-size: 1rem;
}

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

.stat-item-about {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.stat-value-about {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stat-value-about {
    font-size: 2rem;
  }
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

.about-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-factory-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.about-factory-img:hover {
  transform: scale(1.05);
}

.about-factory-img:nth-child(2) {
  margin-top: 2rem;
}

/* Factory Capabilities Grid */
.factory-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .factory-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .factory-capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 95, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Production Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-item {
  position: relative;
  text-align: center;
}

.process-step {
  font-size: 3.75rem;
  font-weight: bold;
  color: rgba(30, 58, 95, 0.1);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.5rem;
}

.process-description {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.process-connector {
  display: none;
  position: absolute;
  top: 2rem;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--border-gray-200);
}

@media (min-width: 1024px) {
  .process-item:not(:last-child) .process-connector {
    display: block;
  }
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cert-card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.3s;
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
}

.cert-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.cert-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-gray-900);
  margin-bottom: 0.5rem;
}

.cert-desc {
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
}
