/* style.css - Main site styles */

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213,168,81,0.04);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(12,12,12,0.95);
  border-color: rgba(213,168,81,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-elegancia {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 3px;
}
.logo-tag {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.main-nav .nav-link {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--text-strong);
  background: rgba(213,168,81,0.06);
}
.main-nav .nav-link.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-icon:hover {
  color: var(--gold);
  background: rgba(213,168,81,0.06);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-strong);
  font-size: 1.4rem;
  cursor: pointer;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-primary.btn-sm {
  padding: 6px 16px;
  font-size: 0.7rem;
}
.btn-primary.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-strong);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-light.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.d-none {
  display: none;
}
.d-lg-inline-flex {
  display: inline-flex;
}

@media (min-width: 993px) {
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--dark-light);
  z-index: 10000;
  padding: 30px 24px;
  transition: right 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .close-menu {
  background: transparent;
  border: none;
  color: var(--text-strong);
  font-size: 1.6rem;
  margin-bottom: 30px;
  cursor: pointer;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(213,168,81,0.04);
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-menu ul li a:hover {
  color: var(--gold);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ----- MOBILE SUBMENU (Products) ----- */
.mobile-has-submenu {
  border-bottom: 1px solid rgba(213,168,81,0.04);
}
.mobile-has-submenu > .mobile-submenu-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-has-submenu .mobile-submenu-toggle-row a {
  border-bottom: none;
  flex: 1;
}
.mobile-submenu-toggle {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 12px 4px 12px 12px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.mobile-submenu-toggle i {
  display: inline-block;
  transition: transform 0.3s ease;
}
.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.mobile-submenu-toggle:hover {
  color: var(--gold);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-submenu.open {
  max-height: 2000px;
}
.mobile-submenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 6px 0 18px;
}
.mobile-submenu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  transition: background 0.3s ease;
  text-decoration: none;
}
.mobile-submenu-item:hover {
  background: rgba(213,168,81,0.06);
}
.mobile-submenu-item img {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(213,168,81,0.08);
}
.mobile-submenu-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-strong);
  text-align: center;
}

@media (max-width: 360px) {
  .mobile-submenu-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0c0c;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(213,168,81,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(213,168,81,0.06) 0%, transparent 45%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.75) 0%, rgba(12,12,12,0.45) 40%, rgba(12,12,12,0.8) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(12,12,12,0.55) 85%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(213,168,81,0.08);
  border: 1px solid rgba(213,168,81,0.06);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-strong);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-buttons .btn-primary {
  font-size: 0.95rem;
  padding: 12px 32px;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: floatDown 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 1.2rem;
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.floating-elem {
  position: absolute;
  color: rgba(213,168,81,0.04);
  font-size: 2.4rem;
  animation: floatAround 12s ease-in-out infinite;
  z-index: 1;
}
.floating-elem:nth-child(1) { top: 15%; left: 8%; }
.floating-elem:nth-child(2) { bottom: 20%; right: 10%; }
.floating-elem:nth-child(3) { top: 45%; right: 5%; }
@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(10deg); }
  66% { transform: translate(-10px, 15px) rotate(-5deg); }
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
  border-radius: 4px;
}
.section-header {
  text-align: left;
  margin-bottom: 40px;
}
.section-header-center {
  text-align: center;
}
.section-header-center .section-divider {
  margin: 12px auto 0;
}

/* ===== ROW / COLUMN ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.row.align-center {
  align-items: center;
}
.col-lg-6 {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}
.img-zoom {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(213,168,81,0.04);
}
.img-zoom img {
  width: 100%;
  transition: transform 0.7s ease;
}
.img-zoom:hover img {
  transform: scale(1.03);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-light);
  border: 1px solid rgba(213,168,81,0.04);
  transition: all 0.4s ease;
  aspect-ratio: 4/3;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,12,12,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  transition: background 0.4s ease;
}
.category-card .category-overlay h4 {
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
}
.cat-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
}
.category-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.icon-card {
  background: var(--dark);
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(213,168,81,0.04);
  text-align: center;
  transition: all 0.4s ease;
}
.icon-card:hover {
  border-color: rgba(213,168,81,0.1);
  transform: translateY(-4px);
}
.icon-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.icon-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.icon-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== COLLECTION GRID ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.collection-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-light);
  border: 1px solid rgba(213,168,81,0.04);
  transition: all 0.4s ease;
}
.collection-card:hover {
  border-color: rgba(213,168,81,0.1);
  transform: translateY(-4px);
}
.collection-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-card:hover .collection-image img {
  transform: scale(1.05);
}
.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.collection-card:hover .collection-overlay {
  opacity: 1;
}
.collection-info {
  padding: 12px 14px 16px;
}
.collection-info h4 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.95rem;
}
.collection-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-grid .gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-light);
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,12,12,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-grid .gallery-item .gallery-overlay span {
  color: var(--text-strong);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.process-card {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius);
  background: var(--dark-light);
  border: 1px solid rgba(213,168,81,0.04);
  transition: all 0.4s ease;
}
.process-card:hover {
  border-color: rgba(213,168,81,0.1);
  transform: translateY(-4px);
}
.process-card .step {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(213,168,81,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.process-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.95rem;
}
.process-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid rgba(213,168,81,0.04);
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  border-color: rgba(213,168,81,0.08);
}
.testimonial-card i {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.3;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial-card h6 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--dark-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(213,168,81,0.04);
  transition: all 0.4s ease;
}
.blog-card:hover {
  border-color: rgba(213,168,81,0.08);
  transform: translateY(-4px);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover img {
  transform: scale(1.03);
}
.blog-card .blog-body {
  padding: 16px 18px 18px;
}
.blog-card .blog-tag {
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.blog-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
  margin: 6px 0 10px;
}
.blog-card .blog-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.blog-card .blog-link:hover {
  gap: 12px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  text-align: center;
  border-top: 1px solid rgba(213,168,81,0.04);
  border-bottom: 1px solid rgba(213,168,81,0.04);
}
.cta-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(213,168,81,0.08);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-feature {
  color: var(--text-strong);
  font-size: 0.9rem;
}
.cta-feature i {
  color: var(--gold);
  margin-right: 6px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-small {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cta-small i {
  color: var(--gold);
  margin-right: 6px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-light);
  border-top: 1px solid rgba(213,168,81,0.04);
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(213,168,81,0.04);
}
.footer-brand .logo-elegancia {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 3px;
  display: block;
}
.footer-brand .logo-tag {
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.site-footer h6 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 6px;
}
.footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-link:hover {
  color: var(--gold);
}
.newsletter {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(213,168,81,0.06);
}
.newsletter input {
  flex: 1;
  padding: 10px 16px;
  background: var(--dark);
  border: none;
  color: var(--text-strong);
  font-size: 0.8rem;
  outline: none;
}
.newsletter input::placeholder {
  color: var(--text-muted);
}
.newsletter button {
  padding: 10px 16px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background: var(--gold-dark);
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(213,168,81,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .row { flex-direction: column; }
  .col-lg-6 { flex: 1 1 100%; }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 50px 0;
  }
  .cta-section {
    padding: 50px 0;
  }
  .collection-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* ============================================================
   ADDITIONAL ENHANCEMENTS - Animations & Visual Polish
   ============================================================ */

/* ----- ENHANCED REVEAL ANIMATIONS ----- */
.reveal-fast {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-fast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger:nth-child(8) { transition-delay: 0.54s; }

/* ----- GLOW PULSE ANIMATION ----- */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(213, 168, 81, 0.05);
  }
  50% {
    box-shadow: 0 0 40px rgba(213, 168, 81, 0.12);
  }
}
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

/* ----- FLOATING BADGE ANIMATION ----- */
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(1deg);
  }
  75% {
    transform: translateY(4px) rotate(-1deg);
  }
}
.hero-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

/* ----- HERO TITLE LETTER ANIMATION ----- */
@keyframes letterGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(213, 168, 81, 0.0);
  }
  50% {
    text-shadow: 0 0 40px rgba(213, 168, 81, 0.08);
  }
}
.hero-title .text-gradient-gold {
  animation: letterGlow 3s ease-in-out infinite;
}

/* ----- ENHANCED CATEGORY CARDS ----- */
.category-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card .category-overlay {
  background: linear-gradient(0deg, rgba(12,12,12,0.9) 0%, transparent 60%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-overlay {
  background: linear-gradient(0deg, rgba(12,12,12,0.95) 0%, rgba(213,168,81,0.05) 60%);
}
.category-card .category-overlay h4 {
  transition: transform 0.3s ease;
}
.category-card:hover .category-overlay h4 {
  transform: translateY(-4px);
}

/* ----- ENHANCED ICON CARDS ----- */
.icon-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.icon-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(213, 168, 81, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.icon-card:hover::before {
  opacity: 1;
}
.icon-card i {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.icon-card:hover i {
  transform: scale(1.15) rotate(3deg);
  color: var(--gold-light);
}

/* ----- ENHANCED COLLECTION CARDS ----- */
.collection-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card .collection-overlay {
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover .collection-overlay {
  opacity: 1;
  background: rgba(12, 12, 12, 0.4);
}
.collection-card .collection-overlay .btn-outline-gold {
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover .collection-overlay .btn-outline-gold {
  transform: scale(1);
}

/* ----- ENHANCED GALLERY ITEMS ----- */
.gallery-grid .gallery-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid .gallery-item .gallery-overlay {
  background: linear-gradient(0deg, rgba(12,12,12,0.85) 0%, transparent 50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid .gallery-item .gallery-overlay span {
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid .gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ----- ENHANCED BLOG CARDS ----- */
.blog-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card .blog-body .blog-tag {
  display: inline-block;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-body .blog-tag {
  color: var(--gold-light);
}
.blog-card .blog-link i {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

/* ----- ENHANCED TESTIMONIALS ----- */
.testimonial-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 4rem;
  color: rgba(213, 168, 81, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(213, 168, 81, 0.12);
}
.testimonial-card i {
  transition: all 0.4s ease;
}
.testimonial-card:hover i {
  opacity: 0.6;
  transform: scale(1.1);
}

/* ----- ENHANCED PROCESS CARDS ----- */
.process-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-card .step {
  transition: all 0.4s ease;
}
.process-card:hover .step {
  color: rgba(213, 168, 81, 0.15);
  transform: scale(1.1);
}
.process-card h5 {
  transition: color 0.3s ease;
}
.process-card:hover h5 {
  color: var(--gold);
}

/* ----- SCROLL INDICATOR ENHANCEMENT ----- */
.scroll-indicator {
  animation: floatDown 2.5s ease-in-out infinite;
}
.scroll-indicator span {
  letter-spacing: 3px;
  font-size: 0.6rem;
  opacity: 0.6;
}

/* ----- ENHANCED CTA SECTION ----- */
.cta-feature {
  transition: all 0.4s ease;
  padding: 4px 12px;
  border-radius: 50px;
}
.cta-feature:hover {
  background: rgba(213, 168, 81, 0.04);
  transform: translateY(-2px);
}
.cta-feature i {
  transition: transform 0.3s ease;
}
.cta-feature:hover i {
  transform: scale(1.2);
}

/* ----- FOOTER ENHANCEMENTS ----- */
.footer-link {
  position: relative;
  display: inline-block;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-link:hover::after {
  width: 100%;
}

.social-icons a {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ----- LOADING OVERLAY ENHANCEMENT ----- */
.loader-text {
  animation: pulseText 2s ease-in-out infinite;
}
@keyframes pulseText {
  0%, 100% {
    opacity: 1;
    letter-spacing: 8px;
  }
  50% {
    opacity: 0.7;
    letter-spacing: 12px;
  }
}

/* ----- SECTION HEADER ENHANCEMENTS ----- */
.section-tag {
  position: relative;
  padding-left: 16px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: var(--gold);
  border-radius: 4px;
}
.section-header-center .section-tag::before {
  left: -8px;
}
.section-divider {
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmerDivider 3s ease-in-out infinite;
}
@keyframes shimmerDivider {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ----- HERO BADGE ENHANCEMENT ----- */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(213,168,81,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-badge:hover::before {
  opacity: 1;
}

/* ----- FLOATING ELEMENTS ENHANCEMENT ----- */
.floating-elem {
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.floating-elem:hover {
  opacity: 0.6;
}

/* ----- IMAGE ZOOM ENHANCEMENT ----- */
.img-zoom {
  position: relative;
  overflow: hidden;
}
.img-zoom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(213,168,81,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.img-zoom img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-zoom:hover img {
  transform: scale(1.05);
}

/* ----- ENHANCED CTA BUTTONS ----- */
.cta-buttons .btn-primary.btn-lg {
  position: relative;
  overflow: hidden;
}
.cta-buttons .btn-primary.btn-lg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-buttons .btn-primary.btn-lg:hover::after {
  opacity: 1;
}

/* ----- RESPONSIVE ENHANCEMENTS ----- */
@media (max-width: 768px) {
  .stat-card {
    padding: 12px 8px;
  }
  .section-tag::before {
    display: none;
  }
  .section-tag {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .icon-card i {
    font-size: 1.6rem;
  }
  .testimonial-card::before {
    font-size: 2.8rem;
    top: -5px;
    left: 8px;
  }
}

/* ============================================================
   IMPROVED STYLES - Grid Layouts & Center Alignment
   ============================================================ */

/* ----- IMPROVED CATEGORY GRID (3×3) ----- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-light);
  border: 1px solid rgba(213, 168, 81, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 12, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card .category-overlay h4 {
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-overlay h4 {
  transform: translateY(-4px);
}

.cat-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  background: rgba(213, 168, 81, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ----- IMPROVED COLLECTION GRID (3×3) ----- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-light);
  border: 1px solid rgba(213, 168, 81, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
  border-color: rgba(213, 168, 81, 0.15);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.collection-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.collection-overlay .btn-outline-gold {
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-overlay .btn-outline-gold {
  transform: translateY(0) scale(1);
}

.collection-info {
  padding: 16px 18px 20px;
  text-align: center;
}

.collection-info h4 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.collection-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- IMPROVED FEATURES GRID (3×3) ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.icon-card {
  background: var(--dark);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(213, 168, 81, 0.04);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(213, 168, 81, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-card:hover::before {
  opacity: 1;
}

.icon-card:hover {
  border-color: rgba(213, 168, 81, 0.15);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 48px rgba(213, 168, 81, 0.06);
}

.icon-card i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-card:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.icon-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

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

/* ----- IMPROVED GALLERY GRID (3×3) ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid .gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-light);
  cursor: pointer;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 12, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid .gallery-item .gallery-overlay span {
  color: var(--text-strong);
  font-weight: 500;
  font-size: 1rem;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid .gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ----- IMPROVED TESTIMONIAL GRID (3×3) ----- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(213, 168, 81, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::after {
  width: 60%;
}

.testimonial-card:hover {
  border-color: rgba(213, 168, 81, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card i {
  color: var(--gold);
  font-size: 1.6rem;
  opacity: 0.2;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.testimonial-card h6 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- IMPROVED BLOG GRID (3×3) ----- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--dark-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(213, 168, 81, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  border-color: rgba(213, 168, 81, 0.12);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card .blog-body {
  padding: 18px 20px 22px;
}

.blog-card .blog-tag {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}

.blog-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 6px 0 10px;
  line-height: 1.3;
}

.blog-card .blog-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card .blog-link:hover {
  gap: 12px;
  color: var(--gold-light);
}

/* ----- IMPROVED PROCESS GRID (5 columns) ----- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--dark-light);
  border: 1px solid rgba(213, 168, 81, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.process-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover::before {
  width: 60%;
}

.process-card:hover {
  border-color: rgba(213, 168, 81, 0.1);
  transform: translateY(-6px);
}

.process-card .step {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(213, 168, 81, 0.06);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover .step {
  color: rgba(213, 168, 81, 0.12);
}

.process-card h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.process-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- STATS GRID (4 columns) ----- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 24px auto 0;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 16px 8px;
  background: rgba(213, 168, 81, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(213, 168, 81, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::after {
  width: 80%;
}

.stat-card:hover {
  border-color: rgba(213, 168, 81, 0.06);
  transform: translateY(-4px);
  background: rgba(213, 168, 81, 0.03);
}

/* Wraps number+suffix (or the PAN India label) so it can never break
   onto two lines and always sits at the same height in every card */
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
  min-height: 2.6rem;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-value {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ----- SECTION HEADER CENTER ALIGNMENT ----- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-header .section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 8px auto 0;
  border-radius: 10px;
}

.section-header .text-muted {
  max-width: 600px;
  margin: 8px auto 0;
  font-size: 1.05rem;
}

/* ----- ROW ALIGNMENT IMPROVEMENTS ----- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.row.align-center {
  align-items: center;
}

.col-lg-6 {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.col-lg-6 .section-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.col-lg-6 .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 16px;
}

.col-lg-6 .text-muted {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ----- IMPROVED CTA SECTION ----- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  text-align: center;
  border-top: 1px solid rgba(213, 168, 81, 0.04);
  border-bottom: 1px solid rgba(213, 168, 81, 0.04);
}

.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 4px 20px;
  background: rgba(213, 168, 81, 0.08);
  border: 1px solid rgba(213, 168, 81, 0.06);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-feature {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.cta-feature i {
  color: var(--gold);
  margin-right: 8px;
}

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

.cta-buttons .btn-primary.btn-lg {
  padding: 14px 40px;
  font-size: 1rem;
}

.cta-buttons .btn-outline-light.btn-lg {
  padding: 14px 40px;
  font-size: 1rem;
}

.cta-small {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta-small i {
  color: var(--gold);
  margin-right: 6px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .row {
    flex-direction: column;
    gap: 36px;
  }
  
  .col-lg-6 {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .col-lg-6 .section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-value {
    min-height: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-suffix {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 1.2rem;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-header .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  
  .icon-card {
    padding: 24px 18px;
  }
  
  .icon-card i {
    font-size: 2rem;
  }
  
  .collection-info h4 {
    font-size: 0.9rem;
  }
  
  .collection-info p {
    font-size: 0.7rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .stat-value {
    min-height: 1.6rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-suffix {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-card p {
    font-size: 0.7rem;
  }
  
  .icon-card {
    padding: 16px 12px;
  }
  
  .icon-card i {
    font-size: 1.6rem;
  }
  
  .icon-card h5 {
    font-size: 0.8rem;
  }
  
  .icon-card p {
    font-size: 0.7rem;
  }
  
  .testimonial-card {
    padding: 20px 18px;
  }
  
  .testimonial-card p {
    font-size: 0.85rem;
  }
  
  .blog-card .blog-body {
    padding: 14px 16px 18px;
  }
  
  .blog-card h5 {
    font-size: 0.9rem;
  }
  
  .collection-card .collection-info h4 {
    font-size: 0.75rem;
  }
  
  .collection-card .collection-info p {
    font-size: 0.6rem;
  }
  
  .category-card .category-overlay h4 {
    font-size: 0.8rem;
  }
  
  .category-card .category-overlay {
    padding: 14px 16px;
  }
  
  .cat-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    top: 12px;
    right: 12px;
  }
  
  .process-card {
    padding: 16px 12px;
  }
  
  .process-card .step {
    font-size: 2rem;
  }
  
  .process-card h5 {
    font-size: 0.8rem;
  }
  
  .process-card p {
    font-size: 0.65rem;
  }
  
  .cta-features {
    gap: 12px 20px;
  }
  
  .cta-feature {
    font-size: 0.8rem;
  }
  
  .cta-buttons .btn-primary.btn-lg,
  .cta-buttons .btn-outline-light.btn-lg {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
  
  .gallery-grid .gallery-item .gallery-overlay span {
    font-size: 0.75rem;
  }
  
  .gallery-grid .gallery-item .gallery-overlay {
    padding: 14px 16px;
  }
}

/* ----- NEW ANIMATIONS ----- */

/* Fade In Up with delay */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up-delay-1 {
  animation-delay: 0.1s;
}
.fade-in-up-delay-2 {
  animation-delay: 0.2s;
}
.fade-in-up-delay-3 {
  animation-delay: 0.3s;
}
.fade-in-up-delay-4 {
  animation-delay: 0.4s;
}
.fade-in-up-delay-5 {
  animation-delay: 0.5s;
}

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-in {
  animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Glow Pulse */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(213, 168, 81, 0.05);
  }
  50% {
    box-shadow: 0 0 40px rgba(213, 168, 81, 0.1);
  }
}

.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Slide In Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Slide In Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Rotate In */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.rotate-in {
  animation: rotateIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================
   DROPDOWN STABILITY FIXES - Add to style.css
   ============================================================ */

/* Ensure the parent li and dropdown are connected */
.has-dropdown {
  position: relative;
}

/* Create a hover bridge between the parent and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  z-index: 999;
}

/* Make sure the dropdown stays open when hovering the bridge */
.has-dropdown:hover::after {
  pointer-events: auto;
}

/* Ensure dropdown appears above everything */
.mega-dropdown {
  z-index: 1001;
}

/* Fix for the dropdown appearing behind other elements */
.mega-dropdown-grid {
  position: relative;
  z-index: 1002;
}

/* Fix for dropdown items being clickable */
.mega-dropdown-item {
  cursor: pointer;
  position: relative;
  z-index: 1003;
}

/* Ensure the dropdown doesn't flash/blink */
.has-dropdown .mega-dropdown {
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
}

/* Remove any transition delay that might cause blinking */
.has-dropdown:hover .mega-dropdown,
.mega-dropdown:hover {
  transition-delay: 0s;
}

/* For touch devices - prevent accidental triggers */
@media (hover: none) {
  .has-dropdown .mega-dropdown {
    display: none;
  }
  .has-dropdown:hover .mega-dropdown {
    display: none;
  }
}

/* ============================================================
   MEGA DROPDOWN - 4x4 Grid Layout
   ============================================================ */

/* ----- DROPDOWN CONTAINER ----- */
.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 0.55rem;
  transition: transform 0.3s var(--ease);
}

/* ----- MEGA DROPDOWN MENU - Fixed hover behavior ----- */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(213, 168, 81, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1001;
  min-width: 820px;
  max-width: 860px;
}

/* Show dropdown on hover of the parent li */
.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}

/* Add a hover bridge to prevent blink when moving cursor from link to dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  z-index: 1000;
  pointer-events: auto;
}

/* ----- 4x4 GRID LAYOUT ----- */
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

/* ----- DROPDOWN ITEMS ----- */
.mega-dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  background: transparent;
}

.mega-dropdown-item:hover {
  background: rgba(213, 168, 81, 0.06);
  transform: translateY(-4px);
}

.mega-dropdown-item .dropdown-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(213, 168, 81, 0.08);
  transition: border-color 0.3s var(--ease);
  background: var(--dark);
}

.mega-dropdown-item:hover .dropdown-img-wrap {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(213, 168, 81, 0.1);
}

.mega-dropdown-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.mega-dropdown-item:hover img {
  transform: scale(1.06);
}

.mega-dropdown-item span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-strong);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* ----- RESPONSIVE MEGA DROPDOWN ----- */
@media (max-width: 1200px) {
  .mega-dropdown {
    min-width: 660px;
    max-width: 700px;
    padding: 20px;
  }
  
  .mega-dropdown-grid {
    gap: 10px;
  }
  
  .mega-dropdown-item .dropdown-img-wrap {
    max-width: 140px;
  }
  
  .mega-dropdown-item span {
    font-size: 0.7rem;
  }
}

@media (max-width: 992px) {
  .mega-dropdown {
    display: none;
  }
  
  .has-dropdown::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mega-dropdown {
    min-width: auto;
    max-width: 90vw;
    left: 50%;
    right: auto;
    padding: 16px;
  }
  
  .mega-dropdown-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .mega-dropdown-item .dropdown-img-wrap {
    max-width: 100px;
  }
  
  .mega-dropdown-item span {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .mega-dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .mega-dropdown-item .dropdown-img-wrap {
    max-width: 80px;
  }
  
  .mega-dropdown-item span {
    font-size: 0.55rem;
  }
}