/* ==========================================================================
   NICE LAMPS — LUXURY COMPONENTS STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. NAVBAR & NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: #D1C0AE !important;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  transition: height var(--transition-smooth), background-color var(--transition-smooth), backdrop-filter var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.navbar.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(209, 192, 174, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(23, 23, 23, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1002;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.2);
  transition: transform var(--transition-smooth);
}

.navbar-logo:hover img {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-primary);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-primary);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Products Dropdown Styling */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-solid);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: 9px 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-primary);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background-color: var(--bg-warm);
  color: var(--gold-primary);
  padding-left: 28px;
}

/* Compact Expandable Navbar Search Input */
.navbar-inline-search {
  position: relative;
  width: 0;
  height: 42px;
  background: #FFFFFF;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  z-index: 1005;
}

.navbar-inline-search.active {
  width: 250px;
  opacity: 1;
  pointer-events: auto;
  padding: 0 12px 0 14px;
  overflow: visible;
}

.navbar-search-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark-primary);
}

.navbar-search-close {
  background: transparent;
  border: none;
  color: var(--dark-primary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  transition: color 0.2s ease;
}

.navbar-search-close:hover {
  color: var(--gold-primary);
}

.navbar-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-solid);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 1100;
  padding: 8px 0;
}

.navbar-search-dropdown.active {
  display: block;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-icon-btn {
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.25);
  color: var(--dark-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-icon-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background-color: rgba(185, 151, 91, 0.1);
  transform: translateY(-2px);
}

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-solid);
  background: transparent;
  color: var(--dark-primary);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1002;
  transition: all var(--transition-smooth);
}

.navbar.scrolled .hamburger-btn {
  color: var(--bg-warm);
  border-color: rgba(255, 255, 255, 0.25);
}

.hamburger-btn:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background-color: rgba(185, 151, 91, 0.1);
  transform: translateY(-2px);
}

/* Mobile Fullscreen Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark-primary);
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
  transform: translateX(12px);
}

.mobile-contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-muted);
  font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   02. CINEMATIC HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: #D1C0AE;
  background-image: url('../../img/banner-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--dark-primary);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(209,192,174,0.93) 0%, rgba(209,192,174,0.88) 45%, rgba(209,192,174,0.55) 100%);
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(209, 192, 174, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
  font-family: var(--font-display);
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: #3D3831;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(450px, 60vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(185, 151, 91, 0.25);
  background: var(--dark-secondary);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge-floating {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--dark-surface);
  border: 1px solid var(--gold-primary);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 3;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 4px;
}


/* --------------------------------------------------------------------------
   04. BRAND STORY SECTION (DITTO MATCH & LUXURY ANIMATIONS)
   -------------------------------------------------------------------------- */
.brand-story-section {
  background-color: var(--bg-warm);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Content Typography */
.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.story-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background-color: var(--gold-primary);
  display: inline-block;
}

.story-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.story-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.story-title-gold {
  font-family: var(--font-display);
  color: var(--gold-primary);
  font-weight: 400;
  display: inline-block;
}

.story-paragraph {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #4A443B;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.story-gold-bold {
  color: var(--gold-primary);
  font-weight: 700;
}

/* 3 Stat Pillars Row */
.story-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.story-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.story-stat-item:hover {
  transform: translateY(-4px);
}

.story-stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--dark-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(23, 23, 23, 0.15);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.story-stat-item:hover .story-stat-icon-circle {
  background-color: var(--gold-primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

.story-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.story-stat-label {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #70675C;
  margin-bottom: 0.75rem;
}

.story-stat-accent-line {
  width: 32px;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

/* Right Wrapper (Image + Orbit Arc + Overlay Card) */
.story-right-wrapper {
  position: relative;
  padding-bottom: 90px;
}

/* Golden Orbit Ring Arc SVG Animation */
.story-orbit-arc {
  position: absolute;
  top: -50px;
  left: -60px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 1;
}

.orbit-path-dashed {
  animation: orbitRotate 25s linear infinite;
  transform-origin: center;
}

@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.orbit-sparkle {
  position: absolute;
  color: var(--gold-primary);
  font-size: 1.25rem;
  animation: sparklePulse 3s ease-in-out infinite alternate;
}

.sparkle-1 {
  top: 15%;
  left: 20%;
}

.sparkle-2 {
  top: 50%;
  left: 5%;
  animation-delay: 1.5s;
}

@keyframes sparklePulse {
  0% {
    opacity: 0.2;
    transform: scale(0.8) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.3) rotate(45deg);
  }
}

/* Main Image Box */
.story-img-box {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 25px 60px rgba(23, 23, 23, 0.16);
  border: 1px solid rgba(185, 151, 91, 0.25);
}

.story-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-box:hover .story-main-img {
  transform: scale(1.05);
}

/* Floating Dark Glass Feature Overlay Card */
.story-feature-card-overlay {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  z-index: 3;
  background: rgba(23, 23, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1.5px solid rgba(185, 151, 91, 0.35);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.story-feature-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  border-color: var(--gold-primary);
}

.story-feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-feature-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.story-feature-col:hover .story-feature-icon {
  transform: translateY(-4px) scale(1.15);
  color: var(--gold-light);
}

.story-feature-title {
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.story-feature-desc {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  line-height: 1.4;
  margin: 0;
}

.story-feature-divider {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.12);
}


/* --------------------------------------------------------------------------
   05. SIGNATURE COLLECTIONS (ASYMMETRIC MASONRY)
   -------------------------------------------------------------------------- */
.collections-section {
  background-color: var(--bg-warm-secondary);
}

.collections-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--dark-primary);
  height: 420px;
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(185, 151, 91, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--gold-primary);
}

/* Card Spans */
.col-span-8 { grid-column: span 8; height: 500px; }
.col-span-4 { grid-column: span 4; height: 500px; }
.col-span-6 { grid-column: span 6; height: 440px; }
.col-span-12 { grid-column: span 12; height: 460px; }

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.88;
}

.collection-card:hover img {
  transform: scale(1.08);
  opacity: 0.95;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.9) 0%, rgba(23, 23, 23, 0.2) 60%, rgba(23, 23, 23, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.4s ease;
}

.collection-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.collection-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-name {
  transform: translateX(6px);
}

.collection-link-text {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease, gap 0.3s ease;
}

.collection-card:hover .collection-link-text {
  opacity: 1;
  gap: 14px;
  color: var(--gold-light);
}


/* --------------------------------------------------------------------------
   06. INTERACTIVE HORIZONTAL SHOWCASE
   -------------------------------------------------------------------------- */
.horizontal-showcase-wrapper {
  overflow: hidden;
  background-color: var(--dark-primary);
  color: var(--bg-warm);
  position: relative;
}

.horizontal-track-container {
  width: 100%;
  height: calc(100vh - 120px);
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.horizontal-track {
  display: flex;
  gap: 2.5rem;
  padding-left: clamp(2rem, 5vw, 6rem);
  padding-right: clamp(2rem, 5vw, 6rem);
  will-change: transform;
}

.horizontal-card {
  flex: 0 0 clamp(320px, 42vw, 560px);
  height: clamp(500px, 66vh, 560px);
  background: var(--dark-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(185, 151, 91, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}

.horizontal-card-img {
  width: 100%;
  height: 285px;
  flex: 0 0 285px;
  overflow: hidden;
}

.horizontal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.horizontal-card:hover .horizontal-card-img img {
  transform: scale(1.05);
}

.horizontal-card-content {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.horizontal-card-title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--bg-warm);
  line-height: 1.2;
  height: 3.4rem;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.horizontal-card-desc {
  color: var(--text-light-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  height: 2.6rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.horizontal-card-btn {
  margin-top: auto;
  width: fit-content;
}

.horizontal-progress-num {
  display: none !important;
}


/* --------------------------------------------------------------------------
   07. THE ART OF LIGHT (DARK SECTION WITH GLOW)
   -------------------------------------------------------------------------- */
.art-of-light-section {
  background-color: var(--dark-primary);
  color: var(--bg-warm);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.art-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(185, 151, 91, 0.35) 0%, rgba(212, 175, 55, 0.1) 40%, rgba(23, 23, 23, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.art-center-image {
  max-width: 540px;
  margin: 3rem auto;
  position: relative;
  z-index: 2;
}

.art-center-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s ease;
}


/* --------------------------------------------------------------------------
   08. WHY NICE LAMPS (EDITORIAL NUMBERED LIST)
   -------------------------------------------------------------------------- */
.why-section {
  background-color: var(--bg-warm);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  border-top: 1px solid var(--border-solid);
  padding: 1.75rem 0;
  cursor: pointer;
  transition: padding var(--transition-fast);
}

.why-item:last-child {
  border-bottom: 1px solid var(--border-solid);
}

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

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-right: 1.5rem;
  transition: transform 0.3s ease;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--dark-primary);
  flex: 1;
  transition: color 0.3s ease;
}

.why-item:hover .why-title, .why-item.active .why-title {
  color: var(--gold-primary);
}

.why-item:hover .why-num, .why-item.active .why-num {
  transform: translateX(6px);
}

.why-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-item.active .why-desc {
  max-height: 200px;
  margin-top: 1rem;
}

.why-image-preview {
  position: relative;
  height: 540px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-solid);
}

.why-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}


/* --------------------------------------------------------------------------
   07. THE ART OF LIGHT (DITTO MATCH & LUXURY GLOW ANIMATIONS)
   -------------------------------------------------------------------------- */
.art-of-light-section {
  background-color: #0D0C0B;
  color: var(--bg-warm);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Background Glowing Wave & Dust Particles */
.art-swoosh-wave-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.art-swoosh-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  transform: translateY(-50%);
  display: flex;
  animation: slideSwooshTrackLeft 18s linear infinite;
}

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

.art-swoosh-svg {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.swoosh-line-1 {
  animation: swooshPulse 5s ease-in-out infinite alternate;
}

.swoosh-line-2 {
  stroke-dasharray: 24 16;
  animation: slideDashLeft 6s linear infinite;
}

@keyframes slideDashLeft {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 400px;
  }
}

.art-radial-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(185, 151, 91, 0.24) 0%, rgba(232, 216, 181, 0.08) 45%, rgba(13, 12, 11, 0) 75%);
  filter: blur(60px);
  pointer-events: none;
}

.art-particle {
  position: absolute;
  color: var(--gold-primary);
  font-size: 0.9rem;
  opacity: 0.6;
  animation: floatParticle 6s ease-in-out infinite alternate;
}

.particle-1 { top: 25%; left: 12%; animation-delay: 0s; }
.particle-2 { top: 28%; right: 14%; animation-delay: 1.8s; }
.particle-3 { bottom: 25%; left: 18%; animation-delay: 3.2s; }
.particle-4 { bottom: 28%; right: 20%; animation-delay: 4.5s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(0.9); opacity: 0.3; }
  100% { transform: translateY(-15px) scale(1.2); opacity: 0.9; }
}

/* Header Eyebrow */
.art-eyebrow-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

.art-eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
  display: inline-block;
}

.art-eyebrow-container .art-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.art-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* Main Title */
.art-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.art-title-gold {
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(185, 151, 91, 0.5);
}

/* Diamond Divider */
.art-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-primary);
  font-size: 0.65rem;
  margin-bottom: 1.5rem;
}

.art-diamond-divider .divider-line {
  width: 48px;
  height: 1px;
  background: rgba(185, 151, 91, 0.4);
}

.art-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* Center Showcase Image Frame with Gold Glowing Border */
.art-showcase-frame {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 45px rgba(185, 151, 91, 0.35), 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.art-showcase-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 60px rgba(185, 151, 91, 0.55), 0 30px 70px rgba(0, 0, 0, 0.6);
}

.art-showcase-img {
  width: 100%;
  height: clamp(340px, 45vh, 520px);
  object-fit: cover;
  display: block;
}

/* 4 Feature Columns Grid */
.art-features-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto 3.5rem;
}

.art-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.art-feature-icon {
  font-size: 1.75rem;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.art-feature-item:hover .art-feature-icon {
  transform: translateY(-4px) scale(1.15);
  color: var(--champagne);
}

.art-feature-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.art-feature-desc {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.45;
  margin: 0;
}

.art-col-divider {
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.1);
  align-self: center;
}

/* Glowing Gold Metallic CTA Button */
.art-cta-container {
  display: flex;
  justify-content: center;
}

.art-glowing-gold-btn {
  background: linear-gradient(135deg, #C5A465, #F0E2C3, #B89658);
  color: #121110;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  padding: 12px 14px 12px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(185, 151, 91, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.art-glowing-gold-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 45px rgba(185, 151, 91, 0.65);
}

.btn-arrow-circle {
  width: 38px;
  height: 38px;
  background-color: #121110;
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.art-glowing-gold-btn:hover .btn-arrow-circle {
  transform: translateX(4px);
  background-color: #FFFFFF;
  color: #121110;
}


/* --------------------------------------------------------------------------
   09. CUSTOM LIGHTING EXPERIENCE
   -------------------------------------------------------------------------- */
.custom-lighting-section {
  background-color: var(--dark-secondary);
  color: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.custom-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(185, 151, 91, 0.3);
}

/* --------------------------------------------------------------------------
   10. MANUFACTURING & CRAFTSMANSHIP
   -------------------------------------------------------------------------- */
.manufacturing-section {
  background-color: var(--bg-warm);
}

.mfg-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.mfg-step-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-solid);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mfg-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mfg-step-img {
  height: 280px;
  overflow: hidden;
}

.mfg-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mfg-step-card:hover .mfg-step-img img {
  transform: scale(1.06);
}

.mfg-step-content {
  padding: 2rem;
}

.mfg-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}


/* --------------------------------------------------------------------------
   11. PRODUCT DISCOVERY FILTER GRID
   -------------------------------------------------------------------------- */
.discovery-section {
  background-color: var(--bg-warm-secondary);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-solid);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-solid);
  transition: transform var(--transition-smooth), opacity 0.4s ease, box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--gold-primary);
}

.product-card-img {
  height: 320px;
  overflow: hidden;
  background: var(--dark-primary);
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}


/* --------------------------------------------------------------------------
   12. CONTACT / ENQUIRY SECTION & MODAL
   -------------------------------------------------------------------------- */
.contact-cta-section {
  background-color: var(--dark-primary);
  color: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--dark-surface);
  border: 1px solid rgba(185, 151, 91, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Consultation Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--dark-surface);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 580px;
  padding: 3rem;
  color: var(--bg-warm);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-light-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--bg-warm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}


/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #D1C0AE !important;
  color: #3D3831 !important;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 76px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.2);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark-primary);
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: #3D3831;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-list li i {
  font-size: 1.1rem;
  color: var(--dark-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list li a {
  color: #2A2723;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: var(--dark-primary);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #2A2723;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--dark-primary);
  transform: translateX(4px);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link-sm {
  color: #3D3831;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.footer-link-sm:hover {
  color: var(--dark-primary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   14. PRODUCT PAGES & CATALOG STYLES
   -------------------------------------------------------------------------- */
.product-hero-section {
  background-color: #D1C0AE !important;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 4.5rem;
  position: relative;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-hero-section.has-bg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(209,192,174,0.75) 0%, rgba(209,192,174,0.6) 50%, rgba(209,192,174,0.45) 100%);
  z-index: 1;
}

.product-hero-section.has-bg-banner > .container {
  position: relative;
  z-index: 2;
}

.contact-hero-section.has-bg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,23,23,0.72) 0%, rgba(42,39,35,0.6) 50%, rgba(23,23,23,0.50) 100%);
  z-index: 1;
}

.contact-hero-section.has-bg-banner > .container {
  position: relative;
  z-index: 2;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #524B42;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.product-breadcrumb a {
  color: #171717;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
  color: var(--dark-primary);
  text-decoration: underline;
}

.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #171717;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.product-hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #3D3831;
  max-width: 840px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(23, 23, 23, 0.08);
  border: 1px solid rgba(23, 23, 23, 0.15);
  font-size: 0.825rem;
  font-weight: 600;
  color: #171717;
}

.product-grid-section {
  background-color: var(--bg-warm);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.product-item-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 12px 35px rgba(23, 23, 23, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(23, 23, 23, 0.12);
  border-color: rgba(185, 151, 91, 0.4);
}

.product-card-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #F7F3EC;
}

.product-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item-card:hover .product-card-img-box img {
  transform: scale(1.06);
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(23, 23, 23, 0.88);
  backdrop-filter: blur(8px);
  color: #E8D8B5;
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(185, 151, 91, 0.3);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  font-size: 0.825rem;
  color: #554F47;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.product-card-specs strong {
  color: var(--dark-primary);
}

.product-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   15. DITTO CONTACT PAGE STYLES
   -------------------------------------------------------------------------- */
.contact-hero-section {
  background: linear-gradient(180deg, rgba(15, 13, 10, 0.92) 0%, rgba(23, 23, 23, 0.96) 100%), url('../img/about-1.png') center/cover no-repeat;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 4.5rem;
  color: #FFFFFF;
  position: relative;
}

.contact-hero-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-glass-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(185, 151, 91, 0.3);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.contact-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(185, 151, 91, 0.15);
  border: 1px solid rgba(185, 151, 91, 0.4);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-pill-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
}

.contact-pill-lbl {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  display: block;
}

/* Contact Cards Grid */
.contact-cards-section {
  background-color: #F7F3EC;
  padding: 5rem 0;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 35px rgba(23, 23, 23, 0.05);
  border: 1px solid rgba(23, 23, 23, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #C4A77D;
  color: #FFFFFF;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #171717;
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.875rem;
  color: #665F55;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.btn-black-pill {
  background: #171717;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-black-pill:hover {
  background: var(--gold-primary);
  color: #171717;
}

.btn-outline-pill {
  background: transparent;
  color: #171717;
  border: 1px solid rgba(23, 23, 23, 0.25);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-outline-pill:hover {
  border-color: #171717;
  background: rgba(23, 23, 23, 0.04);
}

/* Leadership Dark Card */
.contact-leadership-card {
  background: #171717;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-leadership-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../img/maharaja-chandelier.png') right center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* Bottom Features Bar */
.contact-bottom-features-bar {
  background: #171717;
  border-top: 1px solid rgba(185, 151, 91, 0.3);
  padding: 2.5rem 0;
  color: #FFFFFF;
}

.contact-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-feature-col {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-feature-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-feature-title {
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-feature-desc {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.4;
}


/* --------------------------------------------------------------------------
   RESPONSIVE LAYOUT MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .nav-menu, .navbar-actions .btn-sm {
    display: none;
  }
  .hamburger-btn {
    display: inline-flex;
  }
  .hero-grid, .story-grid, .why-grid, .custom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .col-span-8, .col-span-4, .col-span-6, .col-span-12 {
    grid-column: span 12;
    height: 380px;
  }
  .horizontal-track-container {
    height: auto;
  }
  .horizontal-track {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .horizontal-card {
    flex: 1 0 100%;
    width: 100%;
    height: 480px;
  }
  .mfg-steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 60px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float i {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.whatsapp-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  padding-left: 0;
}

.whatsapp-float:hover {
  background: #1EBE5D;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
  padding: 14px 22px 14px 18px;
}

.whatsapp-float:hover .whatsapp-float-label {
  max-width: 140px;
  opacity: 1;
  padding-left: 2px;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6), 0 2px 12px rgba(0,0,0,0.2);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  .whatsapp-float i {
    font-size: 1.4rem;
  }
}
