/* ============================================================
   NEW BANUMATHI JEWELLERY — STYLE.CSS
   Premium Luxury Jewellery Website
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #e8cb5a;
  --gold-dark: #a8891f;
  --gold-pale: rgba(212, 175, 55, 0.12);
  --black: #1A1A1A;
  --black-soft: #222222;
  --ivory: #F8F6F0;
  --ivory-dark: #f0ede3;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --border: rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: var(--radius-full); }

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding: 0 28px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before { right: 0; }
.section-tag::after { left: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--transition);
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all var(--transition);
}
.header.scrolled::before {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 36px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition);
    border-left: 1px solid rgba(212,175,55,0.15);
  }
  .nav.open { right: 0; }
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.slider { width: 100%; height: 100%; position: relative; }

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.55);
}
.slide.active .slide-bg-img {
  transform: scale(1);
}

/* Gradient overlays per slide theme */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-overlay-gold {
  background: linear-gradient(
    105deg,
    rgba(20,10,2,0.72) 0%,
    rgba(26,26,26,0.45) 55%,
    rgba(40,28,8,0.25) 100%
  );
}
.slide-overlay-bridal {
  background: linear-gradient(
    105deg,
    rgba(18,4,10,0.75) 0%,
    rgba(26,26,26,0.45) 55%,
    rgba(30,12,20,0.25) 100%
  );
}
.slide-overlay-diamond {
  background: linear-gradient(
    105deg,
    rgba(4,8,16,0.78) 0%,
    rgba(26,26,26,0.45) 55%,
    rgba(8,14,26,0.25) 100%
  );
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 5;
  padding: 0 10% 0 8%;
  max-width: 700px;
}
.slide-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
}
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
}
.slide-heading em {
  font-style: italic;
  color: var(--gold);
}
.slide-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 4px 30px rgba(212,175,55,0.3);
}
.btn-hero:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(212,175,55,0.4);
}

/* Decorative elements */
.slide-deco { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.deco-ring {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}
.deco-ring-1 {
  width: 500px; height: 500px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
}
.deco-ring-2 {
  width: 350px; height: 350px;
  right: 25px; top: 50%;
  transform: translateY(-50%);
  animation-direction: reverse;
  animation-duration: 14s;
}
.deco-diamond {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
  opacity: 0.6;
  animation: diamondFloat 4s ease-in-out infinite;
}
@keyframes ringRotate { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes diamondFloat { 0%,100%{transform:translateY(-50%) rotate(45deg);} 50%{transform:translateY(calc(-50% - 15px)) rotate(45deg);} }

/* Reveal animation for slide content */
.slide.active .reveal-up {
  animation: revealUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.slide.active .reveal-up:nth-child(1) { animation-delay: 0.2s; }
.slide.active .reveal-up:nth-child(2) { animation-delay: 0.35s; }
.slide.active .reveal-up:nth-child(3) { animation-delay: 0.5s; }
.slide.active .reveal-up:nth-child(4) { animation-delay: 0.65s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 32px; }
.slider-next { right: 32px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 28px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--gold); width: 48px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.7), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100%{opacity:1;transform:scaleY(1);} 50%{opacity:0.4;transform:scaleY(0.5);} }

/* ============================================================
   CATEGORIES
============================================================ */
.categories { background: var(--white); }

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

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--black);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* Image container */
.cat-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
  filter: brightness(0.75) saturate(0.9);
}
.cat-card:hover .cat-img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(0.7);
}
.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,2,0.85) 0%, rgba(10,6,2,0.25) 55%, transparent 100%);
}

/* Text over image */
.cat-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 2;
  transform: translateY(0);
  transition: all var(--transition);
}
.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.cat-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.45s ease;
}
.cat-card:hover .cat-body p {
  max-height: 60px;
  opacity: 1;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.cat-card:hover .cat-link { gap: 14px; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame { position: relative; }
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.badge-inner { text-align: center; }
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(26,26,26,0.75);
}

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-style: italic;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.pillar:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.pillar-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCTS
============================================================ */
.products { background: var(--white); }

/* Search & Filter */
.product-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: space-between;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--ivory);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
}
.search-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.pill:hover { border-color: var(--gold); color: var(--gold); }
.pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}
.product-card.hidden { display: none; }

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.92);
  display: block;
}
.product-card:hover .product-img img {
  transform: scale(1.07);
  filter: brightness(0.78);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(212,175,55,0.9);
  color: var(--black);
}
.badge-diamond { background: rgba(160,196,255,0.9); color: #0d0a14; }
.badge-silver { background: rgba(200,200,200,0.9); color: #141414; }
.badge-bridal { background: rgba(255,180,200,0.9); color: #200a14; }
.badge-trad { background: rgba(134,216,160,0.9); color: #0a1a14; }

.product-info {
  padding: 22px 20px 20px;
}
.product-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  margin: 6px 0 8px;
  line-height: 1.3;
}
.product-info p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-view:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.no-results i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us { background: var(--ivory); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.why-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.35);
}
.why-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1) rotate(-5deg);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   STATISTICS
============================================================ */
.stats {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2a2000 50%, #1A1A1A 100%);
}
.stats-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent, transparent 40px,
    rgba(212,175,55,0.03) 40px, rgba(212,175,55,0.03) 41px
  );
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.stat-item.animated { opacity: 1; transform: translateY(0); }
.stat-icon {
  font-size: 2rem;
  color: rgba(212,175,55,0.5);
  margin-bottom: 14px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 2rem; color: var(--gold); font-weight: 300; }
.stat-item p {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   GALLERY
============================================================ */
.gallery { background: var(--white); }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.masonry-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}
.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.85) saturate(0.9);
}
.masonry-item:hover img,
.masonry-item:focus img {
  transform: scale(1.08);
  filter: brightness(0.6) saturate(0.7);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay,
.masonry-item:focus .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 40px 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-img-wrap {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-full-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: block;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--ivory); }

.testi-slider-wrap { overflow: hidden; position: relative; }
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 3px; }
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  padding-top: 16px;
}
.testi-card blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: var(--font-display);
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--black); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.testi-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.info-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.info-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.info-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.info-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.info-card p, .info-card a {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
}
.info-card a:hover { color: var(--gold); }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  margin-top: 8px;
}
.map-inner {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1A1A1A, #2d1f0a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-size: 2.5rem;
  padding: 24px;
}
.map-inner i { color: var(--gold); opacity: 0.7; }
.map-inner span {
  font-size: 0.85rem;
  line-height: 1.5;
}
.map-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.map-link:hover { background: var(--gold); color: var(--black); }

/* Contact Form */
.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 20px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.65); }

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand .logo-main { color: var(--white); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  padding-left: 0;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-tagline { color: var(--gold); opacity: 0.7; }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all var(--transition);
}
.float-btn:hover { transform: scale(1.12); }
.float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

.whatsapp-btn {
  background: #25D366;
  animation: whatsappPulse 3s ease-in-out infinite;
}
.call-btn { background: var(--gold); }
.call-btn i { color: var(--black); }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  cursor: pointer;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }

/* ============================================================
   MODAL
============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 24px;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  cursor: pointer;
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: scale(0.9);
  transition: transform var(--transition);
}
.modal.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.modal-img-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--black);
}
.modal-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.modal-content .product-cat { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.modal-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin: 8px 0 18px;
}
.modal-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.modal-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section-pad { padding: 70px 0; }
  .header-inner { padding: 0 22px; }
  .hero { height: 100svh; }
  .slide-content { padding: 0 24px; }
  .slider-prev { left: 14px; }
  .slider-next { right: 14px; }
  .slider-btn { width: 42px; height: 42px; }
  .scroll-indicator { display: none; }
  .categories-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-controls { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { flex: 0 0 calc(100% - 0px); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 32px 24px; }
  .modal-box { padding: 32px 24px; }
  .modal-cta { flex-direction: column; }
  .about-badge { right: -12px; bottom: -12px; width: 100px; height: 100px; }
  .badge-num { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .masonry-grid { grid-template-columns: 1fr; }
  .masonry-item.wide { grid-column: span 1; }
  .masonry-item.tall { grid-row: span 1; }
  .filter-pills { gap: 6px; }
  .pill { padding: 8px 14px; font-size: 0.72rem; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .deco-ring { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLL REVEAL UTILITY
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Selection */
::selection { background: rgba(212,175,55,0.25); color: var(--black); }

/* ============================================================
   BRANCHES — TWO LOCATION LAYOUT
============================================================ */

/* Branch grid — side by side */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

/* Individual branch card */
.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.branch-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
}

/* Branch number + label header */
.branch-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
}
.branch-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}
.branch-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.branch-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

/* Branch info rows */
.branch-details {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.branch-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.branch-row i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.branch-row p,
.branch-row a {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}
.branch-row a:hover { color: var(--gold); }

/* Mini map block inside branch card */
.branch-map {
  margin: 0 28px 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 140px;
  flex-shrink: 0;
}
.branch-map .map-inner {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1A1A1A, #2d1f0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px;
  text-align: center;
}
.branch-map .map-inner i { color: var(--gold); font-size: 1.6rem; opacity: 0.75; }
.branch-map .map-inner span { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* WhatsApp button per branch */
.branch-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 28px 28px;
  padding: 13px 20px;
  background: #25D366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  flex-shrink: 0;
}
.branch-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.branch-wa-btn i { font-size: 1.15rem; }

/* Shared info strip */
.contact-shared-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.shared-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.shared-info-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--shadow-sm);
}
.shared-info-card > i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.shared-info-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.shared-info-card a,
.shared-info-card strong {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.shared-info-card a:hover { color: var(--gold); }

/* Full-width contact form */
.contact-form-full {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-full .contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Footer branch labels */
.footer-branch {
  margin-bottom: 18px;
}
.footer-branch-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.75);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-branch-label i { font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
  .branches-grid { grid-template-columns: 1fr; }
  .contact-shared-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-full .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .branch-header { padding: 20px 20px 16px; }
  .branch-details { padding: 18px 20px; }
  .branch-map { margin: 0 20px 16px; }
  .branch-wa-btn { margin: 0 20px 20px; }
}

/* ============================================================
   PROMISE STRIP — replaces full Why Choose Us section
============================================================ */
.promise-strip { background: var(--white); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 28px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.promise-item.animated {
  opacity: 1;
  transform: translateY(0);
}
.promise-item:hover {
  background: var(--ivory);
  z-index: 1;
}
/* remove right border from last in each row */
.promise-item:nth-child(3),
.promise-item:nth-child(6) { border-right: none; }
/* remove bottom border from last row */
.promise-item:nth-child(4),
.promise-item:nth-child(5),
.promise-item:nth-child(6) { border-bottom: none; }

.promise-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition);
}
.promise-item:hover .promise-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}
.promise-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.promise-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-item:nth-child(3) { border-right: 1px solid var(--border); }
  .promise-item:nth-child(2),
  .promise-item:nth-child(4),
  .promise-item:nth-child(6) { border-right: none; }
  .promise-item:nth-child(4),
  .promise-item:nth-child(5) { border-bottom: 1px solid var(--border); }
  .promise-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 560px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-item { border-right: none !important; }
  .promise-item:last-child { border-bottom: none; }
}

/* ============================================================
   REVIEWS STRIP — replaces full Testimonials slider
============================================================ */
.reviews-strip { background: var(--ivory); }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
  position: relative;
}
.review-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.review-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-5px);
}
/* opening quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-card > p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}
.review-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.logo-emblem {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
