/* ================================================================
   VIJAY PAVING & LANDSCAPES — style.css
   Premium natural stone supplier — UK
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── RESET & ROOT ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --black:   #0d0d0c;
  --dark:    #111110;
  --charcoal:#1c1c1a;
  --mid:     #2e2e2b;
  --stone:   #8a7d6e;
  --stone-lt:#bfb5a8;
  --cream:   #f2ede6;
  --offwhite:#f8f6f2;
  --white:   #fdfcfa;
  --gold:    #b8922a;
  --gold-lt: #d4aa4f;
  --gold-dim:#7a5f1c;
  --green:   #3d5a3e;
  --green-lt:#5a7a4a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-h: 72px;
  --max-w: 1280px;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--dark); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-tag {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
}
.section-tag::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300; line-height: 1.18; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-lead { font-size: 1rem; color: #5a554e; max-width: 560px; }
.section-lead.light { color: var(--stone-lt); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
  padding: 14px 36px;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn-outline-dark { background: transparent; border: 1px solid rgba(0,0,0,0.25); color: var(--charcoal); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; }


/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(13,13,12,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184,146,42,0.15);
}
#navbar.transparent { background: transparent; }

.nav-inner {
  display: flex; align-items: center;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 48px;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.72);
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 400; transition: color 0.25s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 8px;
  background: transparent; border: 1px solid rgba(184,146,42,0.6);
  color: var(--gold); padding: 9px 22px;
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; font-weight: 400;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 6px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,13,12,0.98); backdrop-filter: blur(16px);
  padding: 32px 24px 40px;
  flex-direction: column; gap: 0;
  border-top: 1px solid rgba(184,146,42,0.2);
  z-index: 850;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none; color: var(--stone-lt);
  font-size: 1.1rem; font-family: var(--font-display); font-weight: 300;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-lt); }
.nav-mobile .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
}


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

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 50%, rgba(61,90,62,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 90% at 85% 85%, rgba(184,146,42,0.07) 0%, transparent 50%),
    linear-gradient(160deg, #111110 0%, #0d0d0c 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-diagonal {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  background: rgba(255,255,255,0.02);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-image-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
  transition: opacity 1s;
}
.hero-line {
  position: absolute; left: 80px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(184,146,42,0.4) 25%, rgba(184,146,42,0.4) 75%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding-left: 120px; max-width: 720px;
  animation: heroIn 1.1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 28px;
  animation: heroIn 1.1s 0.15s ease both;
}
.hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 28px;
  animation: heroIn 1.1s 0.25s ease both;
}
.hero-headline em { color: var(--gold); font-style: italic; }

.hero-subline {
  font-size: 1.05rem; color: var(--stone-lt);
  max-width: 500px; line-height: 1.8; margin-bottom: 44px;
  animation: heroIn 1.1s 0.35s ease both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroIn 1.1s 0.45s ease both;
}

.hero-stats {
  position: absolute; bottom: 52px; right: 72px; z-index: 2;
  display: flex; gap: 52px;
  animation: heroIn 1.1s 0.55s ease both;
}
.hstat-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.hstat-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-top: 6px; display: block;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 120px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--stone); animation: heroIn 1.1s 0.65s ease both;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--stone);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.5; }
  50%       { transform: scaleX(1.5); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-content { padding-left: 24px; padding-right: 24px; max-width: 100%; }
  .hero-line, .hero-image-panel, .hero-stats, .hero-scroll { display: none; }
  .hero-headline { font-size: 2.6rem; }
}


/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--charcoal); padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(184,146,42,0.18);
  border-bottom: 1px solid rgba(184,146,42,0.18);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0; padding: 0 44px;
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--stone-lt);
}
.marquee-dot { color: var(--gold); margin-right: 44px; }


/* ================================================================
   ABOUT
   ================================================================ */
#about { padding: 120px 0; background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
}

.about-visual { position: relative; height: 560px; }
.about-main-img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-main-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,13,12,0.1) 0%, transparent 60%);
}
.about-badge {
  position: absolute; bottom: -28px; right: -28px;
  width: 180px; height: 180px;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 20px;
  z-index: 2;
}
.about-badge .b-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.about-badge .b-text {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,0.6); margin-top: 8px; line-height: 1.5;
}

.about-content { padding-right: 16px; }
.about-content p { color: #4e4a44; font-size: 1rem; margin-bottom: 20px; line-height: 1.9; }
.about-content strong { color: var(--charcoal); font-weight: 500; }

.origin-pill {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid rgba(184,146,42,0.28); padding: 14px 22px;
  margin-top: 24px;
}
.origin-pill .flags { font-size: 1.1rem; }
.origin-pill .pill-text { font-size: 0.75rem; line-height: 1.5; color: var(--stone); }
.origin-pill .pill-text strong { display: block; color: var(--charcoal); font-size: 0.88rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .about-badge { display: none; }
}


/* ================================================================
   WHY CHOOSE US
   ================================================================ */
#why { padding: 120px 0; background: var(--charcoal); }
.why-intro { max-width: 600px; margin-bottom: 64px; }

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

.why-card {
  padding: 44px 36px;
  background: rgba(255,255,255,0.04);
  border-top: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-top-color: var(--gold); }
.why-icon { font-size: 1.5rem; margin-bottom: 22px; display: block; }
.why-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.why-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.75; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   PRODUCTS / GALLERY
   ================================================================ */
#products { padding: 120px 0; background: var(--cream); }
.products-intro { margin-bottom: 64px; }

/* Category tabs */
.product-tabs {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 48px;
}
.product-tab {
  padding: 10px 24px; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; font-weight: 400;
  border: 1px solid rgba(0,0,0,0.15); background: transparent;
  color: var(--stone); transition: var(--transition);
  font-family: var(--font-body);
}
.product-tab:hover { border-color: var(--gold); color: var(--gold); }
.product-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 500; }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.product-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark);
}
.product-card.wide { grid-column: span 2; }
.product-card-img {
  height: 280px; overflow: hidden; position: relative;
}
.product-card.wide .product-card-img { height: 340px; }
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  transition: opacity 0.3s;
}
.product-card:hover .product-card-img::after { opacity: 0.8; }

.product-card-body { padding: 24px 26px 28px; background: var(--white); }
.product-card-tag { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.product-card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.product-card-body p { font-size: 0.84rem; color: #5a554e; line-height: 1.7; margin-bottom: 16px; }
.product-card-link {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.product-card-link:hover { gap: 14px; }
.product-card-link::after { content: '→'; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: var(--white);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer; padding: 16px 14px;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(184,146,42,0.4); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-caption {
  text-align: center; color: var(--stone-lt);
  font-size: 0.8rem; letter-spacing: 0.12em; margin-top: 16px;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card.wide { grid-column: span 1; }
}


/* ================================================================
   GALLERY SECTION (all products mosaic)
   ================================================================ */
#gallery { padding: 80px 0; background: var(--white); }
.gallery-intro { margin-bottom: 48px; }

.masonry-gallery {
  columns: 3; column-gap: 3px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 3px; overflow: hidden; cursor: pointer;
  position: relative;
}
.masonry-item img { transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,12,0);
  display: flex; align-items: flex-end;
  padding: 20px; transition: background 0.3s;
}
.masonry-item:hover .item-overlay { background: rgba(13,13,12,0.4); }
.item-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: transparent; transition: color 0.3s; font-weight: 500;
}
.masonry-item:hover .item-label { color: var(--gold-lt); }

@media (max-width: 768px) { .masonry-gallery { columns: 2; } }
@media (max-width: 480px) { .masonry-gallery { columns: 1; } }


/* ================================================================
   APPLICATIONS
   ================================================================ */
#applications { padding: 120px 0; background: var(--charcoal); }
.apps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 56px;
}
.app-card {
  padding: 40px 28px; background: rgba(255,255,255,0.03);
  border-bottom: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.app-card:hover { background: rgba(255,255,255,0.07); border-bottom-color: var(--gold); }
.app-icon { font-size: 1.9rem; margin-bottom: 18px; display: block; }
.app-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.app-card p { font-size: 0.84rem; color: var(--stone); line-height: 1.65; }

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


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 88px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.4), transparent);
}
.cta-banner::before { top: 0; }
.cta-banner::after  { bottom: 0; }

.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); }
.cta-text p  { color: var(--stone-lt); max-width: 460px; margin-top: 12px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }


/* ================================================================
   CUSTOMERS / WHO WE SERVE
   ================================================================ */
#customers { padding: 100px 0; background: var(--cream); }
.customers-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px; margin-top: 48px;
}
.customer-tile {
  background: var(--white); padding: 36px 20px; text-align: center;
  transition: var(--transition); cursor: default;
}
.customer-tile:hover { background: var(--gold); }
.customer-tile:hover .ct-icon, .customer-tile:hover .ct-name { color: var(--dark); }
.ct-icon { font-size: 1.7rem; display: block; margin-bottom: 14px; transition: color 0.3s; }
.ct-name {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal); transition: color 0.3s;
}

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


/* ================================================================
   CONTACT
   ================================================================ */
#contact { padding: 120px 0; background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; margin-top: 56px;
}

/* Contact info */
.contact-info-lead { color: var(--stone-lt); margin-bottom: 40px; font-size: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.contact-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid rgba(184,146,42,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.ci-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); display: block; margin-bottom: 4px;
}
.ci-value { color: var(--stone-lt); font-size: 0.95rem; text-decoration: none; transition: color 0.2s; }
.ci-value:hover { color: var(--gold-lt); }

.social-links { display: flex; gap: 12px; margin-top: 36px; }
.social-link {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 18px; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone-lt); text-decoration: none; transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.promise-box {
  margin-top: 40px; padding: 26px 28px;
  border: 1px solid rgba(184,146,42,0.18);
}
.promise-box-title {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.promise-box p { color: var(--stone); font-size: 0.88rem; line-height: 1.7; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border-top: 2px solid var(--gold);
  padding: 44px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  color: var(--white); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 300;
  outline: none; transition: border-color 0.25s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark); }
.form-group textarea { min-height: 110px; }

.form-submit { width: 100%; margin-bottom: 20px; justify-content: center; }
.form-success {
  display: none; text-align: center;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  padding: 16px; color: #25d366; font-size: 0.88rem;
  letter-spacing: 0.08em; margin-top: 16px;
}
.form-success.show { display: block; }

.wa-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.wa-note { font-size: 0.72rem; color: var(--stone); letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}


/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #090908;
  border-top: 1px solid rgba(184,146,42,0.12);
}
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 0 56px;
}
.footer-brand img { height: 40px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-tagline { font-size: 0.8rem; color: var(--stone); line-height: 1.7; max-width: 240px; }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none; color: var(--stone);
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { font-size: 0.82rem; color: var(--stone); }
.footer-contact-list a { color: var(--stone); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: #3a3a36; letter-spacing: 0.08em; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.72rem; color: #3a3a36; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--stone); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 40px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 500px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}


/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPop 0.6s 2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes waPop { from { transform: scale(0); } to { transform: scale(1); } }
.wa-float svg { width: 28px; height: 28px; fill: white; }


/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 800;
  width: 44px; height: 44px;
  background: rgba(184,146,42,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--dark);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold-lt); }


/* ================================================================
   MISC
   ================================================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
  margin: 0;
}

/* ================================================================
   ADDITIONAL POLISH & FIXES
================================================================ */

/* Section scroll offset for fixed nav */
section[id], #gallery { scroll-margin-top: 80px; }

/* Hero section needs to cover full height */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

/* Product tab polish */
.product-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Form focus ring accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px rgba(184,146,42,0.25);
}

/* Lightbox image sizing */
#lb-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: none;
}

/* Lightbox mobile adjustments */
@media (max-width: 600px) {
  .lightbox-prev { left: -12px; }
  .lightbox-next { right: -12px; }
  .lightbox-nav  { padding: 12px 10px; font-size: 1.2rem; }
}

/* Gallery masonry on small screens */
@media (max-width: 600px) {
  .masonry-gallery { columns: 1; }
  #gallery .product-tabs { gap: 4px; }
  #gallery .product-tab  { font-size: 0.65rem; padding: 8px 12px; }
}

/* Ensure product-card-img images fill their containers */
.product-card-img { overflow: hidden; background: var(--mid); }
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* Product card hover lift */
.product-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Contact form submit button full width  */
.form-submit { width: 100%; justify-content: center; display: flex; }

/* Masonry item base height variety via nth-child */
.masonry-item:nth-child(3n)   img { height: 320px; }
.masonry-item:nth-child(3n+1) img { height: 260px; }
.masonry-item:nth-child(3n+2) img { height: 290px; }
.masonry-item img { width: 100%; object-fit: cover; display: block; }

/* Back-to-top visible state */
#back-top {
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Floating WhatsApp tooltip */
.wa-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.wa-float:hover::before { opacity: 1; }

/* Active nav highlight */
.nav-links a.active-nav { color: var(--gold-lt) !important; }
.nav-links a.active-nav::after { transform: scaleX(1) !important; }

/* Prevent layout shift on image load */
.product-card-img, .about-main-img, .hero-image-panel {
  background: linear-gradient(135deg, #1c1c1a 0%, #141413 100%);
}

/* Smooth show/hide product cards */
.product-card[style*="display: none"] { display: none !important; }

/* Mobile nav CTA  */
@media (max-width: 900px) {
  .hero-content { padding-left: 24px !important; padding-right: 24px !important; }
  .hero-headline { font-size: clamp(2.2rem,8vw,3rem) !important; }
  #products .product-grid { gap: 3px; }
  .why-card { padding: 32px 24px; }
  .app-card { padding: 30px 20px; }
}

/* ── VERCEL CONFIG NOTE ─────────────────────────────────────── */
/* For Vercel deployment: drag & drop VijayPavingWebsite/ folder  */
/* Or connect GitHub repo — no build command needed (static site) */
