/* ============================================================
   MAKMUR BEARING MEDAN — COMPANY PROFILE STYLESHEET
   Clean, Minimalist, Red & White Theme
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --clr-red:        #D10000;
  --clr-red-dark:   #A50000;
  --clr-red-light:  #FF2020;
  --clr-red-muted:  rgba(209, 0, 0, 0.08);
  --clr-black:      #0D0D0D;
  --clr-dark:       #141414;
  --clr-dark2:      #1A1A1A;
  --clr-gray-900:   #1E1E1E;
  --clr-gray-800:   #2D2D2D;
  --clr-gray-600:   #555555;
  --clr-gray-400:   #8A8A8A;
  --clr-gray-200:   #E5E5E5;
  --clr-gray-100:   #F5F5F5;
  --clr-white:      #FFFFFF;
  --clr-off-white:  #FAFAFA;

  --font-primary:   'Inter', 'Outfit', sans-serif;
  --font-display:   'Outfit', 'Inter', sans-serif;

  --nav-h:          72px;
  --container:      1200px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-red: 0 8px 30px rgba(209,0,0,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background-color: var(--clr-white);
  color: var(--clr-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION UTILITIES ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section-dark { background-color: var(--clr-dark); }
.section-light { background-color: var(--clr-gray-100); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-red);
  background: var(--clr-red-muted);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(209, 0, 0, 0.15);
}
.section-tag-light { color: var(--clr-red-light); background: rgba(255,30,30,0.12); border-color: rgba(255,30,30,0.2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-black);
  margin-bottom: 16px;
}
.section-title-light { color: var(--clr-white); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--clr-gray-600);
  line-height: 1.7;
}
.section-desc-light { color: rgba(255,255,255,0.62); }

.text-accent { color: var(--clr-red); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--clr-red);
  color: var(--clr-white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background-color: var(--clr-red-dark);
  box-shadow: 0 12px 36px rgba(209,0,0,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--clr-white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-gray-200);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--clr-black);
  text-transform: uppercase;
}
.logo-accent { color: var(--clr-red); }
.logo-city {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--clr-gray-600);
  text-align: center;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-red);
  background: var(--clr-red-muted);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-black);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-gray-200);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-link {
  display: block;
  padding: 14px 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-gray-800);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover { color: var(--clr-red); background: var(--clr-red-muted); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.90) 0%,
    rgba(13,13,13,0.72) 50%,
    rgba(165,0,0,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--clr-red-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,32,32,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,32,32,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--clr-red-light); }
.hero-sub {
  font-size: clamp(1.25rem, 3.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.45);
  border-bottom: 2px solid rgba(255,255,255,0.45);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--clr-red);
  color: var(--clr-white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.88;
  margin-top: 3px;
}

.about-text-col .section-tag { margin-bottom: 14px; }
.about-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-body {
  font-size: 1rem;
  color: var(--clr-gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-features { display: flex; flex-direction: column; gap: 22px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--clr-red-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  border: 1px solid rgba(209,0,0,0.15);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title { font-size: 0.9375rem; font-weight: 600; color: var(--clr-black); margin-bottom: 2px; }
.feature-desc  { font-size: 0.875rem; color: var(--clr-gray-600); line-height: 1.5; }

/* ── BRANDS ─────────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(209,0,0,0.35);
  box-shadow: 0 8px 24px rgba(209,0,0,0.12);
}
.brand-icon {
  width: 100%;
  height: 90px;
  color: var(--clr-red-light);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  opacity: 0.9;
}
.brand-icon svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.brand-origin {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-red-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-desc {
  font-size: 0.84375rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
}
.brands-more {
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.brands-more::before,
.brands-more::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-red-light));
  opacity: 0.5;
}
.brands-more::after {
  background: linear-gradient(to left, transparent, var(--clr-red-light));
}

/* ── PRODUCTS ───────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.product-info { padding: 24px; }
.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.9375rem;
  color: var(--clr-gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.product-brands-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-red);
  background: var(--clr-red-muted);
  border: 1px solid rgba(209,0,0,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-gray-600);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-gray-200);
  padding: 9px 22px;
  border-radius: 100px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--clr-red);
  color: var(--clr-white);
  border-color: var(--clr-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(13,13,13,0.5); }
.gallery-overlay-content {
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-item:hover .gallery-overlay-content { transform: translateY(0); opacity: 1; }
.gallery-item-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--clr-white);
}
.gallery-item-icon svg { width: 22px; height: 22px; }
.gallery-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-white);
}
.gallery-item.hidden {
  display: none;
}

/* Gallery Expand / Collapse */
.gallery-wrapper {
  position: relative;
}
.gallery-wrapper.collapsed {
  max-height: calc((260px * 2) + 16px);
  overflow: hidden;
}
.gallery-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--clr-white));
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition);
}
.gallery-wrapper:not(.collapsed) .gallery-fade {
  opacity: 0;
}

.gallery-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.gallery-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-red);
  background: var(--clr-red-muted);
  border: 1.5px solid rgba(209,0,0,0.2);
  padding: 11px 28px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.gallery-toggle-btn:hover {
  background: rgba(209,0,0,0.12);
  border-color: rgba(209,0,0,0.35);
}
.toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}
.gallery-toggle-btn.open .toggle-icon {
  transform: rotate(180deg);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-caption {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  line-height: 1;
}
.lightbox-close:hover { color: var(--clr-red-light); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.lightbox-nav:hover { color: var(--clr-white); background: rgba(255,255,255,0.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── WHY US ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(209,0,0,0.25);
}
.why-icon {
  width: 56px;
  height: 56px;
  color: var(--clr-red);
  margin-bottom: 20px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.9375rem;
  color: var(--clr-gray-600);
  line-height: 1.65;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(209,0,0,0.12);
  border: 1px solid rgba(255,30,30,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red-light);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 0.78125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.contact-link {
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--clr-red-light); }
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 600;
}
.contact-wa:hover { color: #1ebe5b !important; }

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.84375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--clr-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus {
  border-color: var(--clr-red);
  background: rgba(255,255,255,0.08);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--clr-dark); color: var(--clr-white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-success {
  margin-top: 16px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25D366;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--clr-black);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 2rem 48px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-address { font-size: 0.875rem; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.8125rem; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--clr-red);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--clr-red-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.shown {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 32px;
  }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { order: -1; }
  .about-img-wrapper img { height: 320px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item-tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-logo { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px 18px; }
  .footer-grid { gap: 28px; }
}

.logo {
  width: 180px;
}

.brand-icon img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: center;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.brand-card:hover .brand-icon img {
  opacity: 1;
}