:root {
  --red-700: #B91C1C;
  --red-800: #991B1B;
  --red-600: #DC2626;
  --red-500: #EF4444;
  --red-50: rgba(185, 28, 28, 0.12);

  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-card: #1A1F2E;
  --bg-card-hover: #222839;
  --bg-elevated: #242938;

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(185, 28, 28, 0.3);

  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 2px 8px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.6), 0 8px 16px rgba(0,0,0,0.4);

  --glass-bg: rgba(11, 15, 25, 0.8);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: 20px;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red-700);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

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

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  gap: 0.5rem;
  min-height: 48px;
  letter-spacing: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 50%, var(--red-800) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-700) 0%, var(--red-800) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(185, 28, 28, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
}

.btn-blue {
  background: #1E40AF;
  color: #fff;
  border-color: #1E40AF;
}

.btn-blue:hover {
  background: #1E3A8A;
  border-color: #1E3A8A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--red-500);
  border-color: var(--red-700);
}

.btn-outline-dark:hover {
  background: var(--red-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

/* ========== NAVIGATION ========== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

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

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

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex: 1;
  text-align: center;
}

.logo-quba {
  color: #DC2626;
}

.logo-hardware {
  color: #1E40AF;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red-600);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-500);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1F2937;
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 25, 0.75) 0%,
    rgba(11, 15, 25, 0.6) 50%,
    rgba(11, 15, 25, 0.85) 100%
  );
}

.hero-split {
  background: none;
}

.hero-split::before {
  display: none;
}

.hero-img {
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img-left {
  left: 0;
  width: 50%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  animation: heroSlideLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-img-right {
  right: 0;
  width: 55%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%);
  animation: heroSlideRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 25, 0.7) 0%,
    rgba(11, 15, 25, 0.5) 40%,
    rgba(11, 15, 25, 0.5) 60%,
    rgba(11, 15, 25, 0.7) 100%
  );
  z-index: 1;
}

@keyframes heroSlideLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes heroSlideRight {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== PAGE BANNER (inner pages) ========== */

.page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 8rem 1.5rem 2rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 25, 0.8) 0%,
    rgba(11, 15, 25, 0.7) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== SECTIONS ========== */

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-dark {
  background: linear-gradient(180deg, #070A12 0%, var(--bg-primary) 100%);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red-500);
  margin-bottom: 0.75rem;
  background: var(--red-50);
  padding: 0.375rem 1rem;
  border-radius: 100px;
}

/* ========== BRAND TRUST BAR ========== */

.brand-bar {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.brand-bar .section-header {
  margin-bottom: 2rem;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.brand-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.5;
  transition: all var(--transition);
}

.brand-logos img:hover {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}

.brand-marquee {
  display: none;
}

/* ========== PRODUCT CATEGORY CARDS ========== */

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

.category-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.category-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(185, 28, 28, 0.85) 0%, rgba(0,0,0,0.2) 60%);
}

.category-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.category-card .category-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* ========== FEATURES GRID ========== */

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--red-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red-500);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ========== CTA BANNER ========== */

.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F172A 0%, var(--bg-secondary) 40%, #1E293B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ========== ABOUT PAGE ========== */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content .section-label {
  display: block;
}

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.value-card {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.value-card .feature-icon {
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

.location-preview-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition);
}

.location-preview-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.location-preview-card .feature-icon {
  margin-bottom: 1.25rem;
}

.location-preview-card h3 {
  margin-bottom: 0.5rem;
}

.location-preview-card p {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* ========== PRODUCTS PAGE ========== */

.product-category {
  scroll-margin-top: 100px;
}

.product-category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-category-header h2 {
  margin-bottom: 0.75rem;
}

.product-category-header p {
  font-size: 1.0625rem;
  max-width: 700px;
  margin: 0 auto;
}

.product-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.product-brands-row strong {
  color: var(--text-secondary);
}

.subcategory {
  margin-bottom: 2.5rem;
}

.subcategory:last-child {
  margin-bottom: 0;
}

.subcategory-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.subcategory-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.subcategory-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--red-500);
  background: var(--red-50);
  padding: 0.1875rem 0.625rem;
  border-radius: 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  cursor: default;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card-name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.625rem 0.75rem;
  text-align: center;
  line-height: 1.3;
}

.section-alt .product-card {
  box-shadow: var(--shadow-sm);
}

/* ========== SHOP COMING SOON ========== */

.coming-soon {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-500);
  background: var(--red-50);
  border-radius: 50%;
}

.coming-soon-icon svg {
  width: 36px;
  height: 36px;
}

.coming-soon h2 {
  margin-bottom: 1rem;
}

.coming-soon p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.coming-soon-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Category quick-nav pills */
.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: all var(--transition);
}

.category-nav a:hover,
.category-nav a.active {
  color: var(--red-500);
  border-color: var(--red-700);
  background: var(--red-50);
}

.category-nav-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.category-nav a:hover .category-nav-count,
.category-nav a.active .category-nav-count {
  color: var(--red-500);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: all var(--transition-spring);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ========== CONTACT PAGE ========== */

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.location-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.location-card .map-container {
  height: 250px;
}

.location-card .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  padding: 2rem;
}

.location-details h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: var(--red-500);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.location-detail svg {
  width: 20px;
  height: 20px;
  color: var(--red-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.location-detail strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.location-detail a {
  color: var(--red-500);
  font-weight: 600;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.general-contact {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.general-contact h2 {
  margin-bottom: 1rem;
}

.general-contact > p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--red-500);
}

.contact-method span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-method a {
  color: var(--red-500);
}

/* ========== FOOTER ========== */

.footer {
  background: linear-gradient(180deg, #070A12 0%, #0B0F19 100%);
  padding: 5rem 0 0;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--red-500);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--red-600);
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--red-500);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}

/* ========== ANIMATIONS ========== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }

  .hero h1 { font-size: 2.75rem; }

  .nav-logo-text { font-size: 2.25rem; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .story-section {
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 3.5rem 0; }

  .navbar .container {
    height: 64px;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-logo-text {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 85vh;
    padding: 5rem 1.25rem 3rem;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; line-height: 1.6; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-img-left {
    width: 100%;
    height: 50%;
    bottom: auto;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .hero-img-right {
    width: 100%;
    height: 55%;
    top: auto;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .page-banner {
    height: 30vh;
    min-height: 200px;
  }

  .page-banner h1 { font-size: 1.75rem; }
  .page-banner p { font-size: 0.9375rem; }

  .brand-logos {
    display: none;
  }

  .brand-marquee {
    display: flex;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    flex-shrink: 0;
  }

  .marquee-track img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.5);
    opacity: 0.4;
    flex-shrink: 0;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .section-header h2 { margin-bottom: 0.5rem; }
  .section-header p { font-size: 0.9375rem; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .category-card { height: 180px; }

  .category-card-overlay h3 { font-size: 1.125rem; }
  .category-desc { font-size: 0.8125rem; }

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

  .feature-card {
    padding: 1.75rem 1.25rem;
  }

  .feature-card h3 { font-size: 1.125rem; }
  .feature-card p { font-size: 0.9375rem; }

  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image img {
    height: 240px;
  }

  .story-content p { font-size: 0.9375rem; }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

  .value-card h3 { font-size: 1rem; }
  .value-card p { font-size: 0.8125rem; }

  .locations-preview {
    grid-template-columns: 1fr;
  }

  .product-category-header p { font-size: 0.9375rem; }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card-name {
    font-size: 0.75rem;
    padding: 0.5rem;
  }

  .subcategory-header h3 { font-size: 1rem; }

  .category-nav {
    gap: 0.5rem;
    padding: 1.25rem 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar { display: none; }

  .category-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .location-card .map-container {
    height: 200px;
  }

  .location-details {
    padding: 1.5rem;
  }

  .location-details h3 { font-size: 1.25rem; }
  .location-detail p { font-size: 0.875rem; }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 1rem; }

  .general-contact h2 { font-size: 1.5rem; }
  .general-contact > p { font-size: 0.9375rem; }

  .footer {
    padding: 3.5rem 0 0;
  }

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

  .footer h4 { font-size: 1rem; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.875rem; }

  .contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }

  .coming-soon-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .coming-soon p { font-size: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .hero { min-height: 80vh; padding: 4.5rem 1rem 2.5rem; }
  .hero h1 { font-size: 1.625rem; }
  .hero p { font-size: 0.9375rem; }

  .container { padding: 0 1rem; }

  .section { padding: 3rem 0; }

  .nav-logo-text { font-size: 1.25rem; }

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

  .category-card { height: 200px; }

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

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .product-card-name {
    font-size: 0.6875rem;
    padding: 0.375rem 0.375rem;
  }

  .subcategory-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .subcategory-header h3 { font-size: 0.9375rem; }

  .location-details { padding: 1.25rem; }

  .page-banner { min-height: 180px; }
  .page-banner h1 { font-size: 1.5rem; }

  .cta-banner { padding: 3rem 0; }
  .cta-banner h2 { font-size: 1.25rem; }
  .cta-banner p { font-size: 0.9375rem; }

  .footer { padding: 3rem 0 0; }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
