/* ============================================
   TRINITY INTERIOR PRODUCTS
   Color System: #FFD000 (Gold) + #000000 (Black)
   Aesthetic: Luxury / Editorial / Geometric
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --gold: #FFD000;
  --gold-dark: #E6BB00;
  --gold-light: #FFE34D;
  --gold-glow: rgba(255, 208, 0, 0.12);
  --gold-glow-strong: rgba(255, 208, 0, 0.25);
  --black: #000000;
  --black-soft: #0A0A0A;
  --black-lighter: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --shadow-gold: 0 8px 32px rgba(255, 208, 0, 0.2);
  --shadow-gold-lg: 0 16px 48px rgba(255, 208, 0, 0.3);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* --- Selection --- */
::selection { background: var(--gold); color: var(--black); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease);
}

.btn:hover::before { left: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* --- Animated Gold Line --- */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.gold-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid var(--black-border);
}

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

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  transition: all 0.4s var(--ease);
}

.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--gold); }
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-light);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 10px 28px !important;
  background: var(--gold) !important;
  color: var(--black) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: scale(1.05); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,208,0,0.04) 59px, rgba(255,208,0,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,208,0,0.04) 59px, rgba(255,208,0,0.04) 60px);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  background: var(--gold);
  animation: glowFloat 10s ease-in-out infinite;
}

.hero-glow-1 { top: -10%; right: -5%; }
.hero-glow-2 { bottom: -15%; left: -10%; animation-delay: -5s; }

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 208, 0, 0.3);
  background: rgba(255, 208, 0, 0.06);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s var(--ease) both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s var(--ease) 0.15s both;
}

.hero h1 .gold { color: var(--gold); }
.hero h1 .italic { font-style: italic; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s var(--ease) 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s var(--ease) 0.45s both;
}

.hero-products {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--black-border);
  animation: fadeSlideUp 0.8s var(--ease) 0.6s both;
}

.hero-product-chip {
  padding: 10px 22px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray-light);
  transition: all 0.4s var(--ease);
  cursor: default;
}

.hero-product-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,208,0,0.06);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeSlideUp 1s var(--ease) 0.4s both;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin-left: auto;
}

.hero-card {
  position: absolute;
  width: 280px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  transition: all 0.6s var(--ease);
}

.hero-card-media {
  position: absolute;
  inset: 0;
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.hero-card:hover .hero-card-media img {
  transform: scale(1.06);
  filter: brightness(0.93);
}

.hero-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
}

.hero-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 6%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.08) 74%);
}

.hero-card-inner > * { position: relative; z-index: 1; }

.hc-1 {
  top: 0; left: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 3;
}
.hc-2 {
  top: 40px; left: 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
  z-index: 2;
}
.hc-3 {
  top: 80px; left: 120px;
  background: linear-gradient(135deg, #141414 0%, #252525 100%);
  z-index: 1;
}

.hero-card:hover { transform: translateY(-12px) rotate(-2deg); z-index: 10; box-shadow: var(--shadow-gold); border-color: var(--gold); }

.hero-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
}

/* ====== SECTIONS ====== */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section-header h2 .gold { color: var(--gold); }

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
}

.bg-dark { background: var(--black-soft); }
.bg-card { background: var(--black-lighter); }

/* ====== MARQUEE ====== */
.marquee-section {
  padding: 20px 0;
  background: var(--gold);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
}

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

/* ====== PRODUCTS / SERVICES ====== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,208,0,0.06) 0%, transparent 70%);
  transform: translateX(-50%);
  transition: bottom 0.5s var(--ease);
}

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

.product-card:hover::before { transform: scaleX(1); }
.product-card:hover::after { bottom: -40px; }

.product-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.5s var(--ease);
  position: relative;
  z-index: 1;
}

.product-icon i {
  font-size: 1.55rem;
}

.product-card:hover .product-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-gold);
}

.product-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.product-types {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.type-chip {
  padding: 4px 12px;
  background: rgba(255,208,0,0.06);
  border: 1px solid rgba(255,208,0,0.15);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ====== WHY CHOOSE US ====== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black-card), var(--black-lighter));
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.1);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
}

.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold-lg);
}

.why-badge h3 {
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1;
}

.why-badge p {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
}

.why-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.why-content h2 .gold { color: var(--gold); }

.why-content > p {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 1rem;
}

.why-features { display: grid; gap: 20px; margin-bottom: 36px; }

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.why-feature:hover {
  border-color: var(--gold);
  background: rgba(255,208,0,0.04);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s var(--ease);
}

.why-feature:hover .why-feature-icon {
  background: var(--gold);
  transform: rotate(-10deg);
}

.why-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ====== PROJECTS GALLERY ====== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--black-lighter) 100%);
  border: 1px solid var(--black-border);
  cursor: pointer;
  transition: all 0.5s var(--ease);
}

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

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.5s var(--ease);
}

.project-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.15;
}

.project-placeholder-text {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: all 0.5s var(--ease);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.project-overlay h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-overlay p {
  font-size: 0.82rem;
  color: var(--gray-light);
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 26px;
  border: 1px solid var(--black-border);
  border-radius: 50px;
  background: transparent;
  color: var(--gray);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ====== COUNTER ====== */
.counter-section {
  background: var(--gold);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,0,0,0.04) 59px, rgba(0,0,0,0.04) 60px);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}

.counter-item h3 {
  font-size: 3.2rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item p {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.5s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(255,208,0,0.3);
  transform: translateY(-6px);
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.6;
  margin-bottom: 8px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.85rem;
}

.testimonial-author h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author p {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ====== CTA BANNER ====== */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,208,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,208,0,0.04) 0%, transparent 50%);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
}

.cta-banner h2 .gold { color: var(--gold); }

.cta-banner p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.contact-item:hover { border-color: var(--gold); }

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--black-soft);
  transition: all 0.4s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black-card); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.form-submit:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

/* ====== PAGE HERO (Inner Pages) ====== */
.page-hero {
  background: var(--black);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,208,0,0.03) 59px, rgba(255,208,0,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,208,0,0.03) 59px, rgba(255,208,0,0.03) 60px);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.page-hero h1 .gold { color: var(--gold); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ====== PROCESS ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--black-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.5s var(--ease);
}

.process-step:hover .process-number {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold-lg);
  transform: scale(1.1);
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 200px;
  margin: 0 auto;
}

/* ====== FAQ ====== */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.faq-item.active { border-color: var(--gold); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--black-card);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-align: left;
  transition: all 0.4s var(--ease);
}

.faq-item.active .faq-question { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
  min-width: 28px;
  transition: all 0.4s var(--ease);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--black-soft);
  color: var(--gray);
  padding: 80px 0 0;
  border-top: 1px solid var(--black-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--black-border);
}

.footer-about .logo { margin-bottom: 20px; }
.footer-about p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: all 0.4s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer h4 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 0.88rem;
}

.footer-contact-item span:first-child {
  color: var(--gold);
  min-width: 20px;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: var(--gold); }

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-products { justify-content: center; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--black-soft);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    transition: all 0.4s var(--ease);
    border-left: 1px solid var(--black-border);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--black-border);
    width: 100%;
    text-align: left;
  }

  .products-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-products { flex-wrap: wrap; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
}


/* ====== THEME TOGGLE + LIGHT THEME ====== */
:root {
  --surface-1: var(--black);
  --surface-2: var(--black-soft);
  --surface-3: var(--black-lighter);
  --surface-card: var(--black-card);
  --surface-border: var(--black-border);
  --text-main: var(--white);
  --text-soft: var(--gray-light);
  --header-bg: rgba(0, 0, 0, 0.92);
  --header-border: var(--black-border);
  --hero-overlay: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

body[data-theme='light'] {
  --gold: #D4AF37;
  --gold-dark: #B9911E;
  --gold-light: #E7C860;
  --gold-glow: rgba(212, 175, 55, 0.14);
  --gold-glow-strong: rgba(212, 175, 55, 0.25);
  --black: #111111;
  --black-soft: #F8F8F6;
  --black-lighter: #FFFFFF;
  --black-card: #FFFFFF;
  --black-border: #E4DDC8;
  --white: #111111;
  --off-white: #FFFDF7;
  --gray: #666666;
  --gray-light: #4E4E4E;
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);
  --shadow-gold-lg: 0 16px 44px rgba(212, 175, 55, 0.25);
  --shadow-dark: 0 10px 26px rgba(0, 0, 0, 0.08);
  --surface-1: #FFFDF7;
  --surface-2: #F8F8F6;
  --surface-3: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-border: #E4DDC8;
  --text-main: #111111;
  --text-soft: #4E4E4E;
  --header-bg: rgba(255, 253, 247, 0.96);
  --header-border: #E4DDC8;
  --hero-overlay: linear-gradient(to top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.15) 60%);
}

body[data-theme='light'] {
  color: var(--text-main);
  background: var(--surface-1);
}

body[data-theme='light'] .header.scrolled {
  background: var(--header-bg);
  border-bottom-color: var(--header-border);
}

body[data-theme='light'] .hero,
body[data-theme='light'] .page-hero,
body[data-theme='light'] .cta-banner,
body[data-theme='light'] .footer,
body[data-theme='light'] .why-image,
body[data-theme='light'] .contact-form,
body[data-theme='light'] .faq-question,
body[data-theme='light'] .nav-links.active {
  background: var(--surface-2);
}

body[data-theme='light'] .bg-dark { background: var(--surface-2); }
body[data-theme='light'] .bg-card { background: var(--surface-3); }
body[data-theme='light'] .product-card,
body[data-theme='light'] .stat-card,
body[data-theme='light'] .why-feature,
body[data-theme='light'] .project-card,
body[data-theme='light'] .contact-item,
body[data-theme='light'] .contact-form,
body[data-theme='light'] .faq-item,
body[data-theme='light'] .hero-card,
body[data-theme='light'] .why-overlay-card {
  background: var(--surface-card);
  border-color: var(--surface-border);
  box-shadow: var(--shadow-dark);
}

body[data-theme='light'] .hero-card.hc-1 { background: linear-gradient(135deg, #fff8dd 0%, #ffffff 100%); }
body[data-theme='light'] .hero-card.hc-2 { background: linear-gradient(135deg, #f8f8f6 0%, #ffffff 100%); }
body[data-theme='light'] .hero-card.hc-3 { background: linear-gradient(135deg, #fff3cf 0%, #ffffff 100%); }
body[data-theme='light'] .hero-card::before,
body[data-theme='light'] .project-image::after { background: var(--hero-overlay); }
body[data-theme='light'] .why-placeholder,
body[data-theme='light'] .project-image-placeholder { color: rgba(17,17,17,0.12); }
body[data-theme='light'] .marquee-section { border-top-color: var(--surface-border); border-bottom-color: var(--surface-border); }
body[data-theme='light'] .filter-btn { border-color: var(--surface-border); }
body[data-theme='light'] .footer-bottom,
body[data-theme='light'] .footer-top { border-color: var(--surface-border); }
body[data-theme='light'] .footer p,
body[data-theme='light'] .footer-links a,
body[data-theme='light'] .footer-contact-item,
body[data-theme='light'] .footer-bottom p,
body[data-theme='light'] .footer-bottom a { color: rgba(17,17,17,0.72); }
body[data-theme='light'] .footer-bottom a:hover,
body[data-theme='light'] .footer-links a:hover { color: var(--gold); }
body[data-theme='light'] .page-hero::before {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(212,175,55,0.06) 59px, rgba(212,175,55,0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(212,175,55,0.06) 59px, rgba(212,175,55,0.06) 60px);
}
body[data-theme='light'] .hero-bg-pattern {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(212,175,55,0.05) 59px, rgba(212,175,55,0.05) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(212,175,55,0.05) 59px, rgba(212,175,55,0.05) 60px);
}
body[data-theme='light'] .form-group input,
body[data-theme='light'] .form-group select,
body[data-theme='light'] .form-group textarea {
  background: #ffffff;
  color: #111111;
  border-color: var(--surface-border);
}
body[data-theme='light'] .form-group select option { background: #ffffff; color: #111111; }
body[data-theme='light'] .logo-sub,
body[data-theme='light'] .hero-desc,
body[data-theme='light'] .section-header p,
body[data-theme='light'] .section-subtext,
body[data-theme='light'] .contact-item p,
body[data-theme='light'] .faq-answer p,
body[data-theme='light'] .why-content p,
body[data-theme='light'] .project-content p { color: var(--text-soft); }

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.35s var(--ease);
  margin-left: 18px;
  box-shadow: var(--shadow-dark);
}

.theme-toggle:hover {
  transform: translateY(-2px) rotate(8deg);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.floating-contact-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  font-size: 1rem;
}

.floating-action span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  font-size: 0.85rem;
  font-weight: 600;
}

.floating-action:hover {
  min-width: 166px;
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.floating-action:hover span {
  max-width: 100px;
  opacity: 1;
}

.form-success-panel {
  margin-top: 18px;
  background: var(--black-card);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-dark);
}

.form-success-head p {
  margin-top: 8px;
  color: var(--gray-light);
}

.form-preview {
  margin: 16px 0 18px;
  padding: 16px;
  border-radius: 16px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--white);
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
}

.form-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1024px) {
  .theme-toggle { margin-left: 12px; }
}

@media (max-width: 768px) {
  .theme-toggle {
    margin-left: auto;
    margin-right: 8px;
    width: 42px;
    height: 42px;
  }

  .floating-contact-bar {
    right: 12px;
    top: auto;
    bottom: 18px;
    transform: none;
    gap: 10px;
  }

  .floating-action {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 16px;
  }

  .floating-action:hover {
    min-width: 50px;
  }

  .floating-action span { display: none; }

  .form-action-buttons {
    flex-direction: column;
  }
}


/* ====== BRAND UI REFRESH / LOGO PALETTE THEMES ====== */
:root {
  --brand-ruby: #E41F4B;
  --brand-ruby-light: #F04C70;
  --brand-amber: #F4B04A;
  --brand-amber-light: #F7C06A;
  --brand-teal: #33A9A4;
  --brand-teal-light: #57C1BC;
  --brand-yellow: #F7E517;
  --brand-charcoal: #2F3135;
  --brand-charcoal-soft: #3E4045;
  --brand-cream: #FFF8F2;
}

body[data-theme='dark'] {
  --gold: var(--brand-ruby);
  --gold-dark: #B9183C;
  --gold-light: var(--brand-ruby-light);
  --gold-glow: rgba(228, 31, 75, 0.12);
  --gold-glow-strong: rgba(228, 31, 75, 0.25);
  --black: #090A0D;
  --black-soft: #101218;
  --black-lighter: #171A22;
  --black-card: #11141C;
  --black-border: rgba(255, 255, 255, 0.08);
  --white: #F8F8FA;
  --off-white: #EFF1F5;
  --gray: #9CA3AF;
  --gray-light: #C7CDD8;
  --shadow-gold: 0 12px 32px rgba(228, 31, 75, 0.18);
  --shadow-gold-lg: 0 18px 48px rgba(228, 31, 75, 0.26);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.38);
  --surface-1: #090A0D;
  --surface-2: #101218;
  --surface-3: #171A22;
  --surface-card: #11141C;
  --surface-border: rgba(255,255,255,0.08);
  --text-main: #F8F8FA;
  --text-soft: #C7CDD8;
  --header-bg: rgba(9, 10, 13, 0.86);
  --header-border: rgba(255,255,255,0.08);
  --hero-overlay: linear-gradient(to top, rgba(9,10,13,0.9) 0%, rgba(9,10,13,0.14) 60%);
}

body[data-theme='light'] {
  --gold: var(--brand-ruby);
  --gold-dark: #B9183C;
  --gold-light: var(--brand-amber);
  --gold-glow: rgba(228, 31, 75, 0.10);
  --gold-glow-strong: rgba(228, 31, 75, 0.20);
  --black: #FFF9F4;
  --black-soft: #FFF4EE;
  --black-lighter: #FFFFFF;
  --black-card: #FFFFFF;
  --black-border: rgba(47, 49, 53, 0.10);
  --white: #22252C;
  --off-white: #FFFFFF;
  --gray: #5E6673;
  --gray-light: #414856;
  --shadow-gold: 0 12px 32px rgba(228, 31, 75, 0.10);
  --shadow-gold-lg: 0 18px 46px rgba(228, 31, 75, 0.15);
  --shadow-dark: 0 16px 40px rgba(25, 30, 40, 0.08);
  --surface-1: #FFF9F4;
  --surface-2: #FFF4EE;
  --surface-3: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-border: rgba(47, 49, 53, 0.10);
  --text-main: #22252C;
  --text-soft: #414856;
  --header-bg: rgba(255, 249, 244, 0.9);
  --header-border: rgba(47,49,53,0.08);
  --hero-overlay: linear-gradient(to top, rgba(255,249,244,0.9) 0%, rgba(255,249,244,0.12) 60%);
}

body[data-theme='ruby'] {
  --gold: var(--brand-ruby);
  --gold-dark: #BC1B3E;
  --gold-light: #F05B7B;
  --gold-glow: rgba(228, 31, 75, 0.14);
  --gold-glow-strong: rgba(228, 31, 75, 0.28);
  --black: #150C11;
  --black-soft: #1E1218;
  --black-lighter: #281620;
  --black-card: #21131B;
  --black-border: rgba(255, 222, 230, 0.08);
  --white: #FFF4F7;
  --off-white: #FFEFF4;
  --gray: #D3AEB8;
  --gray-light: #F1CAD4;
  --shadow-gold: 0 12px 32px rgba(228, 31, 75, 0.20);
  --shadow-gold-lg: 0 18px 48px rgba(228, 31, 75, 0.30);
  --shadow-dark: 0 16px 40px rgba(11, 3, 7, 0.42);
  --surface-1: #150C11;
  --surface-2: #1E1218;
  --surface-3: #281620;
  --surface-card: #21131B;
  --surface-border: rgba(255, 222, 230, 0.08);
  --text-main: #FFF4F7;
  --text-soft: #F1CAD4;
  --header-bg: rgba(21,12,17,0.88);
  --header-border: rgba(255, 222, 230, 0.08);
  --hero-overlay: linear-gradient(to top, rgba(21,12,17,0.92) 0%, rgba(21,12,17,0.16) 60%);
}

body[data-theme='teal'] {
  --gold: var(--brand-teal);
  --gold-dark: #258B87;
  --gold-light: var(--brand-yellow);
  --gold-glow: rgba(51, 169, 164, 0.14);
  --gold-glow-strong: rgba(51, 169, 164, 0.28);
  --black: #081113;
  --black-soft: #0D181B;
  --black-lighter: #132126;
  --black-card: #101B1F;
  --black-border: rgba(195, 244, 241, 0.10);
  --white: #F3FCFB;
  --off-white: #E8FBF9;
  --gray: #A0C6C4;
  --gray-light: #CBE5E3;
  --shadow-gold: 0 12px 32px rgba(51, 169, 164, 0.20);
  --shadow-gold-lg: 0 18px 48px rgba(51, 169, 164, 0.28);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.38);
  --surface-1: #081113;
  --surface-2: #0D181B;
  --surface-3: #132126;
  --surface-card: #101B1F;
  --surface-border: rgba(195, 244, 241, 0.10);
  --text-main: #F3FCFB;
  --text-soft: #CBE5E3;
  --header-bg: rgba(8,17,19,0.88);
  --header-border: rgba(195,244,241,0.10);
  --hero-overlay: linear-gradient(to top, rgba(8,17,19,0.92) 0%, rgba(8,17,19,0.16) 60%);
}

body[data-theme='amber'] {
  --gold: var(--brand-amber);
  --gold-dark: #D28C22;
  --gold-light: var(--brand-yellow);
  --gold-glow: rgba(244, 176, 74, 0.14);
  --gold-glow-strong: rgba(244, 176, 74, 0.28);
  --black: #14100A;
  --black-soft: #1C1710;
  --black-lighter: #261F15;
  --black-card: #201A12;
  --black-border: rgba(255, 239, 211, 0.09);
  --white: #FFF8ED;
  --off-white: #FFF1D7;
  --gray: #D7C4A8;
  --gray-light: #F0DFC4;
  --shadow-gold: 0 12px 32px rgba(244, 176, 74, 0.20);
  --shadow-gold-lg: 0 18px 48px rgba(244, 176, 74, 0.30);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.40);
  --surface-1: #14100A;
  --surface-2: #1C1710;
  --surface-3: #261F15;
  --surface-card: #201A12;
  --surface-border: rgba(255, 239, 211, 0.09);
  --text-main: #FFF8ED;
  --text-soft: #F0DFC4;
  --header-bg: rgba(20,16,10,0.88);
  --header-border: rgba(255,239,211,0.09);
  --hero-overlay: linear-gradient(to top, rgba(20,16,10,0.92) 0%, rgba(20,16,10,0.16) 60%);
}

body[data-theme='light'],
body[data-theme='ruby'],
body[data-theme='teal'],
body[data-theme='amber'] {
  color: var(--text-main);
  background: var(--surface-1);
}

body[data-theme='dark'] .header.scrolled,
body[data-theme='light'] .header.scrolled,
body[data-theme='ruby'] .header.scrolled,
body[data-theme='teal'] .header.scrolled,
body[data-theme='amber'] .header.scrolled {
  background: var(--header-bg);
  border-bottom-color: var(--header-border);
}

.hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 16%, rgba(228,31,75,0.16), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(51,169,164,0.14), transparent 24%),
    radial-gradient(circle at 54% 48%, rgba(244,176,74,0.08), transparent 22%);
}

.hero-bg-pattern {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(228,31,75,0.05) 59px, rgba(228,31,75,0.05) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(51,169,164,0.05) 59px, rgba(51,169,164,0.05) 60px);
}

.hero-glow-1 { background: var(--brand-ruby); opacity: 0.14; }
.hero-glow-2 { background: var(--brand-teal); opacity: 0.14; }
.marquee-section { background: linear-gradient(90deg, var(--gold) 0%, var(--brand-amber) 55%, var(--brand-yellow) 100%); }
.hero-badge,
.type-chip { backdrop-filter: blur(8px); }

.logo {
  gap: 14px;
}

.logo-image-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-dark);
  padding: 6px;
  overflow: hidden;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  display: block;
  font-size: 1.18rem;
}

.logo-text span {
  color: var(--gold);
}

.logo-sub {
  margin-top: 6px;
  letter-spacing: 4px;
  font-size: 0.62rem;
}

.footer .logo-image-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
}

.theme-picker {
  position: relative;
  margin-left: 18px;
}

.theme-toggle {
  width: auto;
  min-width: 52px;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  gap: 10px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.theme-toggle i {
  color: var(--gold);
  font-size: 1rem;
}

.theme-current-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.theme-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 250px;
  padding: 12px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--black-card) 88%, transparent);
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.28s var(--ease);
}

.theme-picker.open .theme-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-swatch {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.28s var(--ease);
}

.theme-swatch:hover,
.theme-swatch.active {
  border-color: var(--gold);
  background: rgba(255,255,255,0.04);
}

.theme-swatch strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.theme-swatch small {
  display: block;
  color: var(--gray-light);
  font-size: 0.72rem;
  margin-top: 2px;
}

.swatch-preview {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.swatch-dark { background: linear-gradient(135deg, #090A0D 0%, #171A22 48%, #E41F4B 48%, #33A9A4 100%); }
.swatch-light { background: linear-gradient(135deg, #FFFFFF 0%, #FFF4EE 48%, #E41F4B 48%, #F4B04A 100%); }
.swatch-ruby { background: linear-gradient(135deg, #150C11 0%, #21131B 50%, #E41F4B 50%, #F7E517 100%); }
.swatch-teal { background: linear-gradient(135deg, #081113 0%, #101B1F 50%, #33A9A4 50%, #F7E517 100%); }
.swatch-amber { background: linear-gradient(135deg, #14100A 0%, #201A12 50%, #F4B04A 50%, #F7E517 100%); }

.footer-social {
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social .social-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1rem;
  background: rgba(255,255,255,0.02);
  color: var(--gray-light);
}

.footer-social .social-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-social .facebook:hover { background: #1877F2; border-color: #1877F2; }
.footer-social .instagram:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4); border-color: transparent; }
.footer-social .whatsapp:hover { background: #25D366; border-color: #25D366; color: #071a0e; }
.footer-social .youtube:hover { background: #FF0000; border-color: #FF0000; }
.footer-social .linkedin:hover { background: #0A66C2; border-color: #0A66C2; }

.floating-contact-bar {
  right: 16px;
  padding: 10px;
  gap: 10px;
  border-radius: 26px;
  background: color-mix(in srgb, var(--black-card) 70%, transparent);
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.floating-action {
  min-width: 54px;
  width: 54px;
  height: 54px;
  padding: 0;
  justify-content: center;
  border-radius: 18px;
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--white);
}

.floating-action i {
  font-size: 1.05rem;
  width: 18px;
  text-align: center;
}

.floating-action:hover {
  min-width: 176px;
  width: auto;
  justify-content: flex-start;
  padding: 0 18px;
  color: #ffffff;
}

.floating-action.call:hover { background: #2563EB; border-color: #2563EB; }
.floating-action.whatsapp:hover { background: #25D366; border-color: #25D366; color: #071a0e; }
.floating-action.email:hover { background: #EF4444; border-color: #EF4444; }
.floating-action.instagram:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4); border-color: transparent; }
.floating-action.facebook:hover { background: #1877F2; border-color: #1877F2; }
.floating-action.youtube:hover { background: #FF0000; border-color: #FF0000; }
.floating-action.map:hover { background: var(--brand-teal); border-color: var(--brand-teal); }
.floating-action.quote:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

body[data-theme='light'] .floating-contact-bar,
body[data-theme='light'] .theme-menu {
  background: color-mix(in srgb, var(--black-card) 90%, transparent);
}

.form-success-panel,
.product-card,
.project-card,
.contact-item,
.contact-form,
.faq-item,
.why-feature,
.hero-card,
.stat-card {
  box-shadow: var(--shadow-dark);
}

body[data-theme='light'] .hero-bg-pattern {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(228,31,75,0.05) 59px, rgba(228,31,75,0.05) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(51,169,164,0.05) 59px, rgba(51,169,164,0.05) 60px);
}

@media (max-width: 1024px) {
  .theme-menu {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .logo-image-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }

  .theme-picker {
    margin-left: auto;
    margin-right: 8px;
  }

  .theme-toggle {
    padding: 0 12px;
    min-width: 46px;
  }

  .theme-current-label {
    display: none;
  }

  .theme-menu {
    width: min(86vw, 250px);
    right: 0;
  }

  .floating-contact-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: calc(100vw - 24px);
    bottom: 12px;
    top: auto;
    transform: none;
    padding: 8px;
    border-radius: 22px;
  }

  .floating-action,
  .floating-action:hover {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }

  .floating-action span {
    display: none;
  }
}


/* final brand detail upgrades */
.info-strip {
  padding: 18px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
  border-top: 1px solid rgba(17,17,17,0.06);
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.info-strip-grid {
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}
.info-card {
  background:#fff;
  border:1px solid rgba(17,17,17,0.08);
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 16px 40px rgba(17,17,17,0.06);
}
.info-card h3 {
  margin:0 0 10px;
  font-size:1rem;
}
.info-card p, .info-card a {
  color:var(--gray);
  font-size:0.96rem;
  line-height:1.7;
}
.info-badges {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.info-badge-pill {
  padding:8px 12px;
  border-radius:999px;
  background:#fff4dc;
  color:#5b4100;
  font-size:0.85rem;
  font-weight:700;
}
.linktree-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:11px 16px;
  border-radius:999px;
  background:#111111;
  color:#ffffff !important;
  text-decoration:none;
  font-weight:700;
}
.linktree-btn:hover { transform: translateY(-2px); }
.page-details { margin-top:-34px; position:relative; z-index:3; }
.map-frame {
  width:100%;
  min-height:380px;
  border:0;
  border-radius:28px;
  box-shadow:0 18px 46px rgba(17,17,17,0.10);
}
.contact-highlight-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:28px;
}
.contact-highlight {
  background:#fff;
  border:1px solid rgba(17,17,17,0.08);
  border-radius:20px;
  padding:18px;
  box-shadow:0 12px 34px rgba(17,17,17,0.06);
}
.contact-highlight h4 { margin:0 0 8px; font-size:1rem; }
.contact-highlight p, .contact-highlight a { margin:0; color:var(--gray); line-height:1.6; }
.footer-social-grid {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.footer-social-grid a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:#fff;
  color:#111;
  border:1px solid rgba(17,17,17,0.08);
  box-shadow:0 8px 22px rgba(17,17,17,0.06);
}
.footer-social-grid a:hover { transform: translateY(-2px); color:var(--gold); }
.business-points {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:20px;
}
.business-point {
  background:#fff;
  border:1px solid rgba(17,17,17,0.08);
  border-radius:18px;
  padding:16px;
}
.business-point strong { display:block; margin-bottom:8px; }
.business-point span { color:var(--gray); line-height:1.6; }
.why-visual-placeholder,
.project-placeholder {
  background:linear-gradient(180deg, #fff8f6 0%, #fff1eb 100%);
  color:rgba(17,17,17,0.35);
}
.form-success-panel.error {
  border-color: rgba(215,38,61,0.24);
  background:#fff4f5;
}
.form-success-panel.error .form-status-copy { color:#9f2231; }
@media (max-width: 992px) {
  .info-strip-grid,
  .contact-highlight-grid,
  .business-points { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .info-strip-grid,
  .contact-highlight-grid,
  .business-points { grid-template-columns:1fr; }
  .page-details { margin-top:0; }
  .map-frame { min-height:300px; }
}



/* ====== IMAGE GALLERY ENHANCEMENTS ====== */
.project-image {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.16);
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.project-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.36) 55%, rgba(0,0,0,0.08) 100%);
}

.project-overlay p {
  max-width: 36ch;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

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

.catalog-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,208,0,0.06));
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.catalog-copy {
  padding: 20px 20px 22px;
}

.catalog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,208,0,0.08);
  color: var(--gold);
  border: 1px solid rgba(255,208,0,0.18);
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-copy h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.catalog-copy p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-visual-media,
.why-visual-collage,
.why-collage-main,
.why-collage-side {
  width: 100%;
  height: 100%;
}

.why-visual-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-visual-collage {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
  padding: 12px;
}

.why-collage-main img,
.why-collage-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-collage-main {
  min-height: 100%;
}

.why-collage-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 10, 13, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: min(90vh, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}

.lightbox-caption {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: rgba(255,255,255,0.16);
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-visual-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .why-collage-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
}

@media (max-width: 640px) {
  .catalog-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    aspect-ratio: 4 / 5;
  }

  .catalog-copy {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}


/* ====== 2026 RESPONSIVE + REVIEWS + BRAND POLISH ====== */
.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(228,31,75,0), rgba(228,31,75,0.22), rgba(51,169,164,0.2), rgba(244,176,74,0));
  pointer-events: none;
}

.logo-image-wrap {
  background: linear-gradient(135deg, rgba(228,31,75,0.12), rgba(244,176,74,0.12) 52%, rgba(51,169,164,0.12));
  border: 1px solid rgba(47,49,53,0.08);
  overflow: hidden;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text span {
  background: linear-gradient(90deg, var(--brand-ruby) 0%, var(--brand-amber) 58%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold,
.section-tag,
.project-cat,
.catalog-tag,
.contact-badge,
.hero-product-chip:hover {
  background-image: linear-gradient(90deg, var(--brand-ruby) 0%, var(--brand-amber) 58%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  border: 1px solid rgba(228,31,75,0.14);
  background-color: rgba(255,255,255,0.74);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 30px rgba(25, 30, 40, 0.04);
}

.btn-gold,
.nav-cta,
.form-submit,
.floating-action.quote,
.review-source-btn:hover {
  background: linear-gradient(135deg, var(--brand-ruby) 0%, var(--brand-amber) 55%, var(--brand-teal) 100%);
  color: #ffffff;
  border: none;
}

.btn-gold:hover,
.nav-cta:hover,
.form-submit:hover,
.floating-action.quote:hover {
  box-shadow: 0 18px 48px rgba(228,31,75,0.18);
}

.hero-badge,
.hero-product-chip,
.contact-highlight,
.business-point,
.product-card,
.catalog-card,
.counter-item,
.review-source-card,
.review-card {
  box-shadow: 0 18px 46px rgba(21, 28, 36, 0.05);
}

.hero-glow-1 {
  background: radial-gradient(circle at center, rgba(228,31,75,0.28) 0%, rgba(228,31,75,0) 70%);
}

.hero-glow-2 {
  background: radial-gradient(circle at center, rgba(51,169,164,0.24) 0%, rgba(51,169,164,0) 70%);
}

.hero {
  overflow: hidden;
}

.hero-card-stack {
  perspective: 1300px;
}

.hero-card {
  transform-origin: center center;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -55% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,229,23,0.18), rgba(247,229,23,0));
  pointer-events: none;
}

.hero-card-icon {
  background: linear-gradient(135deg, rgba(228,31,75,0.14), rgba(244,176,74,0.16), rgba(51,169,164,0.16));
}

.hero-card-icon i {
  background: linear-gradient(135deg, var(--brand-ruby), var(--brand-amber), var(--brand-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee-section {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), inset 0 -1px 0 rgba(47,49,53,0.08);
}

.projects-grid {
  align-items: stretch;
}

.project-card {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,250,245,0.98) 100%);
}

.project-image {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(17,17,17,0.06) 100%);
}

.project-overlay {
  position: relative;
  inset: auto;
  opacity: 1;
  min-height: 185px;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,246,238,0.98) 100%);
  border-top: 1px solid rgba(47,49,53,0.08);
}

.project-overlay h3 {
  color: var(--text-main);
}

.project-overlay p {
  color: var(--gray-light);
  max-width: none;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

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

.footer-social-grid a:nth-child(1),
.floating-action.instagram { color: #C13584; border-color: rgba(193,53,132,0.22); }
.footer-social-grid a:nth-child(2),
.floating-action.facebook { color: #1877F2; border-color: rgba(24,119,242,0.18); }
.footer-social-grid a:nth-child(3),
.floating-action.youtube { color: #FF0000; border-color: rgba(255,0,0,0.18); }
.footer-social-grid a:nth-child(4),
.floating-action.linkedin { color: #0A66C2; border-color: rgba(10,102,194,0.18); }
.footer-social-grid a:nth-child(5),
.floating-action.x { color: #111111; border-color: rgba(17,17,17,0.18); }
.footer-social-grid a:nth-child(6) { color: #FF4500; border-color: rgba(255,69,0,0.18); }
.footer-social-grid a:nth-child(7) { color: #F57D00; border-color: rgba(245,125,0,0.18); }
.footer-social-grid a:nth-child(8) { color: #4285F4; border-color: rgba(66,133,244,0.18); }
.footer-social-grid a:nth-child(9) { color: var(--brand-teal); border-color: rgba(51,169,164,0.18); }
.floating-action.call { color: var(--brand-ruby); border-color: rgba(228,31,75,0.18); }
.floating-action.email { color: var(--brand-amber); border-color: rgba(244,176,74,0.22); }
.floating-action.map { color: var(--brand-teal); border-color: rgba(51,169,164,0.18); }

.floating-action:hover,
.footer-social-grid a:hover {
  background: linear-gradient(135deg, rgba(228,31,75,0.08), rgba(244,176,74,0.12), rgba(51,169,164,0.12));
}

.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.reviews-section::before {
  width: 260px;
  height: 260px;
  top: 80px;
  left: -80px;
  background: radial-gradient(circle, rgba(228,31,75,0.10), rgba(228,31,75,0));
}

.reviews-section::after {
  width: 280px;
  height: 280px;
  right: -100px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(51,169,164,0.12), rgba(51,169,164,0));
}

.reviews-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.review-source-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(47,49,53,0.08);
}

.review-source-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(228,31,75,0.22), rgba(244,176,74,0.24), rgba(51,169,164,0.22));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-source-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.review-source-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
}

.google-source .review-source-icon {
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.justdial-source .review-source-icon {
  background: linear-gradient(135deg, var(--brand-ruby), var(--brand-amber));
}

.review-source-card h3 {
  margin: 0 0 6px;
}

.review-source-card p {
  margin: 0;
  color: var(--gray-light);
  line-height: 1.7;
}

.review-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}

.review-score {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-ruby);
}

.review-score.numeric {
  font-size: 2.4rem;
  background: linear-gradient(90deg, var(--brand-ruby), var(--brand-amber), var(--brand-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-score.numeric span {
  font-size: 1rem;
}

.review-score-note {
  color: var(--gray-light);
  font-weight: 600;
}

.trend-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.trend-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,49,53,0.08);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-light);
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,249,244,1) 0%, rgba(255,249,244,0) 100%);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,249,244,1) 0%, rgba(255,249,244,0) 100%);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewsScroll 70s linear infinite;
  padding: 8px 2px 18px;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(360px, calc(100vw - 48px));
  min-height: 290px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(47,49,53,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-badge.google {
  color: #fff;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.review-badge.justdial {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-ruby), var(--brand-amber));
}

.review-stars {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-ruby);
}

.review-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.review-meta {
  margin: 0;
  color: var(--gray);
  font-size: 0.82rem;
}

.review-text {
  margin: 0;
  color: var(--gray-light);
  line-height: 1.72;
  flex: 1;
}

.owner-reply {
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(228,31,75,0.06), rgba(244,176,74,0.07), rgba(51,169,164,0.08));
  border: 1px solid rgba(47,49,53,0.06);
  color: var(--gray-light);
  line-height: 1.65;
  font-size: 0.86rem;
}

.review-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-desc,
  .hero-buttons,
  .hero-products {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-visual {
    display: block;
    width: 100%;
  }

  .hero-card-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .hero-card,
  .hero-card.hc-1,
  .hero-card.hc-2,
  .hero-card.hc-3 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .reviews-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 12px 0;
  }

  .logo {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-sub {
    letter-spacing: 2.4px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .project-overlay {
    min-height: 170px;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    width: min(88vw, 320px);
    padding: 92px 24px 24px;
    overflow-y: auto;
  }

  .header .container {
    gap: 14px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-card-stack {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    gap: 14px;
  }

  .hero-card-stack::-webkit-scrollbar {
    height: 6px;
  }

  .hero-card-stack::-webkit-scrollbar-thumb {
    background: rgba(47,49,53,0.16);
    border-radius: 999px;
  }

  .hero-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

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

  .project-card {
    border-radius: 22px;
  }

  .project-image {
    aspect-ratio: 16 / 12;
  }

  .project-overlay {
    min-height: auto;
  }

  .reviews-marquee {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    display: none;
  }

  .reviews-track {
    animation: none;
    padding-bottom: 8px;
  }

  .review-card {
    width: min(320px, 82vw);
    min-height: auto;
  }

  .review-actions {
    align-items: stretch;
  }

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

@media (max-width: 520px) {
  .logo-copy {
    min-width: 0;
  }

  .logo-text {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 1.8px;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 7px 12px;
  }

  .hero-badge,
  .hero-product-chip {
    font-size: 0.76rem;
  }

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

  .review-source-card,
  .review-card {
    padding: 18px;
    border-radius: 20px;
  }

  .review-source-top {
    flex-direction: column;
  }

  .review-score.numeric {
    font-size: 2rem;
  }

  .floating-contact-bar {
    gap: 8px;
  }
}

/* ===== Final polish patch: branding, hero, reviews, floating bar, gallery ===== */
.header .logo,
.footer .logo {
  align-items: center;
}

.logo-image-wrap {
  width: 92px;
  height: 62px;
  padding: 7px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,247,240,0.98) 100%);
  border: 1px solid rgba(228,31,75,0.12);
  box-shadow: 0 10px 24px rgba(17,17,17,0.10);
}

.logo-image {
  object-fit: contain;
  object-position: center;
  transform: scale(1.06);
}

.logo-copy {
  gap: 4px;
}

.logo-text {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-sub {
  margin-top: 0;
  font-size: 0.64rem;
  letter-spacing: 3.2px;
  color: var(--gray-light);
}

.footer .logo-image-wrap {
  width: 96px;
  height: 64px;
}

.hero-visual {
  width: 100%;
}

.hero-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  aspect-ratio: auto;
  margin-left: auto;
}

.hero-card,
.hero-card.hc-1,
.hero-card.hc-2,
.hero-card.hc-3,
.hero-card.hc-4 {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  height: 262px;
  transform: none;
  background: linear-gradient(180deg, rgba(17,17,17,0.86) 0%, rgba(17,17,17,0.42) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 48px rgba(17,17,17,0.20);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(17,17,17,0.10) 28%, rgba(17,17,17,0.36) 100%);
  pointer-events: none;
}

.hero-card-media img {
  filter: brightness(0.92) saturate(1.02);
}

.hero-card:hover {
  transform: translateY(-10px);
}

.hero-card.hc-1 { animation: cardFloat 5.8s ease-in-out infinite; }
.hero-card.hc-2 { animation: cardFloat 6.4s ease-in-out 0.4s infinite; }
.hero-card.hc-3 { animation: cardFloat 6.0s ease-in-out 0.8s infinite; }
.hero-card.hc-4 { animation: cardFloat 6.8s ease-in-out 1.1s infinite; }

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

.hero-card:hover,
.hero-card:focus-within {
  animation-play-state: paused;
}

.hero-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(17,17,17,0.48);
}

.hero-card-label {
  font-size: 1.16rem;
}

.hero-card-sub {
  font-size: 0.74rem;
  letter-spacing: 1.8px;
}

.review-source-top {
  align-items: center;
}

.review-source-icon {
  width: 132px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  display: block;
}

.review-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(17,17,17,0.08));
}

.review-badge {
  gap: 8px;
  padding-inline: 12px;
}

.review-badge i {
  font-size: 0.9rem;
}

.jd-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.justdial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 18px;
}

.justdial-highlights span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(228,31,75,0.12);
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.review-card,
.review-source-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.review-card:hover,
.review-source-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(17,17,17,0.12);
}

.floating-contact-bar {
  overflow: visible;
  gap: 10px;
}

.floating-action {
  min-width: 58px;
  width: 58px;
  gap: 10px;
}

.floating-action span {
  font-size: 0.88rem;
  font-weight: 700;
}

.floating-action:hover {
  min-width: 198px;
  width: auto;
  padding: 0 18px;
}

.floating-action:hover span {
  max-width: 130px;
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
}

.project-image {
  aspect-ratio: 16 / 11;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-overlay {
  min-height: 168px;
}

.project-cat {
  background: linear-gradient(90deg, rgba(228,31,75,0.10), rgba(244,176,74,0.16));
  color: var(--brand-ruby);
  border: 1px solid rgba(228,31,75,0.12);
}

@media (max-width: 1180px) {
  .hero-card-stack {
    max-width: 100%;
  }

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

@media (max-width: 900px) {
  .logo-image-wrap {
    width: 78px;
    height: 54px;
    padding: 6px 9px;
    border-radius: 18px;
  }

  .logo-text {
    font-size: 0.98rem;
  }

  .logo-sub {
    font-size: 0.56rem;
    letter-spacing: 2.2px;
  }

  .review-source-icon {
    width: 118px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .hero-card-stack {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
  }

  .hero-card,
  .hero-card.hc-1,
  .hero-card.hc-2,
  .hero-card.hc-3,
  .hero-card.hc-4 {
    min-width: 280px;
    height: 248px;
    scroll-snap-align: start;
  }

  .floating-contact-bar {
    max-width: calc(100vw - 20px);
  }

  .project-overlay {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .logo {
    max-width: calc(100% - 54px);
  }

  .logo-image-wrap {
    width: 68px;
    height: 48px;
    border-radius: 16px;
  }

  .logo-text {
    font-size: 0.88rem;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 1.6px;
  }

  .review-source-top {
    align-items: flex-start;
  }

  .review-source-icon {
    width: 108px;
    height: 38px;
  }

  .justdial-highlights span {
    font-size: 0.74rem;
    padding: 8px 11px;
  }
}


/* ===== 2026-04 UI and responsive fixes ===== */
.hero {
  padding: 140px 0 84px;
  min-height: 100svh;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  gap: 12px;
  padding: 10px 18px;
  max-width: 100%;
  flex-wrap: nowrap;
}

.hero-badge-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
}

.hero-badge span {
  display: block;
  line-height: 1.2;
}

.why-visual {
  min-height: 420px;
  align-items: stretch;
  justify-content: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #fff6f2 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 50px rgba(21, 28, 36, 0.06);
}

.why-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 36px 122px;
  text-align: center;
  color: #5f5966;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,241,235,0.98));
}

.about-visual-card {
  max-width: 560px;
}

.about-visual-eyebrow {
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--brand-ruby);
}

.about-visual-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: #2f3135;
}

.about-visual-card p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.8;
  color: #5f5966;
}

.why-badge {
  background: linear-gradient(135deg, var(--brand-ruby) 0%, var(--brand-amber) 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(228, 31, 75, 0.22);
}

.why-badge h3,
.why-badge p {
  color: #ffffff;
}

.contact-item p,
.contact-highlight p,
.footer-contact-item span:last-child {
  overflow-wrap: anywhere;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%23666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 46px;
}

.floating-contact-bar {
  gap: 10px;
}

.floating-action {
  min-width: 56px;
  width: 56px;
}

.floating-action.whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.24);
}

.floating-action.google {
  color: #4285F4;
  border-color: rgba(66, 133, 244, 0.18);
}

.floating-action.google:hover {
  background: #4285F4;
  border-color: #4285F4;
}

@media (max-width: 900px) {
  .hero {
    padding: 122px 0 72px;
    min-height: auto;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-badge,
  .hero-buttons,
  .hero-products {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .hero-visual {
    display: none !important;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .hero-desc {
    max-width: 100%;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .why-visual {
    min-height: unset;
  }

  .why-visual-placeholder {
    padding: 34px 24px 34px;
  }

  .why-badge {
    position: static;
    margin: -6px auto 0;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .nav-links {
    width: min(90vw, 320px);
  }

  .hero-badge {
    padding: 9px 14px;
  }

  .hero-badge span {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.9rem);
    line-height: 1.08;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-products {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-product-chip {
    padding: 10px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-item {
    padding: 14px;
  }

  .floating-contact-bar {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 10px 12px;
    border-radius: 999px;
    max-width: calc(100vw - 20px);
    overflow-x: auto;
  }

  .floating-action,
  .floating-action:hover {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-action span {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .logo-mark.logo-image-wrap {
    width: 64px;
    height: 46px;
    padding: 5px 8px;
  }

  .logo-text {
    font-size: 0.84rem;
  }

  .logo-sub {
    font-size: 0.48rem;
    letter-spacing: 1.4px;
  }

  .hero {
    padding-top: 112px;
  }

  .about-visual-card h3 {
    font-size: 1.5rem;
  }

  .about-visual-card p {
    font-size: 0.94rem;
  }

  .contact-form {
    padding: 22px 16px;
    border-radius: 20px;
  }
}

/* ===== Floating bar final cleanup: icons only, no expand animation ===== */
.floating-contact-bar {
  gap: 10px;
}

.floating-action,
.floating-action:hover,
.floating-action:focus-visible {
  min-width: 50px !important;
  width: 50px !important;
  height: 50px;
  padding: 0 !important;
  justify-content: center !important;
  overflow: hidden;
}

.floating-action {
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.floating-action span,
.floating-action:hover span,
.floating-action:focus-visible span {
  display: none !important;
  max-width: 0 !important;
  opacity: 0 !important;
}

.floating-action i {
  width: auto;
  min-width: 0;
  font-size: 1.05rem;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(17,17,17,0.14);
}

.floating-action.call {
  color: #e11d48;
  border-color: rgba(225,29,72,0.18);
}

.floating-action.whatsapp {
  color: #25D366;
  border-color: rgba(37,211,102,0.24);
}

.floating-action.quote {
  color: #f59e0b;
  border-color: rgba(245,158,11,0.24);
}

.floating-action.quote i {
  font-size: 1.16rem;
}

.floating-action.instagram {
  color: #C13584;
  border-color: rgba(193,53,132,0.22);
}

.floating-action.facebook {
  color: #1877F2;
  border-color: rgba(24,119,242,0.18);
}

.floating-action.google {
  color: #4285F4;
  border-color: rgba(66,133,244,0.20);
}

.floating-action.call:hover,
.floating-action.call:focus-visible {
  background: #e11d48;
  border-color: #e11d48;
  color: #ffffff;
}

.floating-action.whatsapp:hover,
.floating-action.whatsapp:focus-visible {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.floating-action.quote:hover,
.floating-action.quote:focus-visible {
  background: linear-gradient(135deg, #f97316, #facc15);
  border-color: transparent;
  color: #ffffff;
}

.floating-action.instagram:hover,
.floating-action.instagram:focus-visible {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: transparent;
  color: #ffffff;
}

.floating-action.facebook:hover,
.floating-action.facebook:focus-visible {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}

.floating-action.google:hover,
.floating-action.google:focus-visible {
  background: #4285F4;
  border-color: #4285F4;
  color: #ffffff;
}

@media (max-width: 767px) {
  .floating-contact-bar {
    gap: 8px;
    padding: 8px;
  }

  .floating-action,
  .floating-action:hover,
  .floating-action:focus-visible {
    min-width: 46px !important;
    width: 46px !important;
    height: 46px;
  }
}


/* ====== HOME SHOWCASE REVAMP ====== */
.home-showcase-section {
  position: relative;
}

.interior-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-story,
.showcase-card,
.product-overview-band,
.product-feature-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 20px 48px rgba(21, 28, 36, 0.06);
}

.showcase-story {
  border-radius: 30px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.showcase-story::before,
.product-overview-band::before {
  content: '';
  position: absolute;
  inset: auto -60px -70px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(228,31,75,0.12) 0%, rgba(228,31,75,0) 72%);
  pointer-events: none;
}

.showcase-story::after,
.product-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(228,31,75,0.02) 45%, rgba(51,169,164,0.03));
  pointer-events: none;
}

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,245,244,0.92);
  border: 1px solid rgba(228,31,75,0.12);
  color: #2f3135;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.showcase-eyebrow i,
.contact-highlight-icon,
.showcase-icon,
.product-feature-icon {
  background: linear-gradient(135deg, var(--brand-ruby) 0%, var(--brand-amber) 55%, var(--brand-teal) 100%);
  color: #fff;
}

.showcase-story-title {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.showcase-story-text {
  color: #515764;
  max-width: 60ch;
}

.showcase-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.showcase-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.showcase-list li strong {
  display: block;
  margin-bottom: 3px;
  color: #202530;
  font-size: 0.98rem;
}

.showcase-list li small {
  display: block;
  color: #626a77;
  font-size: 0.88rem;
  line-height: 1.6;
}

.showcase-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(228,31,75,0.14), rgba(244,176,74,0.14), rgba(51,169,164,0.14));
  color: var(--brand-ruby);
  margin-top: 2px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.showcase-stat {
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid rgba(17,17,17,0.06);
  background: linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
}

.showcase-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #202530;
  margin-bottom: 3px;
}

.showcase-stat span {
  color: #616875;
  font-size: 0.84rem;
  line-height: 1.4;
}

.showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  border-radius: 26px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.showcase-card:hover,
.product-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(21, 28, 36, 0.09);
  border-color: rgba(228,31,75,0.14);
}

.showcase-card h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #202530;
}

.showcase-card p {
  color: #5e6673;
  line-height: 1.7;
  font-size: 0.94rem;
}

.showcase-icon,
.contact-highlight-icon,
.product-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(228,31,75,0.14);
  margin-bottom: 16px;
}

.showcase-icon i,
.contact-highlight-icon i,
.product-feature-icon i {
  font-size: 1.1rem;
}

.showcase-chips,
.product-feature-tags,
.product-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-chips {
  margin-top: 16px;
}

.showcase-chip,
.product-feature-tags span,
.product-overview-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff9ed 0%, #fff 100%);
  border: 1px solid rgba(244,176,74,0.22);
  color: #8d3952;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.showcase-contact-grid {
  margin-top: 26px;
}

.showcase-contact-grid .contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 22px;
  padding: 20px;
}

.showcase-contact-grid .contact-highlight h4 {
  color: #202530;
}

.showcase-contact-grid .contact-highlight p,
.showcase-contact-grid .contact-highlight a {
  color: #5e6673;
}

.showcase-contact-grid .contact-highlight-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

/* ====== PRODUCT PAGE BEAUTIFICATION ====== */
.product-overview-band {
  position: relative;
  border-radius: 28px;
  padding: 22px 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.product-overview-band strong {
  display: block;
  margin-bottom: 6px;
  color: #202530;
  font-size: 1.08rem;
}

.product-overview-band p {
  color: #5e6673;
  max-width: 58ch;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-feature-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.product-feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,20,28,0.28) 0%, rgba(16,20,28,0.02) 48%, rgba(16,20,28,0.08) 100%);
}

.product-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.product-feature-card:hover .product-feature-media img {
  transform: scale(1.07);
}

.product-feature-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,17,17,0.08);
  color: #313744;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-feature-icon {
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.product-feature-copy {
  padding: 24px 24px 26px;
  position: relative;
  z-index: 1;
}

.product-feature-copy h3 {
  color: #202530;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.product-feature-copy p {
  color: #5e6673;
  line-height: 1.75;
}

.product-feature-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}

.product-feature-highlights li {
  padding: 11px 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8f6 0%, #fff 100%);
  border: 1px solid rgba(228,31,75,0.08);
  color: #414854;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-feature-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.product-feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-ruby) 0%, var(--brand-amber) 55%, var(--brand-teal) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 30px rgba(228,31,75,0.14);
}

.product-feature-link:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .interior-showcase,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-overview-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .showcase-story,
  .showcase-card,
  .product-feature-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .showcase-grid,
  .showcase-stats,
  .product-feature-highlights {
    grid-template-columns: 1fr;
  }

  .showcase-story {
    padding: 24px;
    border-radius: 24px;
  }

  .showcase-card,
  .product-feature-card,
  .product-overview-band {
    border-radius: 24px;
  }

  .showcase-story-title {
    font-size: 1.7rem;
  }

  .showcase-actions,
  .product-feature-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-feature-link {
    width: 100%;
  }
}


/* ====== PRODUCT FAMILY DETAILS ====== */
.product-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-family-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,250,244,0.98) 100%);
  border: 1px solid rgba(228,31,75,0.08);
  box-shadow: 0 18px 42px rgba(21, 28, 36, 0.05);
}

.product-family-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.product-family-head h3 {
  margin-bottom: 5px;
  color: #202530;
}

.product-family-head p {
  color: #666f7b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.product-family-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(228,31,75,0.12) 0%, rgba(244,176,74,0.15) 100%);
  color: #e41f4b;
  box-shadow: 0 14px 28px rgba(228,31,75,0.12);
}

.product-family-icon i {
  font-size: 1.2rem;
}

.product-family-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-family-list li {
  position: relative;
  padding-left: 18px;
  color: #48515e;
  line-height: 1.65;
}

.product-family-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e41f4b 0%, #f4b04a 100%);
  box-shadow: 0 0 0 4px rgba(228,31,75,0.08);
}

@media (max-width: 991px) {
  .product-family-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-family-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .product-family-head {
    gap: 14px;
  }

  .product-family-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}


/* ===== v7 motion + performance + SEO polish ===== */
html { text-rendering: optimizeLegibility; }
img { image-rendering: auto; }
.section,
.footer,
.product-family-section,
.project-grid,
.faq-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1200;
  background: linear-gradient(90deg, var(--brand-ruby) 0%, var(--brand-amber) 52%, var(--brand-teal) 100%);
  box-shadow: 0 6px 18px rgba(228,31,75,0.22);
  pointer-events: none;
}

.reveal,
.reveal-auto {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
  will-change: transform, opacity;
  filter: saturate(0.96);
}

.reveal.visible,
.reveal-auto.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: saturate(1);
}

.btn,
.hero-card,
.product-feature-card,
.product-family-card,
.project-card,
.contact-item,
.why-feature,
.counter-item,
.filter-btn,
.floating-action,
.showcase-story,
.showcase-card,
.showcase-info-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn { box-shadow: 0 10px 28px rgba(20, 29, 35, 0.06); }

.nav-cta,
.product-feature-link {
  background-size: 180% 180%;
  animation: gradientPulse 8s ease infinite;
}

@keyframes gradientPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before,
.page-hero::before,
.cta-banner::before {
  animation: slowGlow 18s linear infinite alternate;
}

@keyframes slowGlow {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(1.2%, -0.8%, 0) scale(1.04); }
}

.hero-content h1,
.showcase-story-title,
.section-header h2,
.page-hero h1 { text-wrap: balance; }

.hero-desc,
.section-header p,
.showcase-story-text,
.product-feature-copy p,
.product-family-head p,
.contact-item p,
.why-feature p { text-wrap: pretty; }

.hero-card,
.product-feature-card,
.product-family-card,
.project-card,
.contact-item,
.why-feature,
.counter-item,
.showcase-story,
.showcase-card,
.showcase-info-card {
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.38s var(--ease), background 0.38s var(--ease);
}

.hero-card::before,
.product-feature-card::before,
.product-family-card::before,
.project-card::before,
.contact-item::before,
.why-feature::before,
.showcase-story::before,
.showcase-card::before,
.showcase-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(244,176,74,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.38s var(--ease);
  pointer-events: none;
}

.hero-card:hover,
.product-feature-card:hover,
.product-family-card:hover,
.project-card:hover,
.contact-item:hover,
.why-feature:hover,
.counter-item:hover,
.showcase-story:hover,
.showcase-card:hover,
.showcase-info-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 22px 48px rgba(17,17,17,0.08);
}

.hero-card:hover::before,
.product-feature-card:hover::before,
.product-family-card:hover::before,
.project-card:hover::before,
.contact-item:hover::before,
.why-feature:hover::before,
.showcase-story:hover::before,
.showcase-card:hover::before,
.showcase-info-card:hover::before { opacity: 1; }

.hero-product-chip,
.product-feature-tags span,
.product-overview-tags span,
.filter-btn,
.product-family-list li {
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.hero-product-chip:hover,
.product-feature-tags span:hover,
.product-overview-tags span:hover,
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(228,31,75,0.08);
}

.project-image img,
.hero-card-media img,
.product-feature-media img {
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}

.project-card:hover .project-image img,
.product-feature-card:hover .product-feature-media img,
.hero-card:hover .hero-card-media img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.header,
.nav-links.active,
.floating-contact-bar { backdrop-filter: blur(22px); }
.floating-action { box-shadow: 0 10px 24px rgba(17,17,17,0.06); }
.section-header,
.hero-content,
.page-hero .container,
.contact-grid,
.product-hero-grid,
.product-family-grid,
.project-grid,
.counter-grid { isolation: isolate; }

.product-feature-card:nth-child(2),
.product-family-card:nth-child(2),
.project-card:nth-child(2),
.contact-grid > *:nth-child(2) { transition-delay: 0.06s; }
.product-feature-card:nth-child(3),
.product-family-card:nth-child(3),
.project-card:nth-child(3),
.contact-grid > *:nth-child(3) { transition-delay: 0.12s; }
.product-feature-card:nth-child(4),
.product-family-card:nth-child(4),
.project-card:nth-child(4),
.contact-grid > *:nth-child(4) { transition-delay: 0.18s; }

img[loading='lazy'] { contain: paint; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress,
  .hero-glow,
  .hero-card.hc-1,
  .hero-card.hc-2,
  .hero-card.hc-3,
  .hero-card.hc-4,
  .reviews-track,
  .marquee-track { animation: none !important; }
}

@media (max-width: 768px) {
  .hero-card:hover,
  .product-feature-card:hover,
  .product-family-card:hover,
  .project-card:hover,
  .contact-item:hover,
  .why-feature:hover,
  .counter-item:hover,
  .showcase-story:hover,
  .showcase-card:hover,
  .showcase-info-card:hover { transform: translate3d(0, -4px, 0); }
  .scroll-progress { height: 2px; }
}


/* ===== v8 menu motion + back to top ===== */
.header {
  will-change: transform, box-shadow, background-color;
  transform: translate3d(0, 0, 0);
}

.header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(228,31,75,0) 0%, rgba(228,31,75,0.55) 18%, rgba(244,176,74,0.65) 52%, rgba(51,169,164,0.55) 84%, rgba(51,169,164,0) 100%);
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.header.scrolled::before {
  opacity: 1;
}

.header.scrolling-up {
  animation: headerFloatIn 0.42s var(--ease) both;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.header.scrolling-down {
  transform: translate3d(0, -8px, 0);
}

.header.scrolled .logo-image-wrap,
.header.scrolled .logo-mark {
  transform: translateY(-1px) scale(0.98);
}

.header.scrolled .nav-links a {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  transform: translateY(-2px);
}

.header.scrolled .nav-links a::after {
  box-shadow: 0 6px 14px rgba(228, 31, 75, 0.16);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(228, 31, 75, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(228,31,75,0.98) 0%, rgba(244,176,74,0.98) 54%, rgba(51,169,164,0.98) 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.88);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease), box-shadow 0.28s var(--ease);
  z-index: 1105;
}

.back-to-top i {
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translate3d(0, -3px, 0) scale(1.03);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.22);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(244,176,74,0.28);
  outline-offset: 2px;
}

body.has-floating-actions .back-to-top {
  bottom: 106px;
}

@keyframes headerFloatIn {
  0% {
    transform: translate3d(0, -16px, 0);
    opacity: 0.92;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .header.scrolling-down {
    transform: translate3d(0, -4px, 0);
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  body.has-floating-actions .back-to-top {
    bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header.scrolling-up,
  .back-to-top,
  .back-to-top:hover,
  .back-to-top:focus-visible {
    animation: none !important;
    transform: none !important;
  }
}


/* ===== v9 targeted polish fixes ===== */
:root { --scroll-progress: 0%; }

.header-scroll-ring {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px) scale(0.9);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.scrolled .header-scroll-ring {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.header-scroll-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--brand-ruby) 0 var(--scroll-progress), rgba(17, 17, 17, 0.12) var(--scroll-progress) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
}

.header-scroll-ring::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 10px 22px rgba(17,17,17,0.09);
}

.header-scroll-ring-core {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ruby);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,244,244,0.96));
}

.header-scroll-ring i { font-size: 0.9rem; }

.header-scroll-ring:hover,
.header-scroll-ring:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(17,17,17,0.12);
}

.floating-action.email {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

.floating-action.email:hover,
.floating-action.email:focus-visible {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}

body.has-floating-actions .back-to-top {
  bottom: 126px;
}

.highlight-word {
  color: #202530;
  font-weight: 800;
}

.review-inline-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  margin-right: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(228,31,75,0.12), rgba(244,176,74,0.16));
  color: #9f2445;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.review-score-note strong {
  color: #202530;
}

.about-google-reviews-section .section-header p {
  max-width: 70ch;
  margin-inline: auto;
}

.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-google-reviews-section .review-card {
  min-height: 100%;
}

.about-google-reviews-section .review-actions {
  margin-top: 22px;
  justify-content: center;
}

.contact-highlight-grid-rich {
  margin-top: 8px;
}

.contact-highlight-rich {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefe 0%, #fff8f6 100%);
}

.contact-highlight-rich .contact-highlight-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-highlight-rich h4 {
  margin-bottom: 6px;
  color: #202530;
}

.contact-highlight-rich small {
  display: block;
  margin-top: 8px;
  color: #6a7280;
  line-height: 1.55;
}

.contact-highlight-rich p,
.contact-highlight-rich a {
  color: #515764;
}

.contact-highlight-rich a:hover {
  color: var(--brand-ruby);
}

@media (max-width: 768px) {
  .header-scroll-ring {
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: 12px;
  }

  .header-scroll-ring-core {
    width: 26px;
    height: 26px;
  }

  body.has-floating-actions .back-to-top {
    bottom: 106px;
  }

  .about-reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-highlight-rich {
    padding: 18px;
    border-radius: 20px;
  }
}


/* ===== v10 menu-progress merge + remove extra back-to-top ===== */
.header-scroll-ring,
.back-to-top {
  display: none !important;
}

@media (max-width: 768px) {
  .hamburger {
    width: 46px;
    height: 46px;
    padding: 0;
    gap: 5px;
    border-radius: 50%;
    position: relative;
    justify-content: center;
    align-items: center;
    isolation: isolate;
  }

  .hamburger.progress-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from -90deg, var(--brand-ruby) 0 var(--scroll-progress), rgba(47,49,53,0.14) var(--scroll-progress) 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    opacity: 1;
  }

  .hamburger.progress-active::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 10px 24px rgba(17,17,17,0.1);
    z-index: -1;
  }

  .hamburger span {
    position: relative;
    z-index: 1;
    width: 24px;
    background: var(--brand-ruby);
  }

  .hamburger.active::after {
    background: rgba(255,255,255,0.99);
  }
}


/* ===== live pre-website intro ===== */
html.intro-enabled,
html.intro-enabled body {
  overflow: hidden;
  height: 100%;
}

body.intro-active {
  overflow: hidden;
  height: 100vh;
}

html.intro-disabled .site-intro {
  display: none !important;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
  transition: opacity 0.85s var(--ease), visibility 0.85s var(--ease), transform 0.85s var(--ease);
}

.site-intro.is-exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

.site-intro__media-wrap,
.site-intro__video,
.site-intro__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-intro__video {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.site-intro__overlay {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 200, 96, 0.20), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.76) 100%);
}

.site-intro__brand {
  position: relative;
  z-index: 2;
  width: min(92vw, 820px);
  padding: clamp(16px, 2.5vw, 28px);
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  text-align: center;
  animation: introBrandReveal 1.1s var(--ease) both;
}

.site-intro__brand-badge {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: clamp(0.7rem, 0.25vw + 0.72rem, 0.86rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.site-intro__logo-wrap {
  width: clamp(110px, 12vw, 180px);
  aspect-ratio: 1;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.site-intro__logo {
  width: 74%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.site-intro__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.35vw + 0.9rem, 3.75rem);
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.site-intro__text {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 0.75vw + 0.86rem, 1.34rem);
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-intro__skip {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 3;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 7, 7, 0.35);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-intro__skip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.site-intro__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(0px, env(safe-area-inset-bottom));
  z-index: 3;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.site-intro__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #f3b146 0%, #e61d48 55%, #34b6b4 100%);
  animation: introProgress 8.6s linear forwards;
}

@keyframes introProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes introBrandReveal {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 991px) {
  .site-intro__brand {
    width: min(94vw, 680px);
  }

  .site-intro__text {
    max-width: 90%;
  }
}

@media (max-width: 640px) {
  .site-intro__skip {
    padding: 10px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .site-intro__brand {
    width: min(94vw, 560px);
    padding: 16px;
    gap: 12px;
  }

  .site-intro__logo-wrap {
    border-radius: 22px;
  }

  .site-intro__text {
    max-width: 100%;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .site-intro__brand {
    transform: scale(0.84);
    gap: 8px;
  }

  .site-intro__brand-badge {
    padding: 7px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro__brand,
  .site-intro__progress span {
    animation: none !important;
  }
}
