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

:root {
  --gold:        #f5c518;
  --gold-dark:   #d4a800;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #222222;
  --white:       #ffffff;
  --grey:        #aaaaaa;
  --grey-light:  #cccccc;
  --border:      #2a2a2a;
  --radius:      10px;
  --shadow:      0 2px 16px rgba(0,0,0,0.5);
  --header-h:    64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Noto Sans Tamil', sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

:lang(ta) body,
:lang(ta) * { font-family: 'Noto Sans Tamil', 'Montserrat', sans-serif; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  max-width: 100%;
  padding: 0 40px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.logo-dk { color: var(--gold); }

/* Nav */
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--grey);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  padding: 2px 6px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.lang-btn.active { background: var(--gold); color: #000; }
.lang-btn:hover:not(.active) { color: var(--gold); }
.lang-sep { color: var(--border); font-size: 0.9rem; user-select: none; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Vanta fills the whole section */
#vanta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Dark gradient overlay so text stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 80px 90px;
  animation: heroFadeIn 0.9s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content { width: 100%; }

/* Label — matches reference: small caps, gold star + text */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* Title — inline flow like reference image */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 100%;
}
.hero-highlight {
  color: var(--gold);
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 700px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid var(--gold);
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(245,197,24,0.35);
}
.btn-hero-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero { min-height: unset; }
  .hero-inner { padding: 60px 24px 50px; }
  .hero-btns  { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-outline { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 48px 20px 40px; }
  .hero-title  { font-size: 2rem; }
}

/* ── Reviews Section ── */
.reviews-section {
  background: #000;
  padding: 40px 0 90px;
  overflow: hidden;
}

.reviews-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 48px;
  align-items: center;
}

/* Left: Summary */
.reviews-summary {
  flex-shrink: 0;
}
.reviews-summary-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.reviews-stars {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.reviews-count {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 20px;
}
.reviews-count strong { color: var(--white); }

.reviews-google-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Right: Slider */
.reviews-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.reviews-track-outer {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding: 8px 4px;
  margin: -8px -4px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Review Card */
.review-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px 20px;
  min-width: calc((100% - 32px) / 3);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  border-color: #3a3a3a;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c518, #d4a800);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.review-date {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 2px;
}

.review-google-icon {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Arrows */
.slider-arrow {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Reviews responsive */
@media (max-width: 900px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 92%;
  }
  .reviews-summary { text-align: center; }
  .reviews-google-logo { justify-content: center; }
  .review-card { min-width: calc((100% - 16px) / 2); }
}

@media (max-width: 560px) {
  .reviews-container { width: 90%; }
  .review-card { min-width: 100%; }
  .reviews-section { padding: 40px 0 60px; }
}

/* ── Marquee Ticker ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 12s linear infinite;
}
.marquee-content {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Intro Section ── */
.intro-section {
  padding: 60px 0 40px;
  background: #000;
}

.intro-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Label */
.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

/* Heading */
.intro-heading {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.intro-highlight {
  color: var(--gold);
}

/* Body paragraphs */
.intro-body {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.intro-body p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  font-weight: 400;
}

/* Intro responsive */
@media (max-width: 768px) {
  .intro-section  { padding: 50px 0 30px; }
  .intro-container { width: 92%; }
  .intro-heading  { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .intro-body p   { font-size: 0.95rem; }
  .intro-body     { max-width: 100%; }
}
@media (max-width: 480px) {
  .intro-section  { padding: 40px 0 24px; }
  .intro-heading  { font-size: 1.6rem; }
}

/* ── Why Choose Us ── */
.why-section {
  background: #0a0a0a;
  padding: 90px 0;
}

.why-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.why-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* 6-column grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.why-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: #333;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: #1e1e1e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(245,197,24,0.08);
}
.why-card:hover .why-icon {
  transform: scale(1.12);
}

.why-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-section { padding: 60px 0; }
  .why-card { padding: 22px 14px 18px; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-label   { transition-delay: 0.1s; }
.reveal-heading { transition-delay: 0.3s; }
.reveal-body    { transition-delay: 0.5s; }

/* ── General Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Services Section ── */
.svc-section {
  background: var(--dark);
  padding: 80px 0;
}

.svc-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

.svc-header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.svc-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.svc-subtext {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 4-col grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 22px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.svc-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--gold);
  margin-bottom: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover .svc-pill {
  background: rgba(245, 197, 24, 0.2);
  border-color: rgba(245, 197, 24, 0.55);
}

.svc-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-section { padding: 60px 0; }
}

/* ── Sections (legacy) ── */
.section { padding: 80px 20px; background: var(--dark); }
.section-alt { background: var(--dark2); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--white);
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ── Grid ── */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

/* ── Service Cards ── */
.card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(245,197,24,0.12);
}
.card-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--grey-light); font-weight: 500; }

/* ── Products Section ── */
.prod-section {
  padding: 80px 0;
}
.prod-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Category cards grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 0;
}

.prod-cat-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.prod-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.prod-cat-icon {
  font-size: 2rem;
  line-height: 1;
}
.prod-cat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.prod-cat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  flex: 1;
}
.prod-view-btn {
  margin-top: 4px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.prod-view-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ── Product Detail Panel ── */
.prod-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.prod-panel.open {
  opacity: 1;
  pointer-events: all;
}

.prod-panel-inner {
  width: min(680px, 100%);
  height: 100%;
  background: #111;
  border-left: 1px solid #2a2a2a;
  overflow-y: auto;
  padding: 32px 28px 60px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.prod-panel.open .prod-panel-inner { transform: translateX(0); }

.prod-panel-close {
  position: sticky;
  top: 0;
  float: right;
  background: #1e1e1e;
  border: 1px solid #333;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.prod-panel-close:hover { background: var(--gold); color: #000; }

.pp-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  clear: both;
}

.pp-group { margin-bottom: 32px; }
.pp-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

.pp-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pp-item {
  background: #181818;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.pp-item:hover { border-color: #3a3a3a; }

.pp-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}
.pp-item-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-bottom: 6px;
}
.pp-item-brands {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  margin-bottom: 10px;
}
.pp-item-brands span { color: var(--gold); font-weight: 600; }

.pp-enquire {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pp-enquire:hover { background: #25d366; color: #000; }

/* Products responsive */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-items  { grid-template-columns: 1fr; }
  .prod-panel-inner { padding: 24px 18px 48px; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-section { padding: 60px 0; }
}

/* ── Product Cards (legacy, kept for safety) ── */
.product-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.prod-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.product-card p { font-weight: 600; color: var(--white); }

/* ── Contact Section ── */
.contact-section {
  padding: 80px 0;
}
.contact-wrap {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  border: 1px solid #222;
  display: block;
}

/* Info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.cic-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-info-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact-info-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--white);
  background: #141414;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form select option { background: #141414; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { align-self: flex-start; }

/* Contact responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map iframe { height: 300px; }
}
@media (max-width: 560px) {
  .contact-section { padding: 60px 0; }
  .contact-form .btn { width: 100%; text-align: center; }
}

/* ── Floating Buttons ── */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: floatFadeIn 1s ease 0.5s both;
}
@keyframes floatFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.float-wa   { background: #25d366; }
.float-call { background: var(--gold); color: #000; }

@media (max-width: 480px) {
  .float-btn { width: 48px; height: 48px; }
  .float-btns { bottom: 16px; right: 16px; }
}

/* ── About Section ── */
.about-section {
  background: var(--dark2);
  padding: 90px 0;
}
.about-container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 28px;
}

.about-para {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Highlight items */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.about-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #272727;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, transform 0.2s;
}
.about-hl:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.about-hl-icon { font-size: 1rem; flex-shrink: 0; }

/* Right: stat cards */
.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.about-stat-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.about-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.about-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* About responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-card-stack { position: static; }
}
@media (max-width: 560px) {
  .about-section { padding: 60px 0; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-card-stack { grid-template-columns: 1fr 1fr; }
}

/* ── Nav active state ── */
.nav-active { color: var(--gold) !important; }
.logo { text-decoration: none; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, #050505 0%, #0a0d18 60%, #050505 100%);
  padding: 100px 0 80px;
  border-bottom: 1px solid #1a1a1a;
}
.page-hero-inner {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 14px 0 20px;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.page-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .page-hero { padding: 70px 0 56px; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns .btn { width: 100%; text-align: center; }
}

/* ── SEO text section ── */
.page-seo-section { background: var(--dark2); padding: 70px 0; }
.page-seo-inner { width: 92%; max-width: 900px; margin: 0 auto; }
.page-seo-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-outline-gold {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.btn-outline-gold:hover { background: var(--gold); color: #000; }

/* ── Service enquire button ── */
.svc-enquire-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.svc-enquire-btn:hover { background: var(--gold); color: #000; }

/* ── Brands section ── */
.brands-section { background: var(--dark); padding: 70px 0; }
.brands-container { width: 92%; max-width: 1600px; margin: 0 auto; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.brand-chip {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.brand-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ── Footer ── */
.site-footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 60px 0 0;
}
.footer-inner {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social-btn:hover { border-color: var(--gold); background: #222; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links li { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 6px; }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  width: 92%;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding-top: 40px; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hamburger { display: block; }

  .about-inner { flex-direction: column; text-align: center; }
  .about-text .section-title { text-align: center; }
  .about-text .section-title::after { margin: 10px auto 0; }
  .about-placeholder { width: 160px; height: 160px; font-size: 1.2rem; }

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

@media (max-width: 480px) {
  .lang-btn { font-size: 0.78rem; padding: 2px 4px; }
  .logo { font-size: 1.1rem; }
}

/* ── Product & Service Images ── */
.prod-cat-img,
.svc-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.prod-cat-card:hover .prod-cat-img,
.svc-card:hover .svc-card-img {
  transform: scale(1.05);
}

/* Ensure images don't break layout */
.prod-cat-card,
.svc-card {
  overflow: hidden;
}
