/*
 * Moon Lit Jewels - Premium Silver Jewellery Manufacturer & Wholesaler
 * Custom Stylesheet - style.css
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Color Palette */
  --color-dark: #070a13;
  --color-dark-gray: #0d1326;
  --color-charcoal: #141b30;
  --color-silver: #C0C0C0;
  --color-silver-light: #E0E0E0;
  --color-silver-dark: #8C8C8C;
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #AA7C11;
  --color-white: #FFFFFF;
  --color-offwhite: #f5f7fa;
  --color-gem-blue: #3a86ff;
  --color-gem-blue-light: #73a6fc;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.25);
  --shadow-blue: 0 5px 15px rgba(58, 134, 255, 0.2);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  z-index: 99999;
  transition: width 0.1s ease-out;
}

/* Base Settings */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 600;
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Custom Text Gradients & Gold accents */
.text-gold {
  color: var(--color-gold) !important;
}

.text-gold-gradient {
  background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold) 35%, var(--color-gold-dark) 70%, var(--color-gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineGold 5s linear infinite;
}

.text-silver-gradient {
  background: linear-gradient(90deg, var(--color-white) 0%, var(--color-silver) 35%, var(--color-silver-dark) 70%, var(--color-white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineSilver 6s linear infinite;
}

.text-gem-gradient {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gem-blue-light) 50%, var(--color-gem-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-gold {
  border-color: var(--color-gold) !important;
}

.bg-dark-premium {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.bg-charcoal-premium {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: var(--color-white);
}

.section-header .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0.5rem auto 1.5rem;
  position: relative;
}

.section-header .divider::after {
  content: '✦';
  color: var(--color-gold);
  font-size: 14px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--section-bg, var(--color-dark));
  padding: 0 10px;
}

.section-header p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Custom Buttons with Shimmer Sweeps */
.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white) !important;
  border: 1px solid var(--color-gold);
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-gold:hover {
  background: transparent;
  color: var(--color-gold) !important;
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-gold {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-gold);
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.btn-outline-gold:hover::before {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--color-white) !important;
  border: 1px solid var(--color-white);
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.btn-outline-white:hover::before {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark) !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* SVG Custom Dividers */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 5;
}

.section-divider-top {
  top: -1px;
}

.section-divider-bottom {
  bottom: -1px;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

/* Base sections relative layout updates */
.about-section, .services-section, .why-choose-section, .gallery-section, .values-section, .contact-section {
  position: relative;
}

/* Keyframe Animations */
@keyframes shineGold {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes shineSilver {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Navbar Customizations */
.navbar {
  padding: 1rem 0;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.navbar.navbar-scrolled {
  padding: 0.6rem 0;
  background-color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--color-white);
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--color-gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown styling */
.dropdown-menu {
  background-color: var(--color-dark-gray);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  margin-top: 10px;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.5rem;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
}

/* Home Hero Section - Editorial Luxury */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(10, 40, 40, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(8, 35, 35, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #040a0a 0%, #071414 20%, #0a1e1e 40%, #071818 60%, #050e0e 80%, #030808 100%);
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 40% 45%, rgba(10, 60, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    linear-gradient(to right, rgba(4, 10, 10, 0.7) 0%, rgba(4, 10, 10, 0.3) 50%, rgba(4, 10, 10, 0.5) 100%);
  z-index: 1;
}

/* Ambient Light Effects */
.hero-nebula-1 {
  position: absolute;
  top: 5%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 100, 90, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 2;
  animation: nebulaFloat 12s ease-in-out infinite alternate;
}

.hero-nebula-2 {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
  animation: nebulaFloat 15s ease-in-out infinite alternate-reverse;
}

.hero-ambient-light {
  position: absolute;
  top: 30%;
  left: 35%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 220, 210, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
}

@keyframes nebulaFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.08); }
}

/* Hero Background Product Image */
.hero-product-bg {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 55%;
  max-width: 750px;
  z-index: 3;
  pointer-events: none;
}

.hero-product-bg-img {
  width: 100%;
  height: auto;
  opacity: 0.45;
  filter: brightness(0.8) contrast(1.1);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.hero-product-bg-glow {
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(60px);
}

/* Twinkling Stars */
@keyframes starTwinkleLarge {
  0%, 100% { opacity: 0.1; transform: scale(0.7); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-star-twinkle {
  position: absolute;
  color: rgba(180, 220, 210, 0.3);
  font-size: 8px;
  animation: starTwinkleLarge 4s infinite ease-in-out;
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 0 12px rgba(180, 220, 210, 0.5);
}

/* Floating Particles */
@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: translateY(-130px) rotate(360deg); opacity: 0; }
}

.hero-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(180, 220, 210, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

/* Main Container */
.hero-main-container {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
}

/* Editorial Text */
.hero-editorial {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  padding: 2rem 0;
}

.hero-editorial-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
}

.hero-tag-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
}

.hero-editorial-heading {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.hero-editorial-heading em {
  font-style: italic;
  font-weight: 300;
}

.hero-editorial-desc {
  font-size: 1rem;
  color: rgba(192, 200, 200, 0.7);
  max-width: 450px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Editorial CTA Buttons */
.hero-editorial-cta {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-btn-discover {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.hero-btn-discover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.hero-btn-discover:hover {
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.hero-btn-discover:hover::before {
  transform: translateX(0);
}

.hero-btn-discover span,
.hero-btn-discover i {
  position: relative;
  z-index: 1;
}

.hero-btn-contact {
  padding: 0.9rem 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}

.hero-btn-contact:hover {
  color: var(--color-gold);
}

/* Hero Preview Cards */
.hero-preview-cards {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-top: 4rem;
}

.hero-preview-card {
  background: rgba(10, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.hero-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-preview-card-1 {
  display: flex;
  width: 280px;
  height: 130px;
}

.hero-preview-card-1 .hero-preview-img {
  width: 120px;
  min-height: 100%;
  overflow: hidden;
}

.hero-preview-card-1 .hero-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-preview-card-1:hover .hero-preview-img img {
  transform: scale(1.08);
}

.hero-preview-card-1 .hero-preview-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-preview-card-1 .hero-preview-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.hero-preview-card-1 .hero-preview-info p {
  font-size: 0.72rem;
  color: rgba(180, 200, 200, 0.6);
  margin: 0;
  letter-spacing: 0.5px;
}

.hero-preview-card-2 {
  width: 320px;
  display: flex;
  overflow: hidden;
}

.hero-preview-card-2 .hero-preview-img {
  width: 130px;
  min-height: 120px;
  overflow: hidden;
}

.hero-preview-card-2 .hero-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-preview-card-2:hover .hero-preview-img img {
  transform: scale(1.08);
}

.hero-preview-card-2 .hero-preview-info {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-preview-card-2 .hero-preview-info h5 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.hero-preview-thumbs {
  display: flex;
  gap: 8px;
}

.hero-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-thumb:hover {
  border-color: var(--color-gold);
  transform: scale(1.1);
}

/* Purity Badge */
.hero-purity-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  color: rgba(212, 175, 55, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  align-self: flex-end;
}

.hero-purity-badge:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

/* About Us Section */
.about-section {
  padding: 8rem 0;
  background-color: var(--color-dark-gray);
  --section-bg: var(--color-dark-gray);
}

.about-img-wrapper {
  position: relative;
  padding: 1.5rem;
}

.about-img-1 {
  width: 85%;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  border-radius: 12px;
  transition: all 0.5s ease;
}

.about-img-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: auto;
  border: 4px solid var(--color-dark-gray);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border-radius: 12px;
  transition: all 0.5s ease;
}

.about-img-2:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-img-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border: 2px solid var(--color-gold);
  z-index: 1;
  transform: translate(25px, 25px);
  border-radius: 12px;
  opacity: 0.7;
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  color: var(--color-white);
}

.about-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.about-content .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
}

/* Trust Statistics Counter Section */
.stats-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(20, 27, 48, 0.95) 0%, rgba(7, 10, 19, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-item {
  padding: 1.5rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.col-md-3:last-child .stat-item::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  display: inline;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* Our Services Section */
.services-section {
  padding: 8rem 0;
  background-color: var(--color-charcoal);
  --section-bg: var(--color-charcoal);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.service-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 14px 14px 0 0;
}

.service-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover .service-img-container::after {
  left: 150%;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.85);
}

.service-card:hover .service-img-container img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.service-icon-wrap {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 3;
}

.service-card:hover .service-icon-wrap {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.service-body {
  padding: 2.2rem 1.8rem 1.8rem;
}

.service-body h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.service-card:hover .service-body h4 {
  color: var(--color-gold) !important;
}

.service-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 6rem 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem 1.8rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.12);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-box:hover .feature-icon-wrap {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.1);
}

.feature-box h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-white);
}

.feature-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 6rem 0;
  background: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}

.mission-vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.85);
  z-index: 1;
}

.mission-vision-container {
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2.5rem;
  height: 100%;
  color: var(--color-white);
  transition: var(--transition-smooth);
  position: relative;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.1);
}

.glass-card .icon-container {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.glass-card h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.glass-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Product Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--color-dark-gray);
  --section-bg: var(--color-dark-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  z-index: 2;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    transparent 0%,
    transparent 40%, 
    rgba(7, 10, 19, 0.6) 70%, 
    rgba(7, 10, 19, 0.9) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 14px;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(212, 175, 55, 0.15),
    0 0 60px rgba(212, 175, 55, 0.06);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 14px;
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.65) saturate(1.2);
}

/* Category Badge */
.gallery-category-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold-light);
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 0.8rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
}

.gallery-item:hover .gallery-category-badge {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  padding: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info h4 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: capitalize;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.gallery-info p {
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Our Values Section */
.values-section {
  padding: 8rem 0;
  background-color: var(--color-charcoal);
  --section-bg: var(--color-charcoal);
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.value-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-white);
}

.value-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* Contact Us Section */
.contact-section {
  padding: 8rem 0;
  background-color: var(--color-dark);
  --section-bg: var(--color-dark);
}

.contact-info-card {
  background: rgba(13, 19, 38, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--color-white);
  padding: 3.5rem 3rem;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-info-card h3 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-card p.contact-desc {
  color: rgba(192, 192, 192, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-text h5 {
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text p, .contact-text a {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Contact Form Styling */
.contact-form-wrap {
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  height: 100%;
  color: var(--color-white);
}

.contact-form-wrap h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.form-control {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-white) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 0 15px rgba(212, 175, 55, 0.15) !important;
  transform: translateY(-2px);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.consent-checkbox {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.02);
}

.form-check-input:checked {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.form-check-input:focus {
  box-shadow: none;
  border-color: var(--color-gold);
}

.form-check-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  cursor: pointer;
}

/* Alert status messages */
.contact-status {
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
}

/* Google Map styling */
.map-section {
  padding: 0;
  background-color: var(--color-white);
  line-height: 0;
}

.map-container {
  height: 450px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
.footer-section {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-widget h4 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-desc {
  color: var(--color-silver);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--color-silver);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--color-gold);
  margin-right: 12px;
  margin-top: 4px;
}

.footer-contact-text, .footer-contact-text a {
  color: var(--color-silver);
  font-size: 0.9rem;
  margin: 0;
}

.footer-contact-text a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  color: var(--color-silver-dark);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-legal-links a {
  color: var(--color-silver-dark);
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

/* Legal Pages Styling (Terms & Conditions, Privacy Policy) */
.legal-header {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-header h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.legal-content {
  padding: 5rem 0;
  background-color: var(--color-dark-gray);
}

.legal-section-block {
  margin-bottom: 2.5rem;
}

.legal-section-block h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.legal-section-block p, .legal-section-block ul {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.legal-section-block ul {
  padding-left: 20px;
}

.legal-section-block li {
  margin-bottom: 0.5rem;
}

.legal-section-block a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal-section-block a:hover {
  color: var(--color-gold-light);
}

/* Scroll Animation Styles (Intersection Observer) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated.show {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Custom 5-Column Grid for Values on Extra Large Screens */
@media (min-width: 1200px) {
  .col-xl-2-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-editorial-heading {
    font-size: 4.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2.3rem;
  }
  .hero-section {
    padding: 6rem 0 4rem;
    min-height: auto;
  }
  .hero-main-container {
    padding-top: 2rem;
  }
  .hero-editorial-heading {
    font-size: 3.5rem;
  }
  .hero-product-bg {
    display: none;
  }
  .about-img-wrapper {
    margin-bottom: 3rem;
  }
  .about-img-frame {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-card {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
  }
  .contact-form-wrap {
    padding: 2.5rem 2rem;
  }
  .footer-widget {
    margin-bottom: 2.5rem;
  }
  .footer-bottom {
    margin-top: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-editorial {
    text-align: center;
    padding: 1rem 0;
  }
  .hero-editorial-tag {
    justify-content: center;
  }
  .hero-editorial-heading {
    font-size: 2.8rem;
  }
  .hero-editorial-desc {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-editorial-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-btn-discover {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 260px;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

/* Twinkling Logo Star Animations */
@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.logo-star-1 { animation: starTwinkle 3s infinite ease-in-out; transform-origin: 32px 34px; }
.logo-star-2 { animation: starTwinkle 2s infinite ease-in-out; transform-origin: 68px 31px; }
.logo-star-3 { animation: starTwinkle 4s infinite ease-in-out; transform-origin: 72px 68px; }

/* Active Menu Highlights Glow */
.nav-link::after {
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
}

/* Form controls focus enhancements */
.form-control {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.form-control:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px);
}

/* Value card hover */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.45) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Hero Floating Image Elements */
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-image-float-wrapper {
  animation: floatImage 7s infinite ease-in-out;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-image-wrap {
  position: relative;
  padding: 1.5rem;
  z-index: 10;
  text-align: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image-container {
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    0 0 45px rgba(212, 175, 55, 0.18),
    0 0 1px rgba(212, 175, 55, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  z-index: 3;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%), #0a0e1a;
}

.hero-image-container:hover {
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.7), 
    0 0 55px rgba(212, 175, 55, 0.25),
    0 0 1px rgba(212, 175, 55, 0.5);
  border-color: rgba(212, 175, 55, 0.45);
}

.hero-image-main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(1.05) contrast(1.05);
}

.hero-image-container:hover .hero-image-main {
  transform: scale(1.04);
  filter: brightness(1.1) contrast(1.08);
}

.hero-image-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: -150% -150%;
  pointer-events: none;
  z-index: 4;
  animation: imageSheen 7s infinite ease-in-out;
}

.hero-image-frame {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  outline: 1.5px dashed rgba(212, 175, 55, 0.5);
  outline-offset: -8px;
  z-index: 2;
  transform: translate(18px, 18px);
  opacity: 0.85;
  pointer-events: none;
  animation: framePulse 6s infinite alternate ease-in-out;
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.3),
    0 0 60px rgba(212, 175, 55, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image-frame::before {
  content: '✦';
  color: var(--color-gold-light);
  font-size: 24px;
  position: absolute;
  top: -16px;
  left: -12px;
  text-shadow: 0 0 15px var(--color-gold), 0 0 30px rgba(212, 175, 55, 0.3);
  animation: starTwinkle 3s infinite ease-in-out;
  filter: drop-shadow(0 0 6px var(--color-gold));
}

.hero-image-frame::after {
  content: '✦';
  color: var(--color-gold-light);
  font-size: 24px;
  position: absolute;
  bottom: -16px;
  right: -12px;
  text-shadow: 0 0 15px var(--color-gold), 0 0 30px rgba(212, 175, 55, 0.3);
  animation: starTwinkle 3s infinite ease-in-out;
  animation-delay: 1.5s;
  filter: drop-shadow(0 0 6px var(--color-gold));
}

@keyframes framePulse {
  0% {
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1);
    outline-color: rgba(212, 175, 55, 0.5);
  }
  100% {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.55), 0 0 90px rgba(212, 175, 55, 0.18);
    outline-color: rgba(243, 229, 171, 0.75);
  }
}

@keyframes imageSheen {
  0% { background-position: -150% -150%; }
  35%, 100% { background-position: 150% 150%; }
}

.hero-starfield-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Hero Divider Ornaments */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}

.hero-divider .line {
  flex-grow: 0;
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero-divider .line:last-child {
  background: linear-gradient(-90deg, var(--color-gold), transparent);
}

.hero-divider .symbol {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--color-gold);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* 925 Hallmark Product Stamp Badge */
.product-badge {
  position: absolute;
  bottom: 8%;
  right: 5%;
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--color-white);
  padding: 0.65rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.5), 
    0 0 20px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 12;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
}

.product-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, transparent 50%, rgba(212, 175, 55, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-badge:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--color-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 18px 35px rgba(212, 175, 55, 0.35),
    0 0 30px rgba(212, 175, 55, 0.25);
}

.product-badge i {
  animation: iconPulse 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 4px var(--color-gold));
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 10px var(--color-gold)); }
}

/* Custom header divider corrections are now handled dynamically via --section-bg */



