/* ========== BASE VARIABLES & RESET ========== */
:root {
  --bg: #0f1724;
  --bg-light: #15202b;
  --text: #e6eef6;
  --text-muted: #9aa3b2;
  --accent-1: #ffcc00;
  --accent-2: #ff9900;
  --accent-gradient: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --container: 1280px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #071022 0%, #0e1a27 40%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
h2 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: 94%;
  max-width: calc(var(--container) - 40px);
  z-index: 1000;
  border-radius: 999px;
  padding: 12px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.brand:hover .logo {
  border-color: var(--accent-1);
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}

.nav-link.simple:hover {
  background: var(--glass-bg);
  color: white;
}

.nav-link.contact-pill {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 90, 20, 0.3);
  font-weight: 600;
}

.nav-link.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 90, 20, 0.4);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(
      180deg,
      rgba(6, 12, 20, 0.9) 0%,
      rgba(6, 12, 20, 0.6) 100%
    ),
    url("assets/HeroImage-1.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 204, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-left {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-title .accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-right {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-height: 52px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 90, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 90, 20, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass-bg);
  border-color: var(--accent-1);
}

.trust-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
}

.trust-item i {
  color: var(--accent-1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 20px;
  background: var(--glass-bg);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  margin-bottom: 16px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--glass-bg);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--accent-1);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent-1);
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 8px;
  color: white;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
}

.value-card h4 {
  margin-bottom: 12px;
  color: white;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== PRODUCTS - BEAUTIFUL GALLERY ========== */
.products {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 400px;
  background: var(--bg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.product-gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.product-gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.product-gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.product-gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.product-gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.product-gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.product-gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 138, 0, 0.2);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-item:hover .product-image-wrapper img {
  transform: scale(1.1);
}

/* Product content - always visible */
.product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 36, 0.95) 0%,
    rgba(15, 23, 36, 0.8) 50%,
    rgba(15, 23, 36, 0) 100%
  );
  padding: 25px 30px;
  z-index: 2;
}

.product-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.product-category {
  display: inline-block;
  background: var(--accent-gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.2);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Desktop: 1024px to 1439px */
@media (max-width: 1200px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 768px to 1023px */
@media (max-width: 1023px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-gallery-item {
    height: 350px;
  }

  .product-content {
    padding: 20px;
  }
}

/* Large Mobile: 576px to 767px */
@media (max-width: 767px) {
  .products {
    padding: 60px 0;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery-item {
    height: 300px;
  }
}

/* Small Mobile: 320px to 575px */
@media (max-width: 575px) {
  .product-content {
    padding: 15px 20px;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .product-category {
    padding: 4px 12px;
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile: below 320px */
@media (max-width: 320px) {
  .product-gallery-item {
    height: 250px;
  }
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(10px);
  border-color: var(--accent-1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 8px;
  color: white;
}

.contact-details a,
.contact-details p {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--accent-1);
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 30px;
  color: white;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(255, 138, 0, 0.1);
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  font-size: 1rem;
  background: transparent;
  padding: 0 5px;
  transform-origin: left top;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.85rem;
  background: var(--bg);
  padding: 0 8px;
  color: var(--accent-1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239aa3b2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  left: 12px;
  font-size: 0.85rem;
  background: var(--bg);
  padding: 0 8px;
  color: var(--accent-1);
}

.form-group select:invalid {
  color: var(--text-muted);
}

.form-group select option {
  color: var(--text);
  background: var(--bg);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

#formMessage {
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--radius);
  display: none;
}

#formMessage.success {
  display: block;
  background: rgba(0, 176, 155, 0.1);
  border: 1px solid rgba(0, 176, 155, 0.3);
  color: #00b09b;
}

#formMessage.error {
  display: block;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

/* ========== SIMPLE FOOTER ========== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-logo:hover {
  border-color: var(--accent-1);
  transform: scale(1.05);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-email,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-email:hover,
.footer-phone:hover {
  color: var(--accent-1);
}

.footer-email i,
.footer-phone i {
  color: var(--accent-1);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: var(--accent-1);
  transform: translateY(-3px);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 90, 20, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 90, 20, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Desktop: 1440px and above */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .product-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 1024px to 1439px */
@media (max-width: 1200px) {
  .hero-wrapper,
  .about-inner,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    max-width: 800px;
    margin: 0 auto;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 768px to 1023px */
@media (max-width: 1023px) {
  .navbar {
    width: 96%;
    padding: 10px 20px;
    top: 15px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 30px 30px;
    border-left: 1px solid var(--glass-border);
    transition: right 0.3s ease;
    z-index: 1000;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 10px;
    text-align: center;
  }

  .brand-text {
    display: block;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-indicators {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-gallery-item {
    height: 350px;
  }

  .contact-form {
    padding: 30px;
  }
}

/* Large Mobile: 576px to 767px */
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .navbar {
    padding: 8px 15px;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .hero-wrapper {
    gap: 40px;
  }

  .hero-right {
    padding: 30px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat {
    padding: 15px;
  }

  .about {
    padding: 60px 0;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .products {
    padding: 60px 0;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery-item {
    height: 300px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile: 320px to 575px */
@media (max-width: 575px) {
  .hero {
    padding: 80px 0 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  .hero-right {
    padding: 25px 20px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-inner {
    gap: 40px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .product-overlay {
    padding: 20px;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .product-category {
    padding: 4px 12px;
    font-size: 0.85rem;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Extra Small Mobile: below 320px */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .product-gallery-item {
    height: 250px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-ctas,
  .back-to-top,
  .mobile-menu-toggle,
  .footer-social {
    display: none !important;
  }

  .hero {
    padding: 20px 0 !important;
    background: white !important;
    color: black !important;
  }

  body {
    color: black !important;
    background: white !important;
  }

  .hero-title .accent,
  .section-title {
    -webkit-text-fill-color: black !important;
    color: black !important;
    background: none !important;
  }

  .btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }

  a {
    color: black !important;
    text-decoration: underline;
  }

  .product-gallery-item {
    break-inside: avoid;
  }
}
