:root {
  --background: #000000;
  --foreground: #ffffff;
  --primary: #ff7f11;
  --primary-hover: #e06c00;
  --secondary: #0A0A0A;
  --muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.1);
  --card: #0F0F0F;
  --card-hover: #141414;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.flex-align {
  display: flex;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background-color: transparent;
  box-shadow: 0 0 15px rgba(255, 127, 17, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}
.btn-dark:hover {
  background-color: transparent;
  border-color: #fff;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

.logo img { height: 120px; width: auto; filter: brightness(0) invert(1); -webkit-filter: brightness(0) invert(1); }

.desktop-nav {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--primary); }

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
}
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.translate-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-inline-start: auto;
  margin-inline-end: 1rem;
}
@media (min-width: 768px) {
  .translate-btn {
    margin-inline-start: 2rem;
    margin-inline-end: 0;
  }
}
.translate-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}
.mobile-menu.hidden { display: none; }
.mobile-link {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 127, 17, 0.3);
  background-color: rgba(255, 127, 17, 0.1);
  margin-bottom: 1.25rem;
}
.badge span {
  color: var(--primary);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-headline {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero-headline { font-size: 3rem; } }
@media (min-width: 768px) { .hero-headline { font-size: 4.5rem; } }

.hero-subtext {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-subtext { font-size: 1.25rem; } }

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.icon-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- About Section --- */
.about {
  padding: 6rem 0;
  background-color: var(--secondary);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
@media (min-width: 768px) {
  .about-image img { height: 400px; }
}
.about-image:hover img {
  transform: scale(1.05);
}

.badge-float {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(255, 127, 17, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.badge-float span {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 2px solid rgba(255, 127, 17, 0.6);
  border-right: 2px solid rgba(255, 127, 17, 0.6);
}

.section-label {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

.section-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-desc { font-size: 1rem; }
}

.stats-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  scrollbar-width: none;
}
.stats-grid::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
    padding-top: 4rem;
    overflow-x: visible;
  }
}

.stat-card {
  flex: 0 0 150px;
  background-color: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .stat-card {
    flex: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
}
@media (min-width: 768px) {
  .stat-label { font-size: 0.875rem; }
}

/* --- Products Section --- */
.products {
  padding: 6rem 0;
  background-color: #09090b; /* zinc-950 */
  position: relative;
  overflow: hidden;
}

.blueprint-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(128,128,128,0.07) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(128,128,128,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.products-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .products-header { flex-direction: row; align-items: flex-end; }
}

.categories-gradient {
  background: linear-gradient(90deg, #ff7f11 0%, #ff4d3a 60%, #ff7a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255, 127, 17, 0.45));
}

.carousel-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .carousel-nav { margin-top: 0; }
}

.carousel-nav-bottom {
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .carousel-nav-bottom { margin-top: 3.5rem; }
}

.nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .nav-btn {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  }
}
.nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.carousel {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .carousel { margin: 0; padding: 0; }
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .carousel-track { gap: 1.5rem; }
}

.product-card {
  flex: 0 0 75vw;
  background-color: var(--card);
  position: relative;
  transition: background-color 0.5s ease;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 640px) {
  .product-card { flex: 0 0 calc(50% - 0.5rem); }
}
@media (min-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.333% - 1rem);
    border-radius: 0;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  }
}
.product-card:hover {
  background-color: var(--card-hover);
  border-color: rgba(255, 127, 17, 0.3);
}

.card-corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
  z-index: 30;
  transition: border-color 0.3s ease;
  display: none;
}
@media (min-width: 1024px) { .card-corner { display: block; } }

.card-corner.top-right {
  top: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.card-corner.bottom-left {
  bottom: 0; left: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
}
.product-card:hover .card-corner {
  border-color: rgba(255, 127, 17, 0.5);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease-out;
}
.product-card:hover .product-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.scanner {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: linear-gradient(to bottom, transparent, rgba(255, 127, 17, 0.2), transparent);
  height: 50%;
  width: 100%;
  filter: blur(4px);
  transform: translateY(-100%);
  pointer-events: none;
}
.product-card:hover .scanner {
  animation: scan 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

.product-info {
  padding: 1.5rem;
  position: relative;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.product-card:hover .product-name {
  color: var(--primary);
}

.product-divider {
  height: 2px;
  width: 2rem;
  background-color: rgba(255, 127, 17, 0.5);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  transition: width 0.5s ease;
}
.product-card:hover .product-divider {
  width: 100%;
}

.product-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.product-explore {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
  cursor: pointer;
}
.product-explore svg {
  transition: transform 0.3s ease;
}
.product-card:hover .product-explore {
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.1);
}
.product-card:hover .product-explore svg {
  transform: translateX(4px);
}

/* --- CTA Section --- */
.cta {
  background-color: var(--primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-title { font-size: 3.75rem; }
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background-color: var(--secondary);
  padding: 4rem 0 2rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}
html[dir="rtl"] .footer-grid { text-align: right; }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.footer-desc {
  line-height: 1.6;
  max-width: 24rem;
}

.footer-title {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a {
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .mobile-only { display: inline-flex; }
}
@media (min-width: 768px) {
  .mobile-only { display: none; }
}

/* --- New Inner Pages Styles --- */

/* Utility Classes */
.py-24 { padding: 6rem 0; }
.py-20 { padding: 5rem 0; }
.py-12 { padding: 3rem 0; }
.py-10 { padding: 2.5rem 0; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.bg-dark { background-color: #121212; }
.bg-black { background-color: #000; }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-top { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-left { border-left: 4px solid var(--primary); padding-left: 1rem; }
.border-bottom { border-bottom: 2px solid var(--primary); display: inline-block; }

/* Colors for Industries */
.text-orange-400 { color: #fb923c; }
.bg-orange-400-10 { background-color: rgba(251, 146, 60, 0.1); }
.text-yellow-400 { color: #facc15; }
.bg-yellow-400-10 { background-color: rgba(250, 204, 21, 0.1); }
.text-cyan-400 { color: #22d3ee; }
.bg-cyan-400-10 { background-color: rgba(34, 211, 238, 0.1); }
.text-purple-400 { color: #c084fc; }
.bg-purple-400-10 { background-color: rgba(192, 132, 252, 0.1); }
.text-blue-400 { color: #60a5fa; }
.bg-blue-400-10 { background-color: rgba(96, 165, 250, 0.1); }
.bg-primary-10 { background-color: rgba(255, 127, 17, 0.1); }

/* Form Elements */
input, select, textarea {
  width: 100%;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1rem;
  color: var(--foreground);
  font-family: inherit;
  border-radius: 4px;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}
label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Why Choose Us & Industries Grid */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- RTL Support for Arabic --- */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html[dir="rtl"] .border-left {
  border-left: none;
  border-right: 4px solid var(--primary);
  padding-left: 0;
  padding-right: 1rem;
}

html[dir="rtl"] .badge-float {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .corner-accent {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 2px solid rgba(255, 127, 17, 0.6);
}

html[dir="rtl"] .card-corner.top-right {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.2);
}

html[dir="rtl"] .product-explore svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .product-card:hover .product-explore svg {
  transform: scaleX(-1) translateX(4px);
}

html[dir="rtl"] .form-group input, 
html[dir="rtl"] .form-group select, 
html[dir="rtl"] .form-group textarea {
  text-align: right;
}

/* Fix Google Translate widget styles (hide the top bar) */
body { top: 0 !important; }
.skiptranslate iframe { display: none !important; }

.why-card {
  text-align: center;
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.why-card:hover { border-color: rgba(255, 127, 17, 0.5); }

.why-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 127, 17, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.why-card:hover .why-icon { background-color: rgba(255, 127, 17, 0.2); }

.why-title { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }
.why-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.industries-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 479px) {
  .industries-grid { grid-template-columns: repeat(1, 1fr); }
}

.industries {
  padding: 6rem 0;
  background-color: var(--background);
}

.industry-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.industry-card:hover { border-color: rgba(255, 127, 17, 0.4); background-color: #181818; }

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  transition: color 0.3s;
}
.industry-card:hover .industry-icon { color: var(--primary); }
.industry-name { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); transition: color 0.3s; }
.industry-card:hover .industry-name { color: var(--foreground); }

/* Inner Page Hero */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.bg-gradient-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), var(--background));
}

/* About Page Specifics */
.story-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-image img { width: 100%; border-radius: 4px; }
.story-text { color: var(--muted); font-size: 1rem; line-height: 1.8; display: flex; flex-direction: column; gap: 1.5rem; }

.mission-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .mission-grid { grid-template-columns: repeat(3, 1fr); } }
.mission-card { background-color: var(--background); padding: 2rem; border: 1px solid var(--border); transition: border-color 0.3s; }
.mission-card:hover { border-color: var(--primary); }
.mission-icon { width: 4rem; height: 4rem; background-color: var(--card); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background-color 0.3s; }
.mission-card:hover .mission-icon { background-color: rgba(255, 127, 17, 0.1); color: var(--primary); }
.mission-title { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.mission-desc { color: var(--muted); line-height: 1.6; }
.values-list { list-style: none; color: var(--muted); font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; }
.values-list li::before { content: "•"; color: var(--primary); font-weight: bold; margin-right: 0.5rem; }

.pattern-grid::before {
  content: ''; position: absolute; inset: 0; background-color: rgba(255, 127, 17, 0.05);
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px; z-index: 1;
}
.footprint-grid { display: grid; gap: 3rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .footprint-grid { grid-template-columns: repeat(4, 1fr); } }
.footprint-icon { color: var(--muted); opacity: 0.5; margin-bottom: 1rem; }
.footprint-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: 0.1em; margin-top: 0.5rem; }
.bg-gradient-cta { background: linear-gradient(to bottom, #121212, var(--background)); }

/* Store Marquee */
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; }
.marquee { display: inline-flex; gap: 4rem; padding: 0 2rem; animation: marquee 20s linear infinite; }
.marquee span { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: rgba(255, 255, 255, 0.2); }
.marquee span:hover { color: var(--foreground); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-label { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }

/* Store Brands */
.brands-list { display: flex; flex-direction: column; gap: 1rem; }
.brand-item { display: grid; gap: 2rem; align-items: center; padding: 2rem; background-color: var(--card); border: 1px solid var(--border); transition: all 0.5s; border-radius: 4px; }
@media (min-width: 768px) { .brand-item { grid-template-columns: 150px 1fr auto; } }
.brand-item:hover { border-color: rgba(255, 127, 17, 0.5); box-shadow: 0 0 30px rgba(255, 127, 17, 0.05); }
.brand-logo-box { width: 100%; height: 6rem; background-color: #000; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); transition: border-color 0.3s; border-radius: 4px; }
.brand-item:hover .brand-logo-box { border-color: rgba(255, 127, 17, 0.3); }
.brand-logo-box span { font-size: 1.5rem; font-weight: 900; color: rgba(255, 255, 255, 0.8); }
.brand-name { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; transition: color 0.3s; }
.brand-item:hover .brand-name { color: var(--primary); }
.brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; max-width: 42rem; }
.brand-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .brand-actions { flex-direction: row; } }
.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

/* Contact Page Specifics */
.contact-layout { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { width: 3rem; height: 3rem; background-color: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: border-color 0.3s; color: var(--foreground); }
.info-item:hover .info-icon { border-color: var(--primary); color: var(--primary); }
.info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.info-value { font-size: 1rem; font-weight: 700; line-height: 1.6; }
.text-primary-hover:hover { color: var(--primary); }

.inquiry-form-panel { background-color: var(--card); padding: 2.5rem; border: 1px solid var(--border); border-radius: 4px; }
.form-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { width: 100%; }

.map-container { height: 400px; filter: grayscale(100%) invert(100%) contrast(120%); }
.map-overlay { position: absolute; inset: 0; background-color: rgba(255, 127, 17, 0.05); pointer-events: none; mix-blend-mode: overlay; }

.hours-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
.hours-card { background-color: var(--card); padding: 1.5rem; border: 1px solid var(--border); border-radius: 4px; }
.hours-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.hours-card p { color: var(--muted); font-size: 0.875rem; }

.form-container { max-width: 800px; margin: 0 auto; }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  max-width: 220px;
  transition: max-width 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.whatsapp-float:hover {
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
  transform: translateY(-3px);
}
.whatsapp-float svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.whatsapp-label {
  overflow: hidden;
  white-space: nowrap;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25d366;
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float {
    padding: 0.75rem;
    max-width: 52px;
  }
  .whatsapp-label { display: none; }
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hidden {
  display: none !important;
}

.self-center {
  align-self: center;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex {
  display: flex;
}

.gap-6 {
  gap: 1.5rem;
}

/* ── Product Table & Filters ── */
.product-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  background: #111;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
}

.product-filters select,
.product-filters input {
  width: 100%;
  padding: 0.75rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  font-size: 0.875rem;
}

.note-box {
  background: rgba(255, 127, 17, 0.1);
  border-left: 4px solid var(--primary, #ff7f11);
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  border-radius: 0 4px 4px 0;
  color: #ccc;
}

.note-box strong {
  color: var(--primary, #ff7f11);
}

.product-table-wrapper {
  overflow-x: auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: #ddd;
}

.product-table th {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  white-space: nowrap;
}

.product-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.product-table tr:last-child td {
  border-bottom: none;
}

.no-results {
  padding: 3rem;
  text-align: center;
  color: #888;
}
