/* ========================================
   DEVI INTERIORS — Premium Luxury Stylesheet v2.0
   Thiruthuraipoondi, Tamil Nadu
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --black:        #0B0B0B;
  --black-soft:   #111111;
  --black-mid:    #161616;
  --black-card:   #1a1a1a;
  --gold:         #D4AF37;
  --gold-light:   #e8c94a;
  --gold-dim:     rgba(212,175,55,0.15);
  --gold-border:  rgba(212,175,55,0.35);
  --white:        #F5F5F5;
  --white-dim:    rgba(245,245,245,0.07);
  --white-mid:    rgba(245,245,245,0.55);
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.09);
  --shadow-gold:  0 0 30px rgba(212,175,55,0.18);
  --shadow-deep:  0 24px 64px rgba(0,0,0,0.7);
  --radius:       16px;
  --radius-lg:    24px;
  --transition:   0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --font-ui:      'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--black); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 60px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-logo .sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--white-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-mid);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 75vw; height: 100vh;
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid var(--glass-border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white-mid);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 60px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover { box-shadow: 0 0 32px rgba(212,175,55,0.5); transform: translateY(-2px); }
.btn-gold:hover::before { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,245,245,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 0 28px rgba(37,211,102,0.4);
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,11,11,0.82) 0%,
    rgba(11,11,11,0.55) 50%,
    rgba(11,11,11,0.72) 100%
  );
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  background: var(--gold-dim);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  color: var(--white-mid);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.05s ease forwards;
}

.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;
  animation: fadeUp 1s 1.4s ease forwards;
}

.scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-mid);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.6s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   SECTION COMMONS
   ======================================== */
section { padding: 120px 60px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-mid);
  max-width: 540px;
  line-height: 1.8;
}

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

.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 32px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about { background: var(--black-soft); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrap img { border-radius: var(--radius-lg); }

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 14px 20px;
  z-index: 2;
}

.about-tag .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-tag .lbl {
  font-size: 0.72rem;
  color: var(--white-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--white-mid);
  line-height: 1.85;
  margin-bottom: 52px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--white-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========================================
   SERVICES PREVIEW (Home)
   ======================================== */
.services-preview { background: var(--black); }

.section-header { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--black-card);
}

.service-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.2) 60%, transparent 100%);
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.4) 70%, transparent 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transition: var(--transition);
}

.service-card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.82rem;
  color: var(--white-mid);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-card:hover .service-card-desc { max-height: 80px; }

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 72px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stars { display: flex; gap: 4px; font-size: 1.4rem; }
.rating-count { font-size: 0.78rem; color: var(--white-mid); letter-spacing: 0.08em; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.review-stars { display: flex; gap: 4px; font-size: 0.95rem; margin-bottom: 18px; }

.review-text {
  font-size: 0.98rem;
  color: var(--white-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.review-author { display: flex; align-items: center; gap: 14px; }

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.72rem; color: var(--white-mid); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--black-soft);
  text-align: center;
  padding: 100px 60px;
}

.cta-section .section-title { margin-bottom: 12px; }
.cta-section .section-sub { margin: 0 auto 48px; text-align: center; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover;
  animation: heroZoom 14s ease-out forwards;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.78);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-content .section-label { margin-bottom: 12px; }
.page-hero-content .section-title { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 0; }

/* ========================================
   SERVICES FULL PAGE
   ======================================== */
.services-full { background: var(--black); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.service-full-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  transform: translateY(-8px);
}

.service-full-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-full-img img { transition: transform 0.7s ease; }
.service-full-card:hover .service-full-img img { transform: scale(1.08); }

.service-full-body { padding: 28px 26px 32px; }

.service-number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-full-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-full-desc {
  font-size: 0.88rem;
  color: var(--white-mid);
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 3px 3px 0 0;
  background: var(--gold-dim);
}

/* ========================================
   GALLERY PAGE — Dynamic & Scalable
   ======================================== */
.gallery-section { background: var(--black); }

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--white-mid);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Masonry — auto-expands naturally with content */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  /* No fixed height — grows with content automatically */
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* Smooth transition for filter show/hide */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.65s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay { background: rgba(11,11,11,0.62); }

.gallery-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  margin-bottom: 7px;
}

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

/* ========================================
   LIGHTBOX v2 — Premium, Arrows, Swipe
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

/* Dark backdrop — separate element so it can be clicked */
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  cursor: pointer;
}

/* Image wrapper — handles slide animations */
.lb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity  0.32s ease;
}

/* Slide animations */
.lb-content.slide-out-left  { transform: translateX(-60px); opacity: 0; }
.lb-content.slide-out-right { transform: translateX(60px);  opacity: 0; }
.lb-content.slide-in-right  { animation: slideInRight 0.32s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
.lb-content.slide-in-left   { animation: slideInLeft  0.32s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }

@keyframes slideInRight {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

.lb-img {
  max-width: 88vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 0 1px var(--glass-border);
  display: block;
  /* Entrance animation when lightbox first opens */
  .lightbox.active & { animation: lbImageIn 0.4s ease; }
}

@keyframes lbImageIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Caption */
.lb-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-mid);
  letter-spacing: 0.08em;
  text-align: center;
}

/* Counter */
.lb-counter {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--white-mid);
  z-index: 10;
  background: rgba(11,11,11,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
}

/* Close button */
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(11,11,11,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--white-mid);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lb-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
  transform: rotate(90deg);
}

/* Navigation arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(11,11,11,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--white-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  box-shadow: 0 0 24px rgba(212,175,55,0.25);
  transform: translateY(-50%) scale(1.08);
}

.lb-arrow svg { pointer-events: none; }

/* Swipe hint on mobile (optional visual cue) */
@media (pointer: coarse) {
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-arrow {
    width: 44px; height: 44px;
    background: rgba(11,11,11,0.8);
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section { background: var(--black); }

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateX(6px);
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail .label {
  font-size: 0.68rem;
  color: var(--white-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-detail .value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  margin-top: 24px;
}

.contact-ig:hover {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(253,29,29,0.25);
}

.hours-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.hours-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--white); font-weight: 500; }
.hours-row .open { color: var(--gold); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  padding: 48px 60px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 24px;
}

.footer-logo .brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.footer-logo .sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-mid); }

.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 0.78rem; color: var(--white-mid); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 16px; }

.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white-mid);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.72rem; color: var(--white-mid); }
.footer-rating { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--white-mid); }
.footer-rating .stars { font-size: 0.8rem; }

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.float-btns {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
  text-decoration: none;
  position: relative;
}

.float-btn:nth-child(2) { animation-delay: 0.5s; }

.float-wa  { background: #25D366; color: #fff; }
.float-wa:hover  { transform: scale(1.12) translateY(-3px); box-shadow: 0 0 28px rgba(37,211,102,0.5); }

.float-call { background: var(--gold); color: var(--black); }
.float-call:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 0 28px rgba(212,175,55,0.5); }

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,11,11,0.9);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.float-btn:hover .float-tooltip { opacity: 1; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  section { padding: 90px 40px; }
  .navbar { padding: 18px 40px; }
  .navbar.scrolled { padding: 12px 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section .container { grid-template-columns: 1fr; }
  .map-wrap { position: static; aspect-ratio: 16/9; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  section { padding: 72px 24px; }
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  footer { padding: 40px 24px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .float-btns { bottom: 24px; right: 20px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  /* Lightbox arrows closer on mobile */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-arrow { width: 40px; height: 40px; }
  .lb-img { max-width: 92vw; max-height: 75vh; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .gallery-masonry { columns: 1; }
  .stats-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .lb-counter { font-size: 0.65rem; padding: 5px 12px; }
}



.float-insta{
    background: #E1306C;
}



/* ═══════════════════════════════════════
   ULTRA PREMIUM LUXURY UPGRADE
═══════════════════════════════════════ */

/* Smooth entire website */
html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.05), transparent 25%),
    #050505;
  overflow-x:hidden;
}

/* Premium glass navbar */
.navbar{
  backdrop-filter: blur(18px);
  background: rgba(0,0,0,0.45);
  border-bottom:1px solid rgba(212,175,55,0.08);
  box-shadow:0 8px 40px rgba(0,0,0,0.45);
}

/* Hero glow effect */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,
    rgba(212,175,55,0.08),
    transparent 60%);
  pointer-events:none;
}

/* Premium heading */
.hero-title{
  letter-spacing:-2px;
  text-shadow:
    0 0 30px rgba(212,175,55,0.12);
}

/* Luxury buttons */
.btn{
  position:relative;
  overflow:hidden;
  transition:all .45s ease;
}

.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transition:.6s;
}

.btn:hover::before{
  left:120%;
}

.btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:
    0 12px 35px rgba(212,175,55,0.25);
}

/* Premium cards */
.service-card,
.gallery-item,
.contact-card{
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

.service-card:hover,
.gallery-item:hover,
.contact-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.45),
    0 0 20px rgba(212,175,55,0.08);
  border-color:rgba(212,175,55,0.3);
}

/* Luxury image zoom */
.gallery-item img,
.service-card img{
  transition:transform .7s ease;
}

.gallery-item:hover img,
.service-card:hover img{
  transform:scale(1.06);
}

/* Floating buttons premium */
.float-btn{
  backdrop-filter:blur(12px);
  box-shadow:
    0 10px 35px rgba(0,0,0,0.35),
    0 0 18px rgba(212,175,55,0.12);
  transition:all .35s ease;
}

.float-btn:hover{
  transform:translateY(-6px) scale(1.08);
}

/* Elegant gold line animation */
.section-title::after{
  animation:goldLine 3s infinite ease-in-out;
}

@keyframes goldLine{
  0%{
    width:40px;
    opacity:.6;
  }
  50%{
    width:90px;
    opacity:1;
  }
  100%{
    width:40px;
    opacity:.6;
  }
}

/* Smooth reveal animation */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:
    opacity .9s ease,
    transform .9s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Premium scrollbar */
::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#050505;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(
    to bottom,
    #d4af37,
    #8a6b12
  );
  border-radius:20px;
}

/* Luxury glowing mouse effect */
body::after{
  content:"";
  position:fixed;
  width:500px;
  height:500px;
  background:radial-gradient(
    circle,
    rgba(212,175,55,0.05),
    transparent 70%
  );
  pointer-events:none;
  top:-250px;
  left:-250px;
  z-index:0;
  animation:floatingGlow 10s infinite alternate ease-in-out;
}

@keyframes floatingGlow{
  0%{
    transform:translate(0,0);
  }
  100%{
    transform:translate(120px,80px);
  }
}



