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

/* ── DARK MODE (default) ── */
:root {
  --gold:        #d4af37;
  --gold-light:  #f5d060;
  --gold-dim:    #a07d1c;
  --gold-glow:   rgba(212,175,55,0.18);
  --gold-glow2:  rgba(212,175,55,0.07);
  --purple:      #7c3aed;
  --purple-dim:  #4c1d95;
  --lavender:    #c4b5fd;
  --bg:          #07000f;
  --dark:        #0c0015;
  --dark2:       #12001f;
  --dark3:       #1a002d;
  --glass:       rgba(124,58,237,0.07);
  --glass-border: rgba(212,175,55,0.2);
  --white:       #ffffff;
  --off:         rgba(255,255,255,0.8);
  --muted:       rgba(255,255,255,0.4);
  --radius:      14px;
  --tr:          0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── LIGHT MODE ── */
[data-theme="light"] {
  --bg:          #faf7ff;
  --dark:        #f0eaf8;
  --dark2:       #e8dff5;
  --dark3:       #ddd0f0;
  --glass:       rgba(124,58,237,0.05);
  --glass-border: rgba(124,58,237,0.18);
  --white:       #1a0030;
  --off:         rgba(26,0,48,0.85);
  --muted:       rgba(26,0,48,0.5);
  --gold-glow2:  rgba(212,175,55,0.12);
  --gold-glow:   rgba(212,175,55,0.25);
}
[data-theme="light"] body {
  background: var(--bg);
  color: var(--white);
}
[data-theme="light"] #hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(124,58,237,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%,  rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 10% 60%,  rgba(76,29,149,0.1) 0%, transparent 55%);
}
[data-theme="light"] #hero::after {
  background-image:
    linear-gradient(rgba(124,58,237,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.08) 1px, transparent 1px);
}
[data-theme="light"] .hero-title .line1 { color: #1a0030; }
[data-theme="light"] .hero-tagline { color: var(--gold-dim); }
[data-theme="light"] .hero-sub     { color: rgba(26,0,48,0.55); }
[data-theme="light"] .hero-stars   { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); color: var(--gold-dim); }
[data-theme="light"] .hero-stars span { color: rgba(26,0,48,0.45); }
[data-theme="light"] #navbar.scrolled {
  background: rgba(250,247,255,0.94);
  border-bottom-color: rgba(124,58,237,0.15);
}
[data-theme="light"] .nav-link      { color: rgba(26,0,48,0.55); }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active { color: var(--purple); background: rgba(124,58,237,0.06); }
[data-theme="light"] .marquee-bar {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), var(--bg), rgba(76,29,149,0.05));
  border-color: rgba(212,175,55,0.25);
}
[data-theme="light"] .marquee-bar::before { background: linear-gradient(90deg, var(--bg), transparent); }
[data-theme="light"] .marquee-bar::after  { background: linear-gradient(-90deg, var(--bg), transparent); }
[data-theme="light"] .service-card,
[data-theme="light"] .feature-item,
[data-theme="light"] .review-card,
[data-theme="light"] .reviews-total,
[data-theme="light"] .gallery-placeholder {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
[data-theme="light"] .service-card h3,
[data-theme="light"] .feature-text h4 { color: #1a0030; }
[data-theme="light"] .about-text p { color: rgba(26,0,48,0.75); }
[data-theme="light"] .contact-item p,
[data-theme="light"] .contact-item a  { color: rgba(26,0,48,0.75); }
[data-theme="light"] #footer {
  background: var(--dark);
  border-top-color: rgba(212,175,55,0.2);
}
[data-theme="light"] .footer-links a { color: rgba(26,0,48,0.5); }
[data-theme="light"] .footer-social a { background: rgba(255,255,255,0.7); }
[data-theme="light"] .footer-copy    { color: rgba(26,0,48,0.35); }
[data-theme="light"] .bottom-nav {
  background: rgba(250,247,255,0.97);
  border-top-color: rgba(124,58,237,0.15);
}
[data-theme="light"] .bnav-item { color: rgba(26,0,48,0.45); }
[data-theme="light"] .bnav-item.active { color: var(--purple); }
[data-theme="light"] .review-card p { color: rgba(26,0,48,0.8); }
[data-theme="light"] .reviewer strong { color: #1a0030; }
[data-theme="light"] #backToTop { background: linear-gradient(135deg, var(--purple), var(--purple-dim)); box-shadow: 0 0 22px rgba(124,58,237,0.5); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--purple)); border-radius: 3px; }

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, rgba(124,58,237,0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s linear;
}

/* ── Particles bg ── */
#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

.gold { color: var(--gold); }

/* shimmer gradient text */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold), var(--gold-dim));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ── Utils ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section    { padding: 110px 0; position: relative; z-index: 1; }
.dark-section { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '·';
  margin: 0 10px;
  opacity: 0.5;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.divider span {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider i { font-size: 0.75rem; color: var(--gold); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--tr);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(212,175,55,0.55), 0 8px 24px rgba(0,0,0,0.5); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 13px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: var(--tr);
  z-index: -1;
}
.btn-outline:hover { color: var(--bg); transform: translateY(-3px); box-shadow: 0 0 28px rgba(212,175,55,0.4); }
.btn-outline:hover::before { opacity: 1; }

.full-width { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: var(--tr);
}
#navbar.scrolled {
  background: rgba(7,0,15,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 46px; width: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
  transition: var(--tr);
}
.nav-logo:hover img { filter: drop-shadow(0 0 22px rgba(212,175,55,0.9)); transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-glow2); }

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  margin-left: 12px;
  transition: var(--tr);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  box-shadow: 0 0 22px rgba(212,175,55,0.45);
  border-color: transparent;
}

/* ── Theme Toggle ── */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: var(--gold-glow2);
  color: var(--gold);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  margin-left: 8px;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
  transform: rotate(20deg) scale(1.1);
}
[data-theme="light"] .theme-toggle {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.07);
  color: var(--purple);
}
[data-theme="light"] .theme-toggle:hover {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 18px rgba(124,58,237,0.45);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay { display: none; }

/* purple aurora */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(124,58,237,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%,  rgba(212,175,55,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 10% 60%,  rgba(76,29,149,0.18) 0%, transparent 55%);
  z-index: 0;
  animation: aurora 9s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.06); }
}

/* bokeh container */
#hero-bokeh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bokeh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: bokehFloat ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes bokehFloat {
  0%   { transform: translateY(0px)   scale(1);    opacity: var(--op-low); }
  33%  { transform: translateY(-30px) scale(1.08); opacity: var(--op-high); }
  66%  { transform: translateY(18px)  scale(0.96); opacity: var(--op-mid); }
  100% { transform: translateY(0px)   scale(1);    opacity: var(--op-low); }
}
/* light mode bokeh softer */
[data-theme="light"] .bokeh-orb { filter: blur(70px); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 28px 80px;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap { margin-bottom: 28px; position: relative; display: inline-block; }
.hero-logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  animation: ringPulse 3.5s ease-in-out infinite;
}
.hero-logo-ring2 {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.25);
  animation: ringPulse 3.5s ease-in-out infinite 0.7s;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1);    opacity: 0.5; }
  50%      { transform: scale(1.07); opacity: 1; }
}
.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.4);
  padding: 6px;
  background: rgba(124,58,237,0.1);
  filter: drop-shadow(0 0 28px rgba(212,175,55,0.55));
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.hero-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
  display: inline-block;
  border-right: 2px solid var(--gold);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}
.hero-tagline.typed {
  border-right: none;
}
@keyframes blink {
  0%,100% { border-color: var(--gold); }
  50%      { border-color: transparent; }
}
.hero-tagline.blinking {
  animation: blink 0.7s step-end 5;
}

.hero-title { margin-bottom: 18px; }
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold), var(--gold-dim));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.06em; }

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 40px;
  background: var(--gold-glow2);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 10px 22px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-stars span { color: var(--muted); font-size: 0.78rem; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold); }

/* ── MARQUEE ── */
.marquee-bar {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(7,0,15,0.5), rgba(76,29,149,0.08));
}
.marquee-bar::before, .marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.marquee-bar::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-bar::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
  padding: 16px 0;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 36px;
  position: relative;
}
.marquee-track span::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(212,175,55,0.5);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { color: var(--off); margin-bottom: 20px; font-size: 0.92rem; }
.about-text p strong { color: var(--gold); }

.about-stats {
  display: flex;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.stat { flex: 1; text-align: center; padding: 0 12px; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(212,175,55,0.15);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  text-shadow: 0 0 24px rgba(212,175,55,0.45);
}
.stat p { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; margin-top: 6px; text-transform: uppercase; }

.about-visual { display: flex; justify-content: center; }
.about-card { position: relative; width: 340px; height: 340px; }
.about-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(from 0deg, var(--gold-dim), var(--purple), var(--gold), var(--purple-dim), var(--gold-light), var(--gold-dim));
  animation: borderSpin 5s linear infinite;
  z-index: 0;
}
@keyframes borderSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.about-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--dark2);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124,58,237,0.12) 0%, transparent 65%);
}
.about-card-inner img {
  width: 68%; height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(212,175,55,0.55));
  position: relative;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 18px rgba(212,175,55,0.55);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(212,175,55,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--tr);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.07); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--gold);
  transition: var(--tr);
  background: var(--gold-glow2);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(212,175,55,0.55);
  transform: scale(1.1) rotate(5deg);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; position: relative; z-index: 1; }
.service-card p  { color: var(--muted); font-size: 0.85rem; line-height: 1.75; position: relative; z-index: 1; }

/* ── FEATURES ── */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  transition: var(--tr);
  backdrop-filter: blur(10px);
}
.feature-item:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateX(6px);
  box-shadow: -4px 0 24px rgba(212,175,55,0.1);
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
  transition: var(--tr);
}
.feature-item:hover .feature-num { opacity: 1; text-shadow: 0 0 22px rgba(212,175,55,0.55); }
.feature-text h4 { margin-bottom: 8px; font-size: 1.1rem; }
.feature-text p  { color: var(--muted); font-size: 0.85rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.g-large { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.gallery-placeholder i { font-size: 1.8rem; opacity: 0.35; transition: var(--tr); }
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.1), transparent 70%);
  opacity: 0;
  transition: var(--tr);
}
.gallery-item:hover .gallery-placeholder { border-color: rgba(212,175,55,0.55); }
.gallery-item:hover .gallery-placeholder::before { opacity: 1; }
.gallery-item:hover .gallery-placeholder i { opacity: 1; transform: scale(1.2); }

.gallery-note { text-align: center; margin-top: 32px; color: var(--muted); font-size: 0.85rem; }
.gallery-note i { color: var(--gold); margin-right: 6px; }
.gallery-note a { color: var(--gold); text-decoration: none; font-weight: 700; }
.gallery-note a:hover { text-shadow: 0 0 10px rgba(212,175,55,0.6); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--tr);
  backdrop-filter: blur(10px);
}
.review-card:hover { border-color: rgba(212,175,55,0.45); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06); }
.featured-review { border-color: rgba(212,175,55,0.3); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.22);
  color: #4285f4;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.review-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p {
  color: var(--off);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--gold-dim));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(124,58,237,0.4);
}
.reviewer strong { display: block; font-size: 0.83rem; }
.reviewer span   { font-size: 0.72rem; color: var(--muted); }

.reviews-total {
  text-align: center;
  padding: 48px;
  background: var(--glass);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.reviews-total::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, rgba(212,175,55,0.04) 50%, transparent 70%);
}
.big-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  position: relative;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.4));
}
.total-stars { color: var(--gold); font-size: 1.1rem; margin: 12px 0; letter-spacing: 4px; }
.review-count { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--gold-glow2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--tr);
}
.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
}
.contact-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.contact-item p, .contact-item a { color: var(--off); font-size: 0.88rem; text-decoration: none; line-height: 1.7; }
.contact-item a:hover { color: var(--gold); }
.contact-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }

.map-wrap {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 0 40px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.1);
}
.map-wrap iframe { filter: grayscale(1) brightness(0.35) contrast(1.1) hue-rotate(260deg); width: 100%; height: 100%; border: 0; }

/* ── FOOTER ── */
#footer {
  background: var(--bg);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 64px 28px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.footer-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.footer-logo img {
  width: 76px; height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.5));
  margin-bottom: 16px;
}
.footer-tagline { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 32px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 28px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.04em; transition: var(--tr); }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--tr);
  background: var(--glass);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(212,175,55,0.5);
}
.footer-copy { color: var(--muted); font-size: 0.72rem; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  z-index: 999;
  box-shadow: 0 0 22px rgba(212,175,55,0.5);
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 0 36px rgba(212,175,55,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,0,15,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--tr);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; padding: 12px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-stats { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { height: 260px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.g-large { grid-row: span 1; }
  .gallery-item.g-wide  { grid-column: span 2; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 72px 0; }
  .hero-tagline { font-size: 0.6rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g-wide { grid-column: span 1; }
  .about-stats { flex-wrap: wrap; }
  .big-rating { font-size: 4rem; }
}

/* ── MOBILE THEME BTN ── */
.mobile-theme-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.35);
  background: rgba(7,0,15,0.85);
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.mobile-theme-btn:active { transform: scale(0.92) rotate(20deg); }
[data-theme="light"] .mobile-theme-btn {
  background: rgba(250,247,255,0.92);
  border-color: rgba(124,58,237,0.3);
  color: var(--purple);
}

/* ── FLOATING CALL BUTTON ── */
.fab-call {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 998;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 20px 14px 18px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(212,175,55,0.5), 0 0 40px rgba(212,175,55,0.15);
  animation: fabPulse 2.5s ease-in-out infinite;
}
@keyframes fabPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(212,175,55,0.5), 0 0 0 0 rgba(212,175,55,0.4); }
  50%      { box-shadow: 0 4px 24px rgba(212,175,55,0.5), 0 0 0 12px rgba(212,175,55,0); }
}

/* ── MOBILE BOTTOM NAV ── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,0,21,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bottom-nav {
  display: none;
  grid-template-columns: repeat(5, 1fr);
}

.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 0;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--tr);
  position: relative;
}
.bnav-item i { font-size: 1.1rem; transition: var(--tr); }
.bnav-item.active { color: var(--gold); }
.bnav-item.active i { color: var(--gold); filter: drop-shadow(0 0 6px rgba(212,175,55,0.6)); }
.bnav-item:not(.bnav-center):active { transform: scale(0.9); }

.bnav-center {
  color: var(--bg) !important;
  position: relative;
  top: -18px;
}
.bnav-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(212,175,55,0.6), 0 0 0 4px rgba(212,175,55,0.15);
  transition: var(--tr);
  animation: fabPulse 2.5s ease-in-out infinite;
}
.bnav-center:active .bnav-call { transform: scale(0.93); }
.bnav-center span { color: var(--gold); font-size: 0.58rem; margin-top: 2px; }

/* ── MOBILE OVERHAUL ── */
@media (max-width: 768px) {
  /* show mobile elements */
  .fab-call   { display: flex; }
  .bottom-nav { display: grid; }

  /* hide desktop nav + back-to-top on mobile */
  #navbar      { display: none; }
  /* show mobile theme toggle */
  .mobile-theme-btn { display: flex; }
  #backToTop   { bottom: 90px; right: 16px; width: 40px; height: 40px; font-size: 0.8rem; }

  /* body padding for bottom nav */
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  /* sections tighter on mobile */
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 40px; }

  /* ── HERO mobile ── */
  #hero { min-height: 100svh; }
  .hero-content { padding: 80px 20px 60px; max-width: 100%; }
  .hero-logo { width: 100px; height: 100px; }
  .hero-logo-ring  { inset: -10px; }
  .hero-logo-ring2 { inset: -20px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-tagline { font-size: 0.58rem; letter-spacing: 0.2em; }
  .hero-sub { font-size: 0.82rem; }
  .hero-stars { font-size: 0.78rem; padding: 8px 16px; }
  .hero-btns { gap: 12px; width: 100%; padding: 0 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; padding: 15px 20px; font-size: 0.82rem; }
  .scroll-indicator { display: none; }

  /* ── marquee ── */
  .marquee-track span { font-size: 0.62rem; padding: 0 24px; }

  /* ── about mobile ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: none; }
  .about-stats { gap: 0; }
  .stat-num { font-size: 2rem; }
  .stat p { font-size: 0.65rem; }

  /* ── services mobile — horizontal scroll ── */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card { padding: 24px 18px; border-radius: 12px; }
  .service-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .service-card p  { font-size: 0.78rem; line-height: 1.6; }

  /* ── features mobile ── */
  .features-list { grid-template-columns: 1fr; gap: 14px; }
  .feature-item { padding: 22px 20px; gap: 16px; border-radius: 12px; }
  .feature-num { font-size: 2rem; }
  .feature-text h4 { font-size: 0.95rem; }
  .feature-text p  { font-size: 0.8rem; }

  /* ── gallery mobile ── */
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .gallery-item { height: 160px; border-radius: 12px; }
  .gallery-placeholder i { font-size: 1.5rem; }

  /* ── reviews mobile ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 22px 20px; border-radius: 12px; }
  .review-card p { font-size: 0.95rem; }
  .big-rating { font-size: 4.5rem; }
  .reviews-total { padding: 32px 20px; }

  /* ── contact mobile ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap { height: 220px; border-radius: 12px; }
  .contact-cta .btn-primary,
  .contact-cta .btn-outline { padding: 15px 20px; font-size: 0.82rem; }

  /* ── section headers ── */
  h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-label { font-size: 0.62rem; letter-spacing: 0.2em; }

  /* ── footer mobile ── */
  #footer { padding: 48px 20px 32px; }
  .footer-logo img { width: 60px; height: 60px; }
  .footer-links { gap: 6px 16px; }
  .footer-links a { font-size: 0.72rem; }
  .footer-social a { width: 40px; height: 40px; font-size: 0.88rem; }

  /* ── touch feedback ── */
  .service-card:active { transform: scale(0.97); }
  .review-card:active  { transform: scale(0.98); }
  .btn-primary:active  { transform: scale(0.97); }
  .btn-outline:active  { transform: scale(0.97); }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}

/* ── Gold + purple particles ── */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleUp linear infinite;
}
.particle.gold-p {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold), 0 0 14px rgba(212,175,55,0.4);
}
.particle.purple-p {
  background: var(--lavender);
  box-shadow: 0 0 6px var(--lavender), 0 0 14px rgba(196,181,253,0.3);
}
@keyframes particleUp {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  8%   { opacity: 0.9; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(0.5); }
}
