/* ===========================
   BALAJI GRANITES – STYLESHEET
   Professional Corporate Theme
   =========================== */

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

:root {
  --gold: #8B6914;
  --gold-light: #b08a2a;
  --gold-dark: #6a4f10;
  --dark: #faf8f5;
  --dark-2: #f2ede6;
  --dark-3: #ebe5dc;
  --dark-4: #e2dace;
  --cream: #1c1810;
  --cream-2: #2e2820;
  --text: #3c3530;
  --text-muted: #7a706a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.10);
  --radius: 2px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1003;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 1px 24px rgba(0,0,0,0.08);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(139,105,20,0.15);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 5%;
  border-bottom-color: rgba(139,105,20,0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(139,105,20,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  list-style: none;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(139,105,20,0.08);
  transition: all 0.2s;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  color: var(--gold);
  background: rgba(139,105,20,0.06);
  padding-left: 28px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 8% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139,105,20,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,105,20,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #f0ebe2 0%, #f7f3ee 50%, #ece6da 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139,105,20,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,105,20,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(240,235,226,0.25) 0%, rgba(240,235,226,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1px solid rgba(139,105,20,0.45);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(139,105,20,0.08);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ==================== IMAGE NAVIGATION ==================== */
.img-nav-section {
  padding: 100px 5%;
  background: var(--dark-2);
}

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

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.title-bar {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.img-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.img-nav-card {
  text-decoration: none;
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.img-nav-inner {
  position: absolute;
  inset: 0;
}

.img-nav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.img-nav-card:hover img {
  transform: scale(1.08);
}

.img-nav-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.granite-bg {
  background: linear-gradient(135deg, #ede8e1 0%, #e4ddd4 40%, #eae3da 100%);
}

.tile-bg {
  background: linear-gradient(135deg, #e2e9ee 0%, #d6e1e9 40%, #dde6ed 100%);
}

.stone-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 40px,
      rgba(139,105,20,0.07) 40px,
      rgba(139,105,20,0.07) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 40px,
      rgba(139,105,20,0.05) 40px,
      rgba(139,105,20,0.05) 41px
    );
}

.img-nav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.img-nav-card:hover .img-nav-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.2) 100%);
}

.img-nav-label h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.1;
  transition: var(--transition);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 2px 20px rgba(0,0,0,0.6);
}

.img-nav-card:hover .img-nav-label h3 {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7);
}

.img-nav-label p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.nav-arrow {
  display: inline-block;
  color: var(--gold);
  font-size: 1.2rem;
  transform: translateX(0);
  transition: transform 0.3s;
}

.img-nav-card:hover .nav-arrow {
  transform: translateX(8px);
}

.coming-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(139,105,20,0.90);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

/* ==================== WHY US ==================== */
.why-section {
  padding: 100px 8%;
  background: var(--dark);
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 24px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feature-card {
  background: var(--dark-3);
  padding: 32px 28px;
  border: 1px solid rgba(139,105,20,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card:hover {
  background: var(--dark-4);
  border-color: rgba(139,105,20,0.25);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  padding: 160px 8% 80px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(139,105,20,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #f0ebe2, #ece5d8);
  border-bottom: 1px solid rgba(139,105,20,0.15);
}

.page-header-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139,105,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,105,20,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb .sep {
  color: var(--gold);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

.page-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
}

/* ==================== GALLERY GRID ==================== */
.gallery-section {
  padding: 80px 5%;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.18) 45%, transparent 70%);
  opacity: 1;
  transition: background 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 80%);
}

.gallery-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  transform: translateY(0);
  transition: transform 0.4s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.gallery-card:hover .gallery-card-name {
  transform: translateY(0);
}

.gallery-card-sub {
  font-size: 0.7rem;
  color: rgba(255, 210, 130, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Named images – always show label */
.gallery-card.named-img .gallery-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 50%, transparent 80%);
  opacity: 1;
}

.gallery-card.named-img .gallery-card-name {
  transform: translateY(0);
}

/* ==================== TABLE TOPS ==================== */
.tabletops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}

.tabletop-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  cursor: pointer;
}

.tabletop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tabletop-card:hover img {
  transform: scale(1.1);
}

.tabletop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 45%, transparent 100%);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px 20px;
}

.tabletop-card:hover .tabletop-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 55%, rgba(139,105,20,0.06) 100%);
  border-color: var(--gold);
}

.tabletop-icon {
  opacity: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.tabletop-card:hover .tabletop-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== COMING SOON ==================== */
.coming-soon-page {
  padding: 80px 5%;
  background: var(--dark);
  text-align: center;
}

.coming-soon-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 40px;
  border: 1px solid rgba(139,105,20,0.2);
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.coming-soon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.coming-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
}

.coming-soon-box h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.coming-soon-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 12px 30px;
  border: 1px solid rgba(139,105,20,0.4);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.back-btn:hover {
  background: rgba(139,105,20,0.08);
  border-color: var(--gold);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(139,105,20,0.18);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 80px 8%;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}

.footer-brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}

.footer-nav h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav ul a::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-nav ul a:hover::before {
  opacity: 1;
}

.footer-nav ul a:hover {
  color: var(--cream);
  padding-left: 6px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1rem;
  margin-top: 1px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item a,
.contact-item div a {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  cursor: pointer;
}

.contact-item a:hover,
.contact-item div a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border: 1px solid;
}

.social-btn.whatsapp {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
}

.social-btn.whatsapp:hover {
  background: rgba(37,211,102,0.2);
  border-color: #25d366;
}

.social-btn.instagram {
  background: rgba(225,48,108,0.1);
  border-color: rgba(225,48,108,0.3);
  color: #e1306c;
}

.social-btn.instagram:hover {
  background: rgba(225,48,108,0.2);
  border-color: #e1306c;
}

.social-btn.email {
  background: rgba(139,105,20,0.08);
  border-color: rgba(139,105,20,0.3);
  color: var(--gold);
}

.social-btn.email:hover {
  background: rgba(139,105,20,0.15);
  border-color: var(--gold);
}

/* Footer locations column */
.footer-locations-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* Location styles */
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.location-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.location-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-city {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.location-state {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-bottom {
  border-top: 1px solid rgba(139,105,20,0.12);
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* ==================== LIGHTBOX ==================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(139,105,20,0.25);
  transition: opacity 0.2s ease;
}

.lightbox-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  text-align: center;
}

.lightbox-counter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-top: -8px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
  z-index: 10001;
}

.lightbox-close:hover { opacity: 0.7; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(139,105,20,0.4);
  color: var(--gold);
  font-size: 1.6rem;
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 10001;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(139,105,20,0.15);
  border-color: var(--gold);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .img-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

@media (max-width: 1100px) {

  .nav-links {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 320px;
    background: var(--dark-2);
    padding: 80px 32px 40px;
    gap: 0;
    border-left: 1px solid rgba(139,105,20,0.15);
    -webkit-box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
    -webkit-transition: -webkit-transform 0.35s ease, visibility 0.35s ease;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-overlay.open {
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(139,105,20,0.08);
    -webkit-tap-highlight-color: transparent;
  }

  .dropdown {
    position: static;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 16px;
  }

  .dropdown li a {
    border: none;
    padding: 8px 0;
  }

  .nav-toggle {
    display: -webkit-flex;
    display: flex;
    z-index: 1002;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .tabletops-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .img-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .img-nav-label h3 {
    font-size: 1.3rem;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 6%;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 6%;
  }

  .social-links {
    flex-wrap: wrap;
  }

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

  .tabletops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header {
    padding: 130px 6% 60px;
  }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ==================== MARBLE SUBPAGE TABS ==================== */
.marble-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 5%;
  margin: 0 auto 48px;
  max-width: 900px;
  border-bottom: 1px solid rgba(139,105,20,0.15);
}

.marble-tab-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  white-space: nowrap;
}

.marble-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

.marble-tab-btn:hover { color: var(--gold-light); }

.marble-tab-btn.active {
  color: var(--gold);
}

.marble-tab-btn.active::after {
  width: 100%;
}

.marble-tab-panel {
  display: none;
}

.marble-tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.sub-section-label {
  text-align: center;
  margin-bottom: 32px;
}

.sub-section-label h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.sub-section-label p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.sub-section-label .sub-gold-bar {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* ==================== INDIAN MARBLE PAGE ==================== */
.indian-marble-intro {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 5%;
}

.indian-marble-intro p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}


/* tabletop hover name label */
.tabletop-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.06em;
  opacity: 1;
  transform: none;
  transition: color 0.3s;
  text-align: left;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tabletop-name::after {
  content: 'STONE TABLE TOPS';
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.tabletop-card:hover .tabletop-name {
  opacity: 1;
  color: var(--gold-light);
  transform: none;
}

/* Indian Marble placeholder background */
.indian-bg {
  background: linear-gradient(135deg, #f0ece7 0%, #e8e0d5 40%, #ede6db 100%);
}

.indian-pattern {
  background-image:
    repeating-linear-gradient(
      30deg,
      transparent 0px,
      transparent 35px,
      rgba(139,105,20,0.08) 35px,
      rgba(139,105,20,0.08) 36px
    ),
    repeating-linear-gradient(
      -30deg,
      transparent 0px,
      transparent 35px,
      rgba(139,105,20,0.06) 35px,
      rgba(139,105,20,0.06) 36px
    );
}

/* 4-column grid for wider screens */
@media (min-width: 1200px) {
  .img-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact persons */
.contact-persons { display: flex; flex-direction: column; gap: 10px; }
.contact-person { display: flex; flex-direction: column; gap: 2px; }
.contact-person-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.contact-city {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.contact-person a {
  font-size: 0.82rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-person a:hover { color: var(--gold); }

/* Active nav link highlighted */
.nav-link.active,
.nav-item.active > .nav-link {
  color: var(--gold) !important;
}
