/* ═══════════════════════════════════════════════════════════
   RONDRILA'S MAKEOVER — Liquid Glassmorphism + Deep Golden Glow
   Ultra-dark luxury editorial aesthetic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --bg-deepest: #06060a;
  --bg-dark: #0b0b12;
  --bg-surface: #10101a;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-gold: rgba(212, 175, 55, 0.25);
  --glass-border-gold-strong: rgba(212, 175, 55, 0.45);

  --gold-primary: #d4af37;
  --gold-light: #f5d980;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5d980 40%, #d4af37 60%, #fff8dc 80%, #d4af37 100%);

  --neon-rose: #ff2d78;
  --neon-rose-glow: rgba(255, 45, 120, 0.3);

  --text-primary: #f0ede8;
  --text-secondary: #9a9080;
  --text-muted: #5a5550;

  --font-heading: 'Cormorant Garamond', serif;
  --font-subheading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --section-padding: 120px 0;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-primary), var(--neon-rose));
  border-radius: 4px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 45, 120, 0.06) 0%, transparent 50%),
    var(--bg-deepest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* ─── Animations ─── */
@keyframes goldShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(25px, -25px) scale(1.03);
  }

  66% {
    transform: translate(-18px, 18px) scale(0.97);
  }
}

@keyframes floatOrbAlt {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-20px, 20px) scale(0.96);
  }

  66% {
    transform: translate(28px, -12px) scale(1.04);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--gold-primary);
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px var(--gold-primary);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Gold Shimmer Text ─── */
.gold-shimmer {
  background: var(--gold-gradient);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease infinite;
}

.gold-shimmer-wrap {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

/* ─── Section Helpers ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.section-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border: none;
  margin: 20px auto 28px;
}

/* ═══════ BUTTONS — Liquid Glass ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.15));
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(240, 237, 232, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 45, 120, 0.5);
  color: var(--neon-rose);
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.15);
}

.btn-rose {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.2), rgba(255, 45, 120, 0.08));
  border: 1px solid rgba(255, 45, 120, 0.4);
  color: #ff7faa;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 25px rgba(255, 45, 120, 0.12);
}

.btn-rose:hover {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.35), rgba(255, 45, 120, 0.15));
  box-shadow: 0 0 45px rgba(255, 45, 120, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.82rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ═══════ NAVBAR — Liquid Glass ═══════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(212, 175, 55, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 82px;
  width: auto;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)) brightness(1.1);
  transition: filter 0.3s ease;
}

.navbar__logo:hover img {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.8)) brightness(1.2);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.7);
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), var(--neon-rose));
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--gold-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 9px 22px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar__cta:hover {
  background: rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.7);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 6, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.mobile-menu a:hover {
  color: var(--gold-primary);
}

.mobile-menu .btn {
  margin-top: 16px;
  font-size: 0.85rem;
  padding: 14px 36px;
}

/* ═══════ HERO — Cinematic Split ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deepest);
}

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-deepest) 0%, var(--bg-deepest) 15%, rgba(6, 6, 10, 0.75) 55%, transparent 100%);
}

.hero__photo-edge {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
  z-index: 2;
}

/* Ambient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__orb--gold {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.06);
  filter: blur(100px);
  top: 10%;
  left: 5%;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero__orb--rose {
  width: 300px;
  height: 300px;
  background: rgba(255, 45, 120, 0.05);
  filter: blur(80px);
  bottom: 10%;
  right: 35%;
  animation: floatOrbAlt 10s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 140px 0 80px;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__title-accent {
  font-weight: 400;
  font-style: italic;
  display: block;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border: none;
  margin: 0 0 24px;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.6);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__trust span {
  white-space: nowrap;
}

/* ═══════ STATS STRIP — Glass ═══════ */
.stats-strip {
  position: relative;
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(212, 175, 55, 0.15);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f5d980);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-item__number .suffix {
  font-size: 0.5em;
}

.stat-item__label {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.stat-item__dots {
  font-size: 0.5rem;
  color: var(--gold-primary);
  opacity: 0.6;
  letter-spacing: 6px;
}

.stats-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-chip {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 40px;
  white-space: nowrap;
}

/* ═══════ MARQUEE TICKER ═══════ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding: 12px 0;
  margin: 40px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.4);
  padding: 0 24px;
  flex-shrink: 0;
}

/* ═══════ PORTFOLIO / MASONRY GRID ═══════ */
.portfolio-section {
  padding: var(--section-padding);
  background: transparent;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition-medium);
}

.masonry-item:nth-child(2) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-item:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.masonry-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 10, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

.masonry-item:hover .masonry-item__overlay {
  opacity: 1;
}

.masonry-item__overlay span {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ═══════ SERVICES SECTION ═══════ */
.services-section {
  padding: var(--section-padding);
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-medium);
}

.service-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 8px 48px rgba(212, 175, 55, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.service-card__image {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__content {
  padding: 28px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__link {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.service-card__link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.service-card__link::after {
  content: ' →';
}

/* ═══════ TESTIMONIALS — Glass ═══════ */
.testimonials-section {
  padding: var(--section-padding);
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition-medium);
}

.testimonial-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold-primary);
  opacity: 0.2;
  position: absolute;
  top: 24px;
  left: 32px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  font-size: 0.9rem;
}

.testimonial-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-card__event {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ═══════ CTA SECTION ═══════ */
.cta-section {
  padding: 140px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* soft gold glow background */
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 33px;
  margin-bottom: 16px;
}

.cta-content h2 em {
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-top: 30px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.cta-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}
/* ═══════ FOOTER ═══════ */
/* =====================================
   PREMIUM FULL WIDTH GLASS FOOTER
===================================== */

.footer {
  position: relative;
  padding: 90px 0 35px;

  /* Background image only inside footer */
  background: 
    linear-gradient(
      rgba(10, 10, 18, 0.85),
      rgba(10, 10, 18, 0.92)
    ),
    url("../images/bannerimage1.jpg") top/fit no-repeat;

  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid rgba(212, 175, 55, 0.25);

  box-shadow:
    0 -10px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(212,175,55,0.06);

  overflow: hidden;
}

/* Optional soft gold glow effect */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(90px);
  pointer-events: none;
}

/* Grid Layout */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Brand Logo */
.footer__brand-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

/* Brand Text */
.footer__brand p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Social Icons */
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);

  transition: all 0.35s ease;
}

.footer__social a:hover {
  background: rgba(212,175,55,0.15);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  stroke: #D4AF37;
}

/* Headings */
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 22px;
  position: relative;
}

.footer__col h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(to right, #D4AF37, transparent);
}

/* Links */
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 7px 0;
  transition: all 0.35s ease;
}

.footer__col a:hover {
  color: #D4AF37;
  transform: translateX(6px);
}

/* Bottom Section */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer__bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ═══════ WHATSAPP FLOAT ═══════ */
.whatsapp-float {
  position: fixed;
  bottom: 58px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ═══════ ABOUT PAGE ═══════ */
.about-hero {
  padding: 140px 0 100px;
}

.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-hero__content h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--neon-rose);
  text-shadow: 0 0 30px rgba(255, 45, 120, 0.3);
}

.about-hero__content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Philosophy */
.philosophy-section {
  padding: var(--section-padding);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.philosophy-item {
  padding: 36px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-medium);
}

.philosophy-item:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 8px 48px rgba(212, 175, 55, 0.08);
  transform: translateY(-4px);
}

.philosophy-item__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.philosophy-item h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.philosophy-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Why Choose Me */
.why-section {
  padding: var(--section-padding);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-medium);
}

.why-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 4px 32px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════ SERVICES PAGE ═══════ */
.page-hero {
  position: relative;
  padding: 130px 0 70px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  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;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero__title em {
  font-weight: 400;
  font-style: italic;
}

.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-block {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-block:nth-child(odd) .service-block__image {
  order: 2;
}

.service-block__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition-medium);
}

.service-block__image:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.1);
}

.service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-block__content h2 em {
  font-weight: 400;
  font-style: italic;
}

.service-block__content p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-block__features {
  list-style: none;
  margin: 24px 0 28px;
}

.service-block__features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 7px 0 7px 24px;
  position: relative;
}

.service-block__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
  font-size: 0.7rem;
}

.service-block__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 24px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Services Table (Public) */
.services-table-section {
  padding: 40px 0 100px;
}

.services-table-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.services-table th {
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(6, 6, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-table td {
  padding: 16px 20px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.services-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.services-table .service-title {
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.services-table .service-price {
  color: var(--gold-primary);
  font-family: var(--font-subheading);
  font-weight: 600;
}

.service-slider {
  width: 88px;
  height: 58px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
}

.service-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-slide.active {
  opacity: 1;
}

.services-table img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* â•â•â•â•â•â•â• RESPONSIVE ENHANCEMENTS â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .service-block {
    padding: 80px 0;
  }

  .service-block .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-block:nth-child(odd) .service-block__image {
    order: 0;
  }
}

@media (max-width: 900px) {
  .services-table {
    min-width: 640px;
  }

  .services-table th,
  .services-table td {
    padding: 12px 14px;
  }

  .service-slider {
    width: 76px;
    height: 52px;
  }

  .navbar__logo img {
    height: 64px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .section-subtitle {
    max-width: 100%;
  }

  .services-table-section {
    padding: 30px 0 70px;
  }

  .services-table {
    min-width: 520px;
  }

  .service-slider {
    width: 68px;
    height: 48px;
  }

  .navbar__logo img {
    height: 56px;
  }

  .btn {
    padding: 12px 24px;
  }
}

/* ═══════ GALLERY PAGE ═══════ */
.gallery-section {
  padding: 60px 0 120px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-secondary);
  border-radius: 30px;
}

.filter-btn:hover {
  border-color: var(--glass-border-gold);
  color: var(--gold-primary);
}

.filter-btn.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition-medium);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* ═══════ LIGHTBOX ═══════ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__image {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.12);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
  transition: var(--transition-fast);
}

.lightbox__close:hover {
  color: var(--gold-primary);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.lightbox__nav:hover {
  border-color: var(--glass-border-gold);
  color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-section {
  padding: 60px 0 120px;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 48px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.contact-form h3 em {
  font-weight: 400;
  font-style: italic;
}

.form-content {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.active {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary);
}

.form-success h3 {
  margin-bottom: 12px;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.1);
  transform: translateX(-4px);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.contact-info-card__text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 2px;
}

.service-area-card {
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  margin-top: 6px;
}

.service-area-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-area-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════ SCROLL ANIMATIONS ═══════ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.stagger-children>* {
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.stagger-children>*:nth-child(1) {
  --stagger: 0;
}

.stagger-children>*:nth-child(2) {
  --stagger: 1;
}

.stagger-children>*:nth-child(3) {
  --stagger: 2;
}

.stagger-children>*:nth-child(4) {
  --stagger: 3;
}

.stagger-children>*:nth-child(5) {
  --stagger: 4;
}

.stagger-children>*:nth-child(6) {
  --stagger: 5;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .hero__photo {
    width: 50%;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-item:nth-child(2) {
    grid-row: span 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero__image {
    max-height: 500px;
  }

  .service-block .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block:nth-child(odd) .service-block__image {
    order: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section .container {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .navbar__menu,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__photo {
    display: none;
  }

  .hero__content {
    padding: 0;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__trust {
    justify-content: center;
  }

  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .stat-item+.stat-item::before {
    display: none;
  }

  .stats-trust {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cta-card {
    padding: 56px 28px;
  }

  .marquee-strip {
    margin: 24px 0;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .stat-item__number {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

.scroll-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-anim.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section sizing */
.servicesScrollSection {
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.scroll-section{
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.section-inner{
  height: 100%;
  display: flex;
  align-items: center;
}


/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

/* Outline Text */
.outline-text {
  -webkit-text-stroke: 1px #c9a24d;
  color: transparent;
}

/***** journey and time line****/
 .scroll-anim {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .scroll-anim.active {
      opacity: 1;
      transform: translateY(0);
    }

    .outline-text {
      -webkit-text-stroke: 1px #c9a24d;
      color: transparent;
    }

    .timeline-line {
      position: relative;
    }

    .timeline-line::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, #CE9B53, transparent);
      transform: translateX(-50%);
    }

    .timeline-dot {
      width: 16px;
      height: 16px;
      background: #CE9B53;
      border: 3px solid #000;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      transition: all 0.3s ease;
    }

    .timeline-dot:hover {
      width: 24px;
      height: 24px;
      box-shadow: 0 0 20px rgba(206, 155, 83, 0.6);
    }

    .stat-card {
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-8px);
    }

    #preloader {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .loader {
      display: flex;
      gap: 10px;
    }

    .loader span {
      width: 12px;
      height: 12px;
      background: #c9a24d;
      border-radius: 50%;
      animation: bounce 0.6s infinite alternate;
    }

    .loader span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .loader span:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes bounce {
      from {
        transform: translateY(0);
        opacity: 0.4;
      }
      to {
        transform: translateY(-12px);
        opacity: 1;
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mission-card {
      background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
      border: 1px solid rgba(206, 155, 83, 0.3);
      transition: all 0.3s ease;
    }

    .mission-card:hover {
      border-color: #CE9B53;
      box-shadow: 0 0 30px rgba(206, 155, 83, 0.2);
    }

    /* ===============================
   ABOUT HERO SECTION
================================ */

.about-hero {
    position: relative;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

/* Container layout */

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Image */

.about-hero__image {
    position: relative;
}

.about-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Content */

.about-hero__content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero__content h2 em {
    color: #d4af37;
    font-style: normal;
}

.about-hero__content p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Section Tag */

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
}

/* Button */

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c19b2e;
}

/* ===============================
   BOTTOM BLEND EFFECT
================================ */

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.6) 60%,
        #000 100%
    );
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero__content h2 {
        font-size: 34px;
    }

}

@media (max-width: 576px) {

    .about-hero {
        padding: 80px 0;
    }

    .about-hero__content h2 {
        font-size: 28px;
    }

}

.about_cta {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 15px 22px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top:20px;

}

.about_cta:hover {
  background: rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.7);
}
