/* ============================================================
   YUG INTERNATIONAL JEWELLERY — MAIN STYLESHEET
   Luxury B2B Diamond Jewellery Manufacturer, Mumbai
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Metallic Gold Palette */
  --gold-primary: #C9A227;
  --gold-metal-lo: #7A5C0A;
  --gold-metal-mid: #C9A227;
  --gold-metal-hi: #F0D060;
  --gold-secondary: #F4E4C1;
  --gold-accent: #E8C84A;
  --gold-dark: #8B6914;
  /* Metal gradient reusable as background shorthand */
  --gold-btn-bg: linear-gradient(90deg, #7A5C0A 0%, #C9A227 25%, #F0D060 50%, #C9A227 75%, #7A5C0A 100%);

  --black: #212a61;
  --dark-gray: #212a61;
  --mid-gray: #1A3A6D;
  --light-gray: #888888;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --overlay: rgba(33, 42, 97, 0.72);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --transition-fast: 0.25s ease;
  --transition-mid: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.22);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --section-pad: 100px 0;
  --nav-offset: clamp(106px, 11vw, 145px);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-gray);
  padding-top: var(--nav-offset);
  overflow-x: hidden;
  line-height: 1.7;
}

body.overlay-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

address {
  font-style: normal;
}

/* Keep in-page anchor target visible below fixed nav */
#company {
  scroll-margin-top: var(--nav-offset);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212a61;
}

.curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}

.curtain-left {
  left: 0;
  transform-origin: left;
}

.curtain-right {
  right: 0;
  transform-origin: right;
}

.curtain-left.open {
  transform: translateX(-100%);
}

.curtain-right.open {
  transform: translateX(100%);
}

.intro-logo {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-logo.visible {
  opacity: 1;
}

.intro-logo-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.intro-logo-img {
  width: min(700px, 100vw);
  height: auto;
}

.intro-diamond-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  animation: diamondSpin 2s ease-in-out infinite;
}

.intro-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3em;
  line-height: 1;
}

.intro-brand-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  color: var(--gold-secondary);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.intro-gold-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1rem auto 0;
  transition: width 0.6s ease 0.3s;
}

.intro-logo.visible .intro-gold-line {
  width: 200px;
}

#intro-overlay.done {
  display: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#mainNav {
  background: #212a61;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 2px 20px rgba(2, 8, 24, 0.42);
  z-index: 1100;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

#mainNav.scrolled {
  padding: 0.35rem 0;
  box-shadow: 0 4px 30px rgba(2, 8, 24, 0.62);
  border-bottom-color: rgba(201, 162, 39, 0.35);
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  transition: transform var(--transition-mid);
}

.nav-logo-diamond {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform var(--transition-mid);
}

.navbar-brand:hover .nav-logo-img {
  transform: scale(1.03);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-yug {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}

.nav-logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--gold-secondary);
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.navbar-nav .nav-link:hover {
  color: var(--gold-primary) !important;
}

/* Dropdown */
.dropdown-menu {
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 160px;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.dropdown-item:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.07);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn-gold {
  /* Metallic gold gradient — background-position shimmer on hover */
  background: linear-gradient(90deg,
      var(--gold-metal-lo) 0%,
      var(--gold-metal-mid) 25%,
      var(--gold-metal-hi) 50%,
      var(--gold-metal-mid) 75%,
      var(--gold-metal-lo) 100%);
  background-size: 200% 100%;
  background-position: right center;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  border: none;
  display: inline-block;
  transition: background-position 0.55s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0s;
}

.btn-gold:hover {
  background-position: left center;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold-outline {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: all var(--transition-mid);
  display: inline-block;
}

.btn-gold-outline:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-parallax-bg {
  position: absolute;
  inset: -8%;
  background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(33, 42, 97, 0.86) 0%,
      rgba(11, 35, 74, 0.66) 50%,
      rgba(33, 42, 97, 0.82) 100%);
  z-index: 1;
}

/* Hero shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 2px;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  right: 8%;
  transform: rotate(45deg);
  animation: shapeFloat 8s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  transform: rotate(20deg);
  animation: shapeFloat 12s ease-in-out infinite 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 25%;
  transform: rotate(30deg);
  animation: shapeFloat 10s ease-in-out infinite 1s;
}

.shape-4 {
  width: 300px;
  height: 300px;
  bottom: -5%;
  right: -3%;
  transform: rotate(45deg);
  opacity: 0.06;
  animation: shapeFloat 15s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-title-accent {
  color: var(--gold-primary);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-secondary);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-gold {
  color: var(--gold-primary);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   COMPANY PROFILE SECTION
   ============================================================ */
.section-company {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.company-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.03), transparent);
  pointer-events: none;
}

.company-mission {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 400;
}

.company-body {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Stats */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 2.5rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(212, 175, 55, 0.2);
}

/* Capability cards */
.capability-card {
  background: var(--off-white);
  border: 1px solid transparent;
  border-top: 2px solid var(--gold-primary);
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  transition: all var(--transition-mid);
  height: 100%;
}

.capability-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
  background: var(--white);
}

.capability-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.capability-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.capability-body {
  font-size: 0.8rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* Company Image Grid */
.company-image-grid {
  position: relative;
}

.company-img-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.company-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.company-img-main:hover img {
  transform: scale(1.04);
}

.company-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(33, 42, 97, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.company-img-badge i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.company-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.company-img-sm {
  border-radius: var(--radius);
  overflow: hidden;
}

.company-img-sm img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.company-img-sm:hover img {
  transform: scale(1.06);
}

/* ============================================================
   JEWELLERY COLLECTION HEADER
   ============================================================ */
.section-jewellery-header {
  padding: 80px 0 40px;
  background: var(--dark-gray);
  text-align: center;
}

.section-jewellery-header .section-eyebrow {
  justify-content: center;
}

.section-jewellery-header .section-eyebrow::before {
  display: none;
}

.section-jewellery-header .section-title {
  color: var(--white);
}

.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.collection-tab {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.55rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.collection-tab:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.collection-tab.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black);
  font-weight: 600;
}

/* ============================================================
   COLLECTION SECTIONS
   ============================================================ */
.section-collection {
  padding: var(--section-pad);
  background: var(--off-white);
}

.section-collection.section-alt {
  background: var(--white);
}

.collection-header {
  margin-bottom: 3rem;
}

.collection-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-gray);
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.collection-title-num {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  border: 1px solid var(--gold-primary);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.collection-desc {
  font-size: 0.88rem;
  color: var(--light-gray);
  margin-top: 0.5rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-mid);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--off-white);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-img img {
  transform: scale(1.07);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 42, 97, 0);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-mid);
}

.product-card:hover .product-card-overlay {
  background: rgba(33, 42, 97, 0.35);
  border-color: rgba(212, 175, 55, 0.6);
}

.product-view-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-mid);
}

.product-card:hover .product-view-icon {
  opacity: 1;
  transform: scale(1);
}

.product-card-info {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-code {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 600;
}

.product-category {
  font-size: 0.68rem;
  color: var(--light-gray);
  margin-top: 0.15rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   PRODUCT MODAL (LIGHTBOX)
   ============================================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 38, 0.92);
  cursor: pointer;
}

.modal-container {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 820px);
  width: 100%;
  background: var(--dark-gray);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-modal.open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(33, 42, 97, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.modal-close:hover {
  background: var(--gold-primary);
  color: var(--black);
  border-color: var(--gold-primary);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(33, 42, 97, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.modal-prev {
  left: 0.75rem;
}

.modal-next {
  right: 0.75rem;
}

.modal-nav:hover {
  background: var(--gold-primary);
  color: var(--black);
  border-color: var(--gold-primary);
}

.modal-image-wrap {
  position: relative;
  background: var(--black);
  width: 100%;
  aspect-ratio: 1;
  max-height: 65vh;
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.modal-image-wrap.zoomed {
  cursor: zoom-out;
}

.modal-image-wrap.zoomed img {
  transform: scale(1.8);
}

.modal-zoom-hint {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.modal-info {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-product-code {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.modal-category {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.section-events {
  padding: var(--section-pad);
  background: var(--dark-gray);
}

.section-events .section-title {
  color: var(--white);
}

.section-events .section-eyebrow {
  color: var(--gold-primary);
}

.events-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.events-grid {
  display: grid;

  .section-events-page {
    background: var(--white);
    padding: var(--section-pad);
  }

  .section-contact-page {
    background: var(--white);
    padding: var(--section-pad);
  }

  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-mid);
}

.event-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-left-color: var(--gold-accent);
  transform: translateX(4px);
}

.event-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.event-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.event-location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.event-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section-contact {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}

.contact-gold-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-contact .section-title {
  color: var(--white);
}

.section-contact .section-eyebrow {
  color: var(--gold-primary);
}

.contact-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all var(--transition-fast);
}

.contact-item:hover .contact-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-text a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.contact-text a:hover {
  color: var(--gold-primary);
}

/* Map */
.map-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  display: block;
}

.map-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(33, 42, 97, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.map-overlay-badge i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.map-overlay-badge strong {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-primary);
}

.map-overlay-badge span {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-gray);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-top {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.footer-diamond {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer-brand-sub {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold-secondary);
  text-transform: uppercase;
}

.footer-tagline-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
  max-width: 250px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-address-mini {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-email {
  font-size: 0.78rem;
  color: var(--gold-primary);
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

.footer-crafted {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
  font-style: italic;
}

.footer-diamond-sm {
  color: var(--gold-primary);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  color: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-mid);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-accent);
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HEADER (sub-pages: jewellery, events, contact)
   ============================================================ */
.page-header {
  padding: 120px 0 70px;
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-header-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  line-height: 1.8;
}

.breadcrumb-bar {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  background: rgba(33, 42, 97, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.breadcrumb-bar a {
  color: var(--gold-primary);
}

.breadcrumb-bar span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.4rem;
}

.breadcrumb-bar .current {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   FILTER BAR (jewellery page)
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  color: var(--light-gray);
  padding: 0.55rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  touch-action: manipulation;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.filter-btn.active {
  background: linear-gradient(90deg, var(--gold-metal-lo) 0%, var(--gold-metal-mid) 30%, var(--gold-metal-hi) 50%, var(--gold-metal-mid) 70%, var(--gold-metal-lo) 100%);
  background-size: 200% 100%;
  border-color: var(--gold-primary);
  color: #1A1A1A;
  font-weight: 700;
}

.products-count {
  text-align: center;
  font-size: 0.78rem;
  color: var(--light-gray);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.products-count strong {
  color: var(--gold-primary);
}

.product-card.is-filtered-out {
  display: none !important;
}

/* ============================================================
   YUG IMAGE PLACEHOLDER (like PWP course cards)
   ============================================================ */
.yug-img-placeholder {
  background: linear-gradient(145deg, #111111 0%, #1D1D1D 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  width: 100%;
}

.yug-ph-diamond {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
  display: block;
}

.yug-ph-monogram {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.35em;
  line-height: 1;
}

.yug-ph-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0.75rem auto;
}

.yug-ph-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* ============================================================
   FEATURED COLLECTION (home page teaser)
   ============================================================ */
.section-featured {
  padding: var(--section-pad);
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.featured-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-mid);
  text-decoration: none;
  display: block;
}

.featured-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.featured-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.07);
}

.featured-card-label {
  padding: 0.85rem 1rem;
  border-top: 2px solid var(--gold-primary);
  background: var(--white);
}

.featured-card-label .cat-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.featured-card-label .cat-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

/* ============================================================
   EVENTS TEASER STRIP (home page)
   ============================================================ */
.section-events-teaser {
  padding: 80px 0;
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.section-events-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-events-teaser .section-title {
  color: var(--white);
}

.events-teaser-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: none;
  width: 100%;
}

/* ============================================================
   CONTACT CTA STRIP (home page)
   ============================================================ */
.section-contact-cta {
  padding: 90px 0;
  background: var(--black);
  position: relative;
  text-align: center;
}

.section-contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.section-events-page {
  padding: var(--section-pad);
  background: var(--off-white);
}

.events-page-body {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.events-page-img-wrap {
  max-width: 700px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.section-contact-page {
  padding: var(--section-pad);
  background: var(--off-white);
}

.section-contact-page .contact-item {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(33, 42, 97, 0.04));
  border: 1px solid rgba(33, 42, 97, 0.16);
  border-top: 2px solid rgba(212, 175, 55, 0.7);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: all var(--transition-mid);
}

.section-contact-page .contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.section-contact-page .contact-office-name {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--dark-gray);
  margin-bottom: 0.45rem;
}

.section-contact-page .contact-text,
.section-contact-page address {
  color: var(--mid-gray);
  line-height: 1.75;
}

.section-contact-page .contact-item {
  width: 100%;
  min-width: 0;
}

.section-contact-page .contact-text,
.section-contact-page address,
.section-contact-page .contact-text a,
.section-contact-page .contact-office-name {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-contact-page .contact-text a {
  color: var(--dark-gray);
}

.section-contact-page .contact-text a:hover {
  color: var(--gold-primary);
}

/* ============================================================
   JEWELLERY PAGE GRID
   ============================================================ */
.section-jewellery-page {
  padding: 60px 0 var(--section-pad);
  background: var(--off-white);
}

.section-jewellery-page.section-alt-bg {
  background: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  :root {
    --section-pad: 70px 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  #mainNav .container-xl {
    overflow-x: clip;
  }

  .navbar-collapse {
    position: relative;
    z-index: 1101;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #212a61;
    border: 1px solid rgba(201, 162, 39, 0.15);
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius);
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .btn-gold-outline {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 0.5rem !important;
  }

  .navbar-nav .nav-link::after {
    left: 0.5rem;
  }

  .dropdown-menu {
    background: rgba(9, 31, 66, 0.99);
  }

  .stats-row {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 55px 0;
  }

  .section-contact-page .row {
    --bs-gutter-x: 1rem;
  }

  .section-contact-page .contact-item {
    padding: 1.1rem;
  }

  .hero-actions .btn-outline-light {
    display: none;
  }

  .hero-badges {
    display: none;
  }

  .company-img-row {
    display: none;
  }

  .nav-logo-img {
    height: 90px;
    max-width: 320px;
  }

  .footer-logo-img {
    height: 95px;
    max-width: 340px;
  }

  .modal-container {
    max-width: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .filter-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.15rem 0.2rem 0.35rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 0.45rem 0.9rem;
    font-size: 0.71rem;
    letter-spacing: 0.08em;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 50%;
  }
}