/* =====================================================================
   Asad Enterprise — Premium Photo & Print Studio
   style.css — Design system + component styling
   Dark luxury theme with warm golden highlights
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --gold:        #F5A623;   /* Primary */
  --gold-soft:   #FFC857;   /* Accent */
  --gold-deep:   #d98a0f;
  --ink:         #111827;   /* Secondary */
  --bg:          #0F172A;   /* Background */
  --bg-2:        #0b1220;   /* Deeper background */
  --light:       #F8FAFC;   /* Light background */
  --white:       #FFFFFF;

  /* Surfaces */
  --surface:       rgba(255, 255, 255, 0.04);
  --surface-2:     rgba(255, 255, 255, 0.07);
  --surface-border:rgba(255, 255, 255, 0.10);
  --glass:         rgba(255, 255, 255, 0.06);
  --glass-border:  rgba(255, 255, 255, 0.14);

  /* Text */
  --text:        #E7ECF3;
  --text-muted:  #9AA7BD;
  --text-dim:    #6B7790;

  /* Gradients */
  --grad-gold:    linear-gradient(135deg, #F5A623 0%, #FFC857 100%);
  --grad-gold-2:  linear-gradient(135deg, #FFC857 0%, #F5A623 100%);
  --grad-dark:    linear-gradient(160deg, #0F172A 0%, #0b1220 100%);
  --grad-hero:    radial-gradient(1200px 600px at 80% 10%, rgba(245,166,35,0.18), transparent 60%),
                  radial-gradient(900px 500px at 10% 90%, rgba(255,200,87,0.10), transparent 55%);

  /* Shadows */
  --shadow-sm:  0 4px 14px rgba(0,0,0,0.25);
  --shadow-md:  0 12px 32px rgba(0,0,0,0.35);
  --shadow-lg:  0 24px 60px rgba(0,0,0,0.45);
  --shadow-gold:0 14px 40px rgba(245,166,35,0.30);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --nav-h: 80px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);

  /* Fonts */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* =====================================================================
   THEME TOGGLE + LIGHT MODE
   ===================================================================== */
.theme-toggle {
  position: fixed;
  bottom: 1.6rem;
  right: 5.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 9000;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.theme-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(245,166,35,0.45);
}
.theme-toggle i {
  grid-area: 1 / 1;
  font-size: 1.15rem;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.theme-toggle .bi-moon-fill,
html[data-theme="light"] .theme-toggle .bi-sun-fill {
  opacity: 0;
  transform: scale(.55) rotate(-30deg);
}
html[data-theme="light"] .theme-toggle .bi-moon-fill {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

html[data-theme="light"] body { background: var(--bg); color: var(--text); }
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6,
html[data-theme="light"] .navbar-brand,
html[data-theme="light"] .offcanvas-title,
html[data-theme="light"] .hero-stats strong,
html[data-theme="light"] .about-list strong,
html[data-theme="light"] .counter-card .counter,
html[data-theme="light"] .testimonial-author strong,
html[data-theme="light"] .price,
html[data-theme="light"] .contact-item strong,
html[data-theme="light"] .footer-brand,
html[data-theme="light"] .footer-title {
  color: var(--ink);
}
html[data-theme="light"] .main-nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(17,24,39,0.10);
}
html[data-theme="light"] .navbar-nav .nav-link:hover,
html[data-theme="light"] .navbar-nav .nav-link.active,
html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .filter-btn:hover,
html[data-theme="light"] .accordion-custom .accordion-button,
html[data-theme="light"] #videoModal .modal-title {
  color: var(--ink) !important;
}
html[data-theme="light"] .btn-ghost {
  background: rgba(255,255,255,0.55);
}
html[data-theme="light"] .btn-ghost:hover {
  color: var(--gold-deep) !important;
  background: rgba(245,166,35,0.12);
}
html[data-theme="light"] .offcanvas,
html[data-theme="light"] #videoModal .modal-content {
  background: var(--bg);
}
html[data-theme="light"] .btn-close-white { filter: none; }
html[data-theme="light"] .preloader-bar,
html[data-theme="light"] .footer-newsletter .form-control,
html[data-theme="light"] .contact-form .form-control,
html[data-theme="light"] .contact-form .form-select {
  background: rgba(255,255,255,0.82);
}
html[data-theme="light"] .contact-form .form-control,
html[data-theme="light"] .contact-form .form-select,
html[data-theme="light"] .footer-newsletter .form-control {
  border-color: var(--surface-border);
  color: var(--ink);
}
html[data-theme="light"] .contact-form .form-control:focus,
html[data-theme="light"] .contact-form .form-select:focus,
html[data-theme="light"] .footer-newsletter .form-control:focus {
  background: #fff;
  color: var(--ink);
}
html[data-theme="light"] .contact-form .form-select option {
  background: #fff;
  color: var(--ink);
}
html[data-theme="light"] .map-wrap iframe { filter: grayscale(0.05) saturate(1.05); }
html[data-theme="light"] .hero-divider path { fill: var(--bg); }
html[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(17,24,39,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.045) 1px, transparent 1px);
}
html[data-theme="light"] .floating-frame {
  border-color: rgba(255,255,255,0.8);
}
html[data-theme="light"] .promo-bg {
  background:
    radial-gradient(circle at 30% 50%, rgba(245,166,35,0.22), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,200,87,0.16), transparent 50%),
    linear-gradient(160deg, #243044 0%, #111827 100%);
}
html[data-theme="light"] .promo-title,
html[data-theme="light"] .promo-sub,
html[data-theme="light"] .cta-section .eyebrow-light,
html[data-theme="light"] .cta-title,
html[data-theme="light"] .cta-sub {
  color: #fff;
}
html[data-theme="light"] .cta-section {
  background: linear-gradient(160deg, #243044 0%, #111827 100%);
}
html[data-theme="light"] .product-info h3 {
  color: #fff;
}
html[data-theme="light"] .product-info p {
  color: rgba(255,255,255,0.76);
}
html[data-theme="light"] .testimonial-card blockquote,
html[data-theme="light"] .carousel-arrow {
  color: var(--ink);
}
html[data-theme="light"] .mouse-glow {
  background: radial-gradient(circle, rgba(245,166,35,0.14), transparent 65%);
}
html[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-2); }
html[data-theme="light"] ::-webkit-scrollbar-thumb { border-color: var(--bg-2); }

html[data-theme="light"] {
  color-scheme: light;
  --bg:          #F8FAFC;
  --bg-2:        #EEF2F7;
  --ink:         #111827;

  --surface:       rgba(17, 24, 39, 0.045);
  --surface-2:     rgba(255, 255, 255, 0.78);
  --surface-border:rgba(17, 24, 39, 0.12);
  --glass:         rgba(255, 255, 255, 0.72);
  --glass-border:  rgba(17, 24, 39, 0.14);

  --text:        #243044;
  --text-muted:  #536176;
  --text-dim:    #7A8799;

  --grad-dark:    linear-gradient(160deg, #F8FAFC 0%, #EEF2F7 100%);
  --grad-hero:    radial-gradient(1000px 520px at 82% 12%, rgba(245,166,35,0.22), transparent 58%),
                  radial-gradient(760px 420px at 7% 90%, rgba(255,200,87,0.16), transparent 60%),
                  linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

  --shadow-sm:  0 4px 14px rgba(17,24,39,0.08);
  --shadow-md:  0 14px 36px rgba(17,24,39,0.12);
  --shadow-lg:  0 24px 60px rgba(17,24,39,0.16);
  --shadow-gold:0 14px 34px rgba(245,166,35,0.24);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lock scroll while preloader active */
body.preloading { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }

a { color: var(--gold-soft); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }

::selection { background: rgba(245,166,35,0.35); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-deep)); border-radius: 10px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 .6em;
}

p { margin: 0 0 1rem; }

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Decorative accent text (Caveat) */
em.font-accent, .font-accent { font-family: var(--font-accent); font-style: normal; }

/* ---------- Layout helpers ---------- */
.container { padding-inline: var(--container-pad); }

.section { padding-block: var(--section-pad); position: relative; overflow: hidden; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .45rem 1rem;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--r-pill);
  background: rgba(245,166,35,0.08);
  margin-bottom: 1.1rem;
}
.eyebrow-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 640px;
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn { border-radius: var(--r-pill); font-family: var(--font-head); font-weight: 600; padding: .7rem 1.6rem; transition: all .35s var(--ease); border: 0; }

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 46px rgba(245,166,35,0.42); }
.btn-gold:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: var(--gold-soft); border-color: var(--gold); background: rgba(245,166,35,0.08); transform: translateY(-3px); }

.btn-lg { padding: .9rem 2.2rem; font-size: 1.02rem; }

/* Ripple effect */
.ripple { position: relative; overflow: hidden; }
.ripple .rip {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.45);
  animation: rippleAnim .65s var(--ease-out);
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(2.6); opacity: 0; } }

/* ---------- Glassmorphism ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* =====================================================================
   1. PRELOADER
   ===================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-bottom: 1.6rem; }
.preloader-logo svg { filter: drop-shadow(0 0 18px rgba(245,166,35,0.5)); animation: spin 4s linear infinite; }
.preloader-logo .brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}
.preloader-logo .brand-name em { font-style: normal; color: var(--gold); }

.preloader-bar {
  width: min(280px, 70vw);
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: 0 auto 1rem;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  animation: preloadFill 2s var(--ease) forwards;
}
@keyframes preloadFill { 0% { width: 0; } 70% { width: 85%; } 100% { width: 100%; } }

.preloader-text { color: var(--text-muted); font-size: .9rem; letter-spacing: .04em; margin: 0; }

/* =====================================================================
   2. NAVIGATION
   ===================================================================== */
.main-nav {
  padding-block: 1.1rem;
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.main-nav.scrolled {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding-block: .6rem;
  border-bottom: 1px solid var(--surface-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  transition: transform .4s var(--ease);
}
.main-nav.scrolled .navbar-brand { transform: scale(.92); }
.navbar-brand svg { transition: filter .4s var(--ease); filter: drop-shadow(0 0 10px rgba(245,166,35,0.4)); }
.navbar-brand em { font-style: normal; color: var(--gold); }

.navbar-nav .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .96rem;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .3s var(--ease);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: .35rem;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.nav-cta { padding: .55rem 1.4rem; }

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: .55rem .65rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
}
.toggler-bar { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .3s var(--ease); }
.navbar-toggler:hover { background: var(--surface-2); }

/* Offcanvas */
.offcanvas { background: var(--bg-2); color: var(--text); width: min(320px, 85vw); }
.offcanvas-header { border-bottom: 1px solid var(--surface-border); }
.offcanvas-title { font-family: var(--font-head); color: var(--white); }
.offcanvas .nav-link { color: var(--text-muted); font-size: 1.1rem; padding: .8rem .5rem; }
.offcanvas .nav-link:hover { color: var(--gold); }

/* =====================================================================
   3. HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-top: var(--nav-h); }
.hero .container { position: relative; z-index: 2; }
.hero .row { padding-block: clamp(2rem, 5vw, 4rem); }

.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--grad-hero); }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: floatBlob 12s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(245,166,35,0.45), transparent 70%); top: -80px; right: -60px; }
.blob-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,200,87,0.30), transparent 70%); bottom: -80px; left: -80px; animation-delay: -4s; }
.blob-3 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(245,166,35,0.25), transparent 70%); top: 40%; left: 45%; animation-delay: -7s; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--text-muted); max-width: 540px; margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats { display: flex; gap: clamp(1.2rem, 3vw, 2.5rem); flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); line-height: 1; }
.hero-stats span { font-size: .82rem; color: var(--text-dim); letter-spacing: .03em; }

/* Hero visual — polaroid stack */
.hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.polaroid-stack { position: relative; width: 100%; height: 460px; }

.polaroid {
  position: absolute;
  width: 200px;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 12px 44px;
  box-shadow: var(--shadow-lg);
  transform: rotate(var(--rot));
  transition: transform .5s var(--ease);
}
.polaroid:hover { transform: rotate(0deg) scale(1.05); z-index: 5; }
.polaroid-photo { width: 100%; aspect-ratio: 1; border-radius: 4px; }
.polaroid figcaption {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--ink);
}
.polaroid.p1 { top: 30px; left: 8%; z-index: 3; }
.polaroid.p2 { top: 80px; right: 12%; z-index: 4; }
.polaroid.p3 { bottom: 10px; left: 38%; z-index: 2; }

.floating-frame {
  position: absolute;
  border-radius: var(--r-md);
  border: 6px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-md);
  animation: floatY 6s ease-in-out infinite;
}
.frame-1 { width: 130px; height: 160px; top: 0; right: 0; background: linear-gradient(135deg, rgba(245,166,35,0.4), rgba(255,200,87,0.2)); }
.frame-2 { width: 100px; height: 120px; bottom: 40px; right: 4%; background: linear-gradient(135deg, rgba(255,200,87,0.3), rgba(245,166,35,0.15)); animation-delay: -3s; }

.deco-circle { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(245,166,35,0.4); }
.c1 { width: 90px; height: 90px; top: 10px; left: 30%; animation: spin 18s linear infinite; }
.c2 { width: 60px; height: 60px; bottom: 0; right: 30%; border-color: rgba(255,200,87,0.4); animation: spin 14s linear infinite reverse; }

.spark { position: absolute; width: 8px; height: 8px; background: var(--gold-soft); border-radius: 50%; box-shadow: 0 0 16px var(--gold); animation: twinkle 3s ease-in-out infinite; }
.s1 { top: 18%; left: 20%; }
.s2 { top: 60%; right: 18%; animation-delay: -1s; }
.s3 { bottom: 14%; left: 12%; animation-delay: -2s; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-dim);
  z-index: 3;
}
.scroll-cue small { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.mouse {
  width: 26px; height: 42px;
  border: 2px solid var(--text-dim);
  border-radius: var(--r-pill);
  display: flex; justify-content: center;
  padding-top: 7px;
}
.wheel { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: wheel 1.8s ease-in-out infinite; }

.hero-divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 1; }
.hero-divider svg { width: 100%; height: 60px; }

/* =====================================================================
   4. ABOUT
   ===================================================================== */
.about { background: var(--bg); }

.about-image { position: relative; max-width: 520px; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-sub {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  bottom: -30px; right: -20px;
  border-radius: var(--r-md);
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--grad-gold);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: var(--shadow-gold);
}
.about-badge .years { font-family: var(--font-head); font-weight: 800; font-size: 2rem; line-height: 1; }
.about-badge .label { font-size: .8rem; font-weight: 600; line-height: 1.2; }
.about-glow { position: absolute; inset: -40px; background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%); z-index: -1; border-radius: 50%; }

.about-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .9rem; }
.about-list li { display: flex; gap: .8rem; align-items: flex-start; }
.about-list i { color: var(--gold); font-size: 1.2rem; margin-top: .15rem; flex-shrink: 0; }
.about-list strong { color: var(--white); }

/* Counters */
.counters-row { margin-top: clamp(3rem, 6vw, 5rem); }
.counter-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 2rem 1rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.counter-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.4); background: var(--surface-2); }
.counter-card i { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.counter-card .counter { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); display: block; line-height: 1; }
.counter-card p { margin: .5rem 0 0; color: var(--text-muted); font-size: .9rem; }

/* =====================================================================
   5. SERVICES
   ===================================================================== */
.services { background: var(--bg-2); }

.service-card {
  position: relative;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(245,166,35,0.35); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.25);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); background: rgba(245,166,35,0.18); }

.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 1rem; }
.service-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.service-link i { transition: transform .3s var(--ease); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* =====================================================================
   6. WHY CHOOSE US
   ===================================================================== */
.why { background: var(--bg); }

.feature-card {
  height: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.4rem;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.35); background: var(--surface-2); }
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink);
  font-size: 1.7rem;
  box-shadow: var(--shadow-gold);
  transition: transform .45s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(6deg); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* =====================================================================
   7. HOW IT WORKS
   ===================================================================== */
.how { background: var(--bg-2); }

.steps-wrapper { position: relative; }
.steps-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), rgba(255,200,87,0.4), rgba(245,166,35,0.4), transparent);
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-lg);
  padding: 3.2rem 1.2rem 1.6rem;
  height: 100%;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.35); }
.step-num {
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--gold);
  background: var(--bg-2);
  padding: .2rem .8rem;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--r-pill);
}
.step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { color: var(--text-muted); font-size: .86rem; margin: 0; }

/* =====================================================================
   8. PRODUCTS
   ===================================================================== */
.products { background: var(--bg); }

.product-card {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%; height: 100%;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.1); }

.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad-gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  z-index: 2;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.35) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.4rem;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn { transform: translateY(12px); transition: transform .45s var(--ease); }
.product-card:hover .product-overlay .btn { transform: translateY(0); }

.product-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
  z-index: 1;
}
.product-info h3 { font-size: 1.05rem; margin: 0 0 .15rem; color: var(--white); }
.product-info p { margin: 0; font-size: .8rem; color: var(--text-muted); }

/* Animated border on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.product-card:hover::after { opacity: 1; }

/* =====================================================================
   9. GALLERY
   ===================================================================== */
.gallery { background: var(--bg-2); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  padding: .5rem 1.2rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.filter-btn:hover { color: var(--white); border-color: rgba(245,166,35,0.4); }
.filter-btn.active { background: var(--grad-gold); color: var(--ink); border-color: transparent; }

.masonry-grid {
  column-count: 4;
  column-gap: 1.2rem;
}
.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.masonry-photo { width: 100%; transition: transform .6s var(--ease); }
.masonry-item:nth-child(3n+1) .masonry-photo { aspect-ratio: 3/4; }
.masonry-item:nth-child(3n+2) .masonry-photo { aspect-ratio: 1; }
.masonry-item:nth-child(3n)   .masonry-photo { aspect-ratio: 4/3; }

.masonry-item:hover .masonry-photo { transform: scale(1.08); }
.masonry-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15,23,42,0.92), transparent 60%);
  color: var(--white);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry-item:hover figcaption { opacity: 1; }
.masonry-item figcaption span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.masonry-item figcaption i { position: absolute; top: 1rem; right: 1rem; font-size: 1.3rem; color: var(--white); }
.masonry-item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 11, 22, 0.94);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox-content { max-width: min(800px, 90vw); margin: 0; text-align: center; }
.lightbox-img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-content figcaption { color: var(--white); margin-top: 1rem; font-family: var(--font-head); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--ink); }

/* =====================================================================
   10. TESTIMONIALS
   ===================================================================== */
.testimonials { background: var(--bg); }

#testimonialCarousel { max-width: 820px; margin: 0 auto; }
.testimonial-card {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--r-xl);
  margin: 0 auto;
  max-width: 760px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem; letter-spacing: .15em; }
.testimonial-card blockquote {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 1.8rem;
  quotes: none;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.testimonial-author .avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.testimonial-author strong { display: block; color: var(--white); font-family: var(--font-head); }
.testimonial-author small { color: var(--text-muted); }

.carousel-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all .3s var(--ease);
}
.carousel-control-prev, .carousel-control-next { width: 60px; opacity: 1; }
.carousel-control-prev:hover .carousel-arrow, .carousel-control-next:hover .carousel-arrow { background: var(--gold); color: var(--ink); }

.carousel-indicators { bottom: -3rem; }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-border);
  border: 0;
  margin: 0 6px;
  transition: all .3s var(--ease);
}
.carousel-indicators .active { background: var(--gold); width: 28px; border-radius: var(--r-pill); }

/* =====================================================================
   11. PROMO VIDEO
   ===================================================================== */
.promo-video {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  text-align: center;
}
.promo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(245,166,35,0.25), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,200,87,0.18), transparent 50%),
    var(--grad-dark);
  z-index: 0;
}
.promo-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.55); z-index: 1; }
.promo-content { position: relative; z-index: 2; }
.promo-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.promo-sub { color: var(--text-muted); max-width: 560px; margin: 0 auto 2.2rem; }

.play-btn {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 2.2rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: pulseRing 2s ease-out infinite;
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: scale(1.05); }

/* Video modal */
#videoModal .modal-content { border-radius: var(--r-lg); border: 1px solid var(--glass-border); background: var(--bg-2); }
#videoModal .modal-header { border-bottom: 1px solid var(--surface-border); }
#videoModal .modal-title { color: var(--white); }

/* =====================================================================
   12. PRICING
   ===================================================================== */
.pricing { background: var(--bg); }

.price-card {
  position: relative;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(245,166,35,0.3); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(160deg, rgba(245,166,35,0.12), var(--surface));
  border-color: rgba(245,166,35,0.5);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 1.6rem;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.price { font-family: var(--font-head); font-weight: 800; color: var(--white); margin-bottom: 1.4rem; }
.price .currency { font-size: 1.3rem; vertical-align: top; color: var(--gold); }
.price .unit { font-size: .9rem; color: var(--text-muted); font-weight: 500; }

.price-card ul { list-style: none; padding: 0; margin: 0 0 1.8rem; text-align: left; display: grid; gap: .7rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-muted); font-size: .92rem; }
.price-card li i { color: var(--gold); margin-top: .15rem; }

/* =====================================================================
   13. FAQ
   ===================================================================== */
.faq { background: var(--bg-2); }

.accordion-custom { display: grid; gap: 1rem; }
.accordion-custom .accordion-item {
  border-radius: var(--r-md) !important;
  overflow: hidden;
  border: 1px solid var(--glass-border) !important;
  background: var(--glass) !important;
}
.accordion-custom .accordion-button {
  background: transparent !important;
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.3rem 1.5rem;
  box-shadow: none !important;
}
.accordion-custom .accordion-button::after {
  background-image: none;
  content: '\F282'; /* chevron-down */
  font-family: 'bootstrap-icons';
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform .35s var(--ease);
}
.accordion-custom .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.accordion-custom .accordion-button:not(.collapsed) { color: var(--gold) !important; }
.accordion-custom .accordion-body { color: var(--text-muted); padding: 0 1.5rem 1.4rem; }

/* =====================================================================
   14. CTA SECTION
   ===================================================================== */
.cta-section {
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  text-align: center;
  background: var(--grad-dark);
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg .blob { opacity: .5; }
.cta-bg .blob-1 { width: 480px; height: 480px; top: -120px; left: -100px; }
.cta-bg .blob-2 { width: 420px; height: 420px; bottom: -140px; right: -100px; }

.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.cta-sub { color: var(--text-muted); font-size: clamp(1rem, 1.5vw, 1.2rem); margin-bottom: 2.2rem; }

/* =====================================================================
   15. CONTACT
   ===================================================================== */
.contact { background: var(--bg); }

.contact-info { display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ic {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 1.2rem;
}
.contact-item strong { display: block; color: var(--white); font-family: var(--font-head); margin-bottom: .2rem; }
.contact-item p { margin: 0; color: var(--text-muted); font-size: .92rem; }
.map-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--surface-border); margin-top: .5rem; }
.map-wrap iframe { filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); display: block; }

.contact-form { border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem); }
.contact-form .form-label { color: var(--text); font-weight: 500; font-size: .9rem; margin-bottom: .4rem; }
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--surface-border);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-form .form-control::placeholder { color: var(--text-dim); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15);
}
.contact-form .form-select option { background: var(--bg-2); color: var(--white); }
.contact-form .invalid-feedback { font-size: .82rem; }

.form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #6ee7b7;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: .92rem;
}

/* =====================================================================
   16. FOOTER
   ===================================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--surface-border); }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-intro { color: var(--text-muted); font-size: .92rem; max-width: 360px; margin-bottom: 1.4rem; }

.social-links { display: flex; gap: .7rem; }
.social-links a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: all .35s var(--ease);
}
.social-links a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }

.footer-title { font-size: 1.05rem; color: var(--white); margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer-links a { color: var(--text-muted); font-size: .92rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-news-text { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.footer-newsletter { display: flex; gap: .5rem; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--surface-border);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: .6rem 1.1rem;
}
.footer-newsletter .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); background: rgba(255,255,255,0.06); }
.footer-newsletter .btn { padding: .6rem 1.1rem; }
.newsletter-success { margin-top: .8rem; color: #6ee7b7; font-size: .85rem; }

.footer-bottom { border-top: 1px solid var(--surface-border); padding-block: 1.5rem; text-align: center; }
.footer-bottom p { margin: 0; color: var(--text-dim); font-size: .88rem; }
.footer-bottom i { color: var(--gold); }

/* =====================================================================
   UTILITY: Local image placeholders
   Reusable background-image assets for hero, product, gallery and avatar
   blocks. Replace the PNG files with real photography whenever available.
   ===================================================================== */
.img-grad-1,
.img-grad-2,
.img-grad-3,
.img-grad-4,
.img-grad-5,
.img-grad-6,
.img-grad-7,
.img-grad-8 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-grad-1 {
  background-color: #f6a623;
  background-image: url("../images/placeholders/premium-photo-prints.png");
}
.img-grad-2 {
  background-color: #ff6a88;
  background-image: url("../images/placeholders/polaroid-memories.png");
}
.img-grad-3 {
  background-color: #4facfe;
  background-image: url("../images/placeholders/canvas-wall-art.png");
}
.img-grad-4 {
  background-color: #a18cd1;
  background-image: url("../images/placeholders/custom-frames.png");
}
.img-grad-5 {
  background-color: #30cfd0;
  background-image: url("../images/placeholders/wedding-album.png");
}
.img-grad-6 {
  background-color: #5ee7df;
  background-image: url("../images/placeholders/personalized-gifts.png");
}
.img-grad-7 {
  background-color: #f093fb;
  background-image: url("../images/placeholders/poster-prints.png");
}
.img-grad-8 {
  background-color: #ffecd2;
  background-image: url("../images/placeholders/studio-gallery.png");
}

/* =====================================================================
   SCROLL PROGRESS BAR
   ===================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 9998;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(245,166,35,0.6);
  transition: width .1s linear;
}

/* =====================================================================
   MOUSE GLOW (desktop only)
   ===================================================================== */
.mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.10), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  opacity: 0;
}

/* =====================================================================
   PARTICLES
   ===================================================================== */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* =====================================================================
   BACK TO TOP
   ===================================================================== */
.back-to-top {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink);
  border: 0;
  font-size: 1.2rem;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }

/* =====================================================================
   ACCESSIBILITY — reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .preloader { display: none; }
  body.preloading { overflow: auto; height: auto; }
}

/* Final light-mode cascade pass. */
html[data-theme="light"] body { background: var(--bg); color: var(--text); }
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6,
html[data-theme="light"] .navbar-brand,
html[data-theme="light"] .offcanvas-title,
html[data-theme="light"] .hero-stats strong,
html[data-theme="light"] .about-list strong,
html[data-theme="light"] .counter-card .counter,
html[data-theme="light"] .testimonial-author strong,
html[data-theme="light"] .price,
html[data-theme="light"] .contact-item strong,
html[data-theme="light"] .footer-brand,
html[data-theme="light"] .footer-title {
  color: var(--ink);
}
html[data-theme="light"] .main-nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(17,24,39,0.10);
}
html[data-theme="light"] .navbar-nav .nav-link:hover,
html[data-theme="light"] .navbar-nav .nav-link.active,
html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .filter-btn:hover,
html[data-theme="light"] .accordion-custom .accordion-button,
html[data-theme="light"] #videoModal .modal-title {
  color: var(--ink) !important;
}
html[data-theme="light"] .btn-ghost {
  background: rgba(255,255,255,0.55);
}
html[data-theme="light"] .btn-ghost:hover {
  color: var(--gold-deep) !important;
  background: rgba(245,166,35,0.12);
}
html[data-theme="light"] .offcanvas,
html[data-theme="light"] #videoModal .modal-content {
  background: var(--bg);
}
html[data-theme="light"] .btn-close-white { filter: none; }
html[data-theme="light"] .preloader-bar,
html[data-theme="light"] .footer-newsletter .form-control,
html[data-theme="light"] .contact-form .form-control,
html[data-theme="light"] .contact-form .form-select {
  background: rgba(255,255,255,0.82);
}
html[data-theme="light"] .contact-form .form-control,
html[data-theme="light"] .contact-form .form-select,
html[data-theme="light"] .footer-newsletter .form-control {
  border-color: var(--surface-border);
  color: var(--ink);
}
html[data-theme="light"] .contact-form .form-control:focus,
html[data-theme="light"] .contact-form .form-select:focus,
html[data-theme="light"] .footer-newsletter .form-control:focus {
  background: #fff;
  color: var(--ink);
}
html[data-theme="light"] .contact-form .form-select option {
  background: #fff;
  color: var(--ink);
}
html[data-theme="light"] .map-wrap iframe { filter: grayscale(0.05) saturate(1.05); }
html[data-theme="light"] .hero-divider path { fill: var(--bg); }
html[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(17,24,39,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.045) 1px, transparent 1px);
}
html[data-theme="light"] .floating-frame {
  border-color: rgba(255,255,255,0.8);
}
html[data-theme="light"] .promo-bg {
  background:
    radial-gradient(circle at 30% 50%, rgba(245,166,35,0.22), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,200,87,0.16), transparent 50%),
    linear-gradient(160deg, #243044 0%, #111827 100%);
}
html[data-theme="light"] .promo-title,
html[data-theme="light"] .promo-sub,
html[data-theme="light"] .cta-section .eyebrow-light,
html[data-theme="light"] .cta-title,
html[data-theme="light"] .cta-sub {
  color: #fff;
}
html[data-theme="light"] .cta-section {
  background: linear-gradient(160deg, #243044 0%, #111827 100%);
}
html[data-theme="light"] .product-info h3 {
  color: #fff;
}
html[data-theme="light"] .product-info p {
  color: rgba(255,255,255,0.76);
}
html[data-theme="light"] .testimonial-card blockquote,
html[data-theme="light"] .carousel-arrow {
  color: var(--ink);
}
html[data-theme="light"] .mouse-glow {
  background: radial-gradient(circle, rgba(245,166,35,0.14), transparent 65%);
}
html[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-2); }
html[data-theme="light"] ::-webkit-scrollbar-thumb { border-color: var(--bg-2); }
