/* ===== DESIGN SYSTEM ===== */
:root {
  --red: #c8102e;
  --red-dark: #a00d25;
  --red-light: #e8324f;
  --slate-950: #0a0f1a;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --amber: #f59e0b;
  --green: #25d366;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-red: 0 8px 30px rgba(200,16,46,.25);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--slate-100);
  color: var(--slate-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.hidden { display: none !important; }
.text-accent { color: var(--red); }
.text-gradient {
  background: linear-gradient(135deg, var(--red) 0%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--slate-900);
  color: var(--slate-300);
  font-size: 12.5px;
  border-bottom: 2px solid var(--red);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; gap: 16px; flex-wrap: wrap;
}
.top-bar-left, .top-bar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar a {
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--red); font-size: 12px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
/* Blur lives on its own layer (not directly on .header) so that
   .header no longer creates a containing block for its fixed-position
   children (like the mobile #mainNav overlay). backdrop-filter on an
   element traps position:fixed descendants inside it — this was why
   the mobile menu collapsed to a tiny sliver instead of covering the screen. */
.header::before {
  content: '';
  position: absolute; inset: 0;
  backdrop-filter: blur(16px);
  z-index: -1;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 20px;
}
.header-call {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 8px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.header-call:hover { background: rgba(200,16,46,.06); }
.header-call-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--white);
  border-radius: 50%; font-size: 15px;
}
.header-call-text { display: flex; flex-direction: column; line-height: 1.25; }
.header-call-label { font-size: 11px; color: var(--slate-500); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.header-call-number { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--slate-900); }
@media (max-width: 1100px) { .header-call { display: none; } }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  width: 48px; height: 48px; object-fit: contain;
  border-radius: var(--radius-sm); border: 2px solid var(--red);
}
.brand-name {
  display: block; font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--slate-900); line-height: 1.2;
}
.brand-tag { display: block; font-size: 11px; color: var(--slate-500); }
.brand-gst { display: block; font-size: 10.5px; color: var(--red); font-weight: 600; letter-spacing: .2px; margin-top: 1px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--slate-700);
  transition: all var(--transition); position: relative;
}
.nav-link:hover { color: var(--red); background: rgba(200,16,46,.06); }
.nav-link.active { color: var(--red); background: rgba(200,16,46,.08); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 8px; padding: 9px 18px;
  background: var(--green); color: var(--white);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover { background: #1fb855; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; padding: 6px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--slate-800);
  border-radius: 2px; transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,16,46,.35); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--slate-100); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ===== SECTION UTILS ===== */
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--slate-900); line-height: 1.15; margin-bottom: 10px;
}
.section-header p { color: var(--slate-500); font-size: 16px; max-width: 520px; }
.section-header.centered p { margin: 0 auto; }
.section-light { background: var(--white); padding: 80px 0; }
.section-dark { background: var(--slate-950); padding: 80px 0; color: var(--slate-300); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: var(--slate-500); }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - 100px);
  display: flex; align-items: center; overflow: hidden;
  background: var(--slate-950);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.3) saturate(.7);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,.92) 0%, rgba(10,15,26,.65) 50%, rgba(10,15,26,.85) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 48px; align-items: center;
  padding: 80px 24px 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--slate-300); padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 20px;
}
.typewriter { color: var(--amber); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.7);
  max-width: 520px; margin-bottom: 32px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-panel { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-card {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 28px 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-suffix { font-size: 1.4rem; color: var(--red); font-weight: 700; }
.stat-label { display: block; font-size: 12px; color: var(--slate-500); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); }
.hero-feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(200,16,46,.12); border: 1px solid rgba(200,16,46,.25);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.hero-feature i { color: var(--red); font-size: 22px; margin-top: 2px; }
.hero-feature strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }
.hero-feature p { font-size: 13px; color: var(--slate-500); margin: 0; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); font-size: 16px;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== MARQUEE ===== */
.marquee-section { padding: 48px 0; background: var(--white); }
.section-header.compact { margin-bottom: 24px; text-align: center; }
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track { display: flex; gap: 16px; will-change: transform; }
.marquee-group { display: flex; gap: 16px; flex-shrink: 0; }
.marquee-group img {
  height: 140px; width: auto; object-fit: cover;
  border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.marquee-group img:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-preview-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--slate-900); line-height: 1.15; margin-bottom: 20px;
}
.about-preview-text p { color: var(--slate-700); margin-bottom: 16px; font-size: 15px; }
.check-list { list-style: none; margin: 24px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--slate-700);
}
.check-list i { color: var(--red); font-size: 12px; }
.media-stack { position: relative; }
.media-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.06);
}
.media-main video { width: 100%; height: 340px; object-fit: cover; }
.media-badge {
  position: absolute; bottom: -20px; left: 24px; right: 24px;
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.media-badge img { width: 44px; height: 44px; object-fit: contain; border-radius: var(--radius-sm); }
.media-badge strong { display: block; font-size: 14px; color: var(--slate-900); }
.media-badge span { font-size: 12px; color: var(--slate-500); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  position: relative; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all var(--transition); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.07); border-color: rgba(200,16,46,.3);
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: rgba(255,255,255,.04); line-height: 1; margin-bottom: -12px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(200,16,46,.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background var(--transition);
}
.service-icon i { color: var(--red); font-size: 20px; }
.service-card:hover .service-icon { background: var(--red); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--amber); font-size: 13px; margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial p { color: var(--slate-700); font-size: 15px; margin-bottom: 20px; line-height: 1.65; font-style: italic; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--white); flex-shrink: 0;
}
.testimonial footer strong { display: block; font-size: 14px; color: var(--slate-900); }
.testimonial footer span { font-size: 12px; color: var(--slate-500); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 56px 0;
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.cta-banner p { color: rgba(255,255,255,.8); font-size: 15px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative; height: 280px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--slate-950);
}
.page-banner-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.25) saturate(.6);
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,26,.4), rgba(10,15,26,.85));
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; color: var(--white); margin-bottom: 8px;
}
.page-banner-content p { color: var(--slate-500); font-size: 16px; }

/* ===== PRODUCTS ===== */
.products-wrap { padding: 48px 24px 80px; }
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 24px;
  font-size: 14px; font-weight: 600; color: var(--slate-700);
  background: var(--white); border: 1.5px solid rgba(0,0,0,.08);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: flex; flex-direction: column;
  animation: cardIn .5s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,.2);
}
.product-card-img {
  position: relative; overflow: hidden; height: 200px;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .5px;
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-body h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--slate-900);
}
.product-card-body .desc { font-size: 13px; color: var(--slate-500); flex: 1; line-height: 1.55; }
.product-specs { list-style: none; margin-top: 8px; }
.product-specs li {
  font-size: 12px; color: var(--slate-700); padding: 5px 0;
  border-top: 1px solid rgba(0,0,0,.05);
  display: flex; align-items: center; gap: 6px;
}
.product-specs li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.product-card-action {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.06);
}
.product-inquiry {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 10px; border-radius: var(--radius-sm);
  background: rgba(37,211,102,.1); color: #128c3e;
  font-size: 13px; font-weight: 600; transition: all var(--transition);
}
.product-inquiry:hover { background: var(--green); color: var(--white); }

/* ===== GALLERY ===== */
.gallery-wrap { padding: 48px 24px 80px; }
.gallery-feature { margin-bottom: 40px; }
.gallery-feature h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--slate-900); margin-bottom: 16px;
}
.gallery-video {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.06);
}
.gallery-video video { width: 100%; max-height: 420px; object-fit: cover; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; aspect-ratio: 1;
  border: 1px solid rgba(0,0,0,.06);
  transition: all var(--transition);
  animation: cardIn .4s ease both;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item::after {
  content: '\f065'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(200,16,46,.7); color: var(--white); font-size: 20px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 48px 24px 80px; }
.about-page-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.about-page-text h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--slate-900); margin-bottom: 20px;
}
.about-page-text p { color: var(--slate-700); margin-bottom: 16px; font-size: 15px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md); padding: 16px 18px;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(200,16,46,.2); box-shadow: var(--shadow-sm); }
.value-card i { color: var(--red); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.value-card strong { display: block; font-size: 14px; color: var(--slate-900); margin-bottom: 2px; }
.value-card p { font-size: 12px; color: var(--slate-500); margin: 0; }
.about-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 20px;
}
.about-card video { width: 100%; height: 220px; object-fit: cover; }
.about-card-footer {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white);
}
.about-card-footer img { width: 48px; height: 48px; object-fit: contain; border-radius: var(--radius-sm); }
.about-card-footer strong { display: block; font-size: 14px; color: var(--slate-900); }
.about-card-footer span { font-size: 12px; color: var(--slate-500); }
.location-box {
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.location-box h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--slate-900); margin-bottom: 16px;
}
.location-box h3 i { color: var(--red); margin-right: 6px; }
.location-link {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--slate-700); margin-bottom: 12px;
  transition: color var(--transition);
}
.location-link:hover { color: var(--red); }
.location-link i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.location-box .btn { margin-top: 8px; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
  padding: 48px 24px 80px; align-items: start;
}
.contact-info h2, .contact-form-wrap h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--slate-900); margin-bottom: 24px;
}
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 14px;
  transition: all var(--transition);
}
.info-card:hover { border-color: rgba(200,16,46,.15); box-shadow: var(--shadow-sm); }
.info-card > i {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(200,16,46,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--slate-500); margin-bottom: 2px; }
.info-card p, .info-card a { font-size: 14px; color: var(--slate-700); }
.contact-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: all var(--transition);
}
.chip-whatsapp { background: rgba(37,211,102,.12); color: #128c3e; }
.chip-whatsapp:hover { background: var(--green); color: var(--white); }
.chip-insta { background: rgba(131,58,180,.1); color: #833ab4; }
.chip-insta:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d); color: var(--white); }
.chip-maps { background: rgba(66,133,244,.1); color: #4285f4; }
.chip-maps:hover { background: #4285f4; color: var(--white); }
.contact-form-wrap {
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--slate-700); margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,.1); background: var(--slate-100);
  font-family: var(--font-body); font-size: 14px; color: var(--slate-800);
  transition: all var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--red);
  background: var(--white); box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; cursor: pointer; }

/* ===== FOOTER ===== */
.footer { background: var(--slate-950); color: var(--slate-300); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding: 56px 24px 40px;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: var(--radius-sm); border: 2px solid var(--red); }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--white); }
.footer-brand span { font-size: 11px; color: var(--slate-500); }
.footer-desc { font-size: 13px; color: var(--slate-500); line-height: 1.6; }
.footer-gst { font-size: 12.5px; color: var(--slate-300); font-weight: 600; margin-top: 10px; letter-spacing: .2px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; color: var(--white); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--slate-500);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-col a i { margin-right: 6px; color: var(--red); font-size: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500); font-size: 15px; transition: all var(--transition);
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 24px; text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--slate-500); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== FLOATING ACTIONS ===== */
.fab-btn {
  position: fixed; z-index: 300;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.whatsapp-fab {
  bottom: 24px; right: 24px;
  background: var(--green); color: var(--white);
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.scroll-top {
  bottom: 24px; right: 90px;
  background: var(--red); color: var(--white);
  opacity: 0; pointer-events: none; font-size: 18px;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: scale(1.08); background: var(--red-dark); }

/* ===== PAGE TRANSITIONS ===== */
.page-section { animation: pageIn .5s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== HOT DEALS / POPULAR PRODUCTS ===== */
.deals-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.deal-card {
  display: block; text-decoration: none; background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid rgba(0,0,0,.08); transition: var(--transition);
}
.hot-deals .deal-card { background: var(--white); }
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,16,46,.3); }
.deal-card-img { aspect-ratio: 1/1; background: var(--slate-100); }
.deal-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.deal-card-body { padding: 12px 14px 16px; text-align: center; }
.deal-card-body h4 { font-size: 13px; color: var(--slate-900); margin-bottom: 10px; line-height: 1.4; min-height: 36px; }
.hot-deals .deal-card-body h4 { color: var(--slate-900); }
.deal-card-link {
  font-size: 12px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border: 1.5px solid var(--red); border-radius: 999px;
  text-transform: uppercase; letter-spacing: .3px;
  transition: all var(--transition);
}
.deal-card:hover .deal-card-link { background: var(--red); color: var(--white); }
.deals-cta { text-align: center; margin-top: 36px; }

/* ===== INDUSTRIES WE SERVE (Home) ===== */
.industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.industry-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 12px; background: var(--slate-100); border-radius: var(--radius-md);
  text-align: center; transition: var(--transition);
}
.industry-card:hover { background: var(--red); transform: translateY(-4px); }
.industry-card:hover i, .industry-card:hover span { color: var(--white); }
.industry-card i { font-size: 28px; color: var(--red); transition: var(--transition); }
.industry-card span { font-size: 13px; font-weight: 600; color: var(--slate-800); transition: var(--transition); }

/* ===== MISSION / VISION (About) ===== */
.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.mv-card {
  padding: 24px; background: var(--slate-100); border-radius: var(--radius-md);
  border: 1px solid transparent; transition: var(--transition);
}
.mv-card:hover { border-color: rgba(200,16,46,.2); box-shadow: var(--shadow-sm); }
.mv-card i { font-size: 22px; color: var(--red); margin-bottom: 10px; display: block; }
.mv-card h3 { font-size: 16px; color: var(--slate-900); margin-bottom: 8px; }
.mv-card p { font-size: 13px; color: var(--slate-500); line-height: 1.6; margin: 0; }

/* ===== MILESTONES (About) ===== */
.milestones { margin-top: 40px; }
.milestones h2 { font-size: 22px; color: var(--slate-900); margin-bottom: 24px; }
.milestones-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative;
}
.milestones-track::before {
  content: ''; position: absolute; top: 6px; left: 0; right: 0; height: 2px;
  background: var(--slate-300);
}
.milestone { position: relative; padding-top: 24px; }
.milestone-dot {
  position: absolute; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--red);
}
.milestone strong { display: block; font-size: 14px; color: var(--slate-900); margin-bottom: 6px; }
.milestone p { font-size: 12px; color: var(--slate-500); line-height: 1.6; margin: 0; }

/* ===== CONTACT MAP ===== */
.contact-map {
  margin-top: 20px; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { display: block; }

/* ===== SHOP BY CATEGORY ===== */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
  position: relative; display: block; border-radius: var(--radius-md); overflow: hidden;
  height: 220px; text-decoration: none; box-shadow: var(--shadow-sm);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.category-card:hover img { transform: scale(1.08); }
.category-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: var(--white); font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 8px;
}
.category-card-label i { color: var(--red); }

/* ===== FOOTER PROPRIETOR CARD ===== */
.footer-contact-card { background: var(--slate-900); padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); }
.proprietor-card {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.proprietor-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.proprietor-avatar i { color: var(--white); font-size: 22px; }
.proprietor-info { flex: 1; min-width: 200px; }
.proprietor-info strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 2px; }
.proprietor-info span { color: var(--slate-500); font-size: 13px; }
.proprietor-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* =====================================================================
   RESPONSIVE — three breakpoints
   Desktop  : > 1024px   (base styles above apply as-is)
   Tablet   : 769px – 1024px
   Mobile   : ≤ 768px  (further tightened  ≤ 480px for small phones)
   ===================================================================== */

/* ---------- TABLET (769px – 1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Nav still horizontal here, just a bit tighter */
  .nav-link { padding: 8px 12px; font-size: 13.5px; }
  .nav-cta { padding: 9px 14px; font-size: 13.5px; }
  .brand-tag, .brand-gst { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 20px 48px; }
  .hero-panel { max-width: 560px; }
  .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

  .about-preview-grid { grid-template-columns: 1fr; gap: 36px; }
  .media-main video { height: 300px; }
  .check-list { grid-template-columns: repeat(2, 1fr); }

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

  .about-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section-light, .section-dark { padding: 64px 0; }

  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .milestones-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .milestones-track::before { display: none; }
}

/* Collapse to hamburger a little before full mobile so mid-size tablets
   (portrait iPads etc.) don't get a cramped nav bar */
@media (max-width: 860px) {
  .top-bar-left, .top-bar-right { gap: 12px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: fixed; inset: 0; top: 76px; z-index: 199;
    background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 4px;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav-cta { margin: 12px 0 0; justify-content: center; padding: 14px; font-size: 15px; }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {
  .top-bar { font-size: 11.5px; }
  .top-bar-inner { padding: 6px 16px; justify-content: center; text-align: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }

  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; gap: 12px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 15px; }

  .about-preview-grid, .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .check-list { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .category-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }

  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .milestones-track { grid-template-columns: 1fr 1fr; gap: 20px; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  .hero { min-height: auto; }
  .hero-inner { padding: 48px 16px 40px; gap: 28px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { gap: 10px; }
  .stat-num { font-size: 1.8rem; }
  .hero-stat-card { padding: 22px 14px; }
  .hero-feature { padding: 16px; }

  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 14.5px; }
  .section-light, .section-dark { padding: 48px 0; }

  .page-banner { height: 200px; }

  .about-page, .gallery-wrap, .products-wrap { padding: 32px 16px 56px; }
  .contact-wrap { padding: 32px 16px 56px; }
  .contact-form-wrap { padding: 22px; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }

  .footer-grid { padding: 40px 16px 32px; }
  .proprietor-card { justify-content: center; text-align: center; }
  .proprietor-actions { justify-content: center; width: 100%; }

  .whatsapp-fab, .scroll-top { width: 46px; height: 46px; font-size: 19px; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .scroll-top { right: 16px; bottom: 74px; }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stat-card { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 60px; height: 1px; }

  .section-header h2 { font-size: clamp(1.5rem, 8vw, 1.9rem); }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .cta-banner { padding: 40px 0; }
  .btn { padding: 12px 20px; font-size: 14px; }

  .proprietor-card { flex-direction: column; text-align: center; }

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