/* ========================================
   RA ROYAL EVENTS – style.css
   Premium Luxury Event Planning Website
   ======================================== */

/* ---- GOOGLE FONTS & ROOT VARIABLES ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --black:        #080808;
  --dark:         #111111;
  --dark2:        #1a1a1a;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-xlight:  #F5E4B0;
  --gold-dark:    #9A7B3F;
  --white:        #FAFAFA;
  --off-white:    #F5F0EA;
  --pastel-cream: #FDF8F0;
  --pastel-pink:  #F9EEE8;
  --grey:         #888888;
  --grey-light:   #CCCCCC;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.25);

  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.gold-text { color: var(--gold); }
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); margin: 20px 0; }
.gold-line.center { margin: 20px auto; }
.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-label { display: block; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; color: var(--dark); }
.section-desc { max-width: 600px; margin: 16px auto 0; color: var(--grey); font-size: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.50);
  filter: brightness(1.08);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1; transform: translate(0, 0) !important; }

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.crown-icon {
  font-size: 3.5rem; color: var(--gold);
  animation: crownFloat 1.5s ease-in-out infinite alternate;
}
@keyframes crownFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}
.preloader-text {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--white);
  letter-spacing: 3px; margin: 12px 0 20px; font-weight: 500;
}
.preloader-bar {
  width: 200px; height: 2px; background: var(--dark2);
  margin: 0 auto; border-radius: 2px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: fillBar 2s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-crown { font-size: 1.8rem; color: var(--gold); line-height: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--white); letter-spacing: 1px; line-height: 1.2;
}
.logo-tag { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(8,8,8,0.75) 0%, rgba(15,10,5,0.65) 50%, rgba(0,0,0,0.80) 100%),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold-light); border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 0 24px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 24px; border-radius: 50px; margin-bottom: 28px;
  background: rgba(201,168,76,0.08);
  animation-delay: 0.2s;
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600; line-height: 1.1; color: var(--white);
  margin-bottom: 20px;
  animation-delay: 0.4s;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.8); max-width: 550px;
  margin: 0 auto 28px; animation-delay: 0.6s;
}
.hero-divider {
  color: var(--gold); font-size: 1.2rem; margin-bottom: 28px;
  animation-delay: 0.7s;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px; animation-delay: 0.8s;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  animation-delay: 1s;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat span { font-size: 1.5rem; color: var(--gold); }
.stat p { font-size: 0.75rem; color: rgba(255,255,255,0.65); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.stat-divider { color: rgba(201,168,76,0.35); font-size: 2rem; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
}
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-arrow {
  width: 20px; height: 20px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: var(--pastel-cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-frame img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.6s ease; }
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-frame.small {
  width: 200px; height: 160px; position: absolute;
  bottom: -30px; right: -30px; border: 4px solid var(--white);
  box-shadow: var(--shadow-md); z-index: 2;
}
.about-img-frame.small img { height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 24px; left: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); padding: 16px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-gold); text-align: center; z-index: 3;
}
.badge-num { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.7rem; letter-spacing: 1px; font-weight: 600; }
.about-content { padding: 20px 0; }
.about-text { color: #444; margin-bottom: 16px; font-size: 1.02rem; }
.about-pillars {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0;
}
.pillar {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 16px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  font-weight: 600; font-size: 0.9rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pillar i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   FOUNDER SECTION
============================================================ */
.founder-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.founder-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.founder-section .section-title,
.founder-section .section-label { color: var(--gold-light); }
.founder-section .section-title span { color: var(--gold); }
.founder-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 60px; max-width: 900px; margin: 0 auto;
  backdrop-filter: blur(10px);
  transition: border-color 0.4s ease;
}
.founder-card:hover { border-color: rgba(201,168,76,0.5); }
.founder-img-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.founder-img-ring {
  position: absolute; width: 240px; height: 240px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}
.founder-img-ring.ring2 {
  width: 210px; height: 210px;
  border-color: rgba(201,168,76,0.5);
  animation-delay: 1s;
}
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 1; } }
.founder-img {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--gold); position: relative; z-index: 2;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.founder-crown {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-size: 1.8rem; color: var(--gold); z-index: 3;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
}
.founder-info { color: var(--white); }
.founder-name { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.founder-title { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.founder-bio { color: rgba(255,255,255,0.75); margin-bottom: 12px; font-size: 0.96rem; }
.founder-quote {
  margin: 24px 0; padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--gold-xlight);
  font-size: 1.05rem; line-height: 1.6;
}
.quote-mark { font-size: 1.5rem; color: var(--gold); line-height: 0; vertical-align: -0.3em; }
.founder-quote cite { display: block; font-style: normal; font-size: 0.8rem; color: var(--gold); margin-top: 8px; letter-spacing: 2px; }
.founder-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition-fast); text-decoration: none;
}
.social-btn.whatsapp { background: #25D366; color: var(--white); }
.social-btn.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: var(--white); }
.social-btn.facebook { background: #1877F2; color: var(--white); }
.social-btn:hover { transform: translateY(-3px) scale(1.1); }

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,168,76,0.25);
}
.service-img-wrap { position: relative; overflow: hidden; height: 220px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.service-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--black);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.service-body { padding: 24px 24px 20px; }
.service-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.service-title { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 600; margin-bottom: 8px; }
.service-desc { color: var(--grey); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.service-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white); padding: 11px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition-fast);
  text-decoration: none;
}
.service-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-section { background: var(--white); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; border: 1.5px solid var(--grey-light);
  color: var(--grey); background: var(--white);
  transition: var(--transition-fast); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold); color: var(--black);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 280px; cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 12px; }
.gallery-book-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--black);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: var(--transition-fast);
  text-decoration: none; align-self: flex-start;
}
.gallery-book-btn:hover { background: var(--gold-light); }
.gallery-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  color: var(--gold); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.92); cursor: pointer;
}
.lightbox-content {
  position: relative; z-index: 1; max-width: 900px; width: 95%;
  background: var(--dark); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.9); transition: transform 0.4s ease;
  border: 1px solid rgba(201,168,76,0.2);
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-img-wrap { height: 450px; }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-caption { padding: 24px 28px; }
.lightbox-caption h4 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--white); margin-bottom: 6px; }
.lightbox-caption p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.2); color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast); backdrop-filter: blur(10px);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
  background: var(--pastel-cream); position: relative; overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.testimonials-slider-wrap { position: relative; max-width: 800px; margin: 0 auto; }
.testimonials-slider { overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-card {
  min-width: 100%; padding: 0 20px;
}
.testimonial-inner {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 44px; box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid rgba(201,168,76,0.15); position: relative;
}
.testimonial-inner::before {
  content: '"'; font-family: var(--font-heading); font-size: 6rem;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: 10px; left: 30px; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }
.testimonial-text {
  font-size: 1.1rem; color: #444; line-height: 1.8;
  font-style: italic; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--black);
}
.t-name { font-weight: 700; font-size: 1rem; }
.t-event { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--gold); color: var(--black); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grey-light); cursor: pointer; transition: var(--transition-fast);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section { background: var(--dark); }
.contact-section .section-title, .contact-section .section-label { color: var(--white); }
.contact-section .section-title span { color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }
.contact-wa-big { margin-top: 36px; }
.contact-form-wrap {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); color: var(--white); font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 20px 0 28px; max-width: 280px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-heading); font-size: 1.15rem; color: var(--white);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a, .footer-contact-col p {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-col p { margin-bottom: 10px; }
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); font-size: 0.85rem; }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   STICKY WHATSAPP
============================================================ */
.sticky-wa {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white); font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  transition: var(--transition-fast); animation: waPulse 2s infinite;
}
.sticky-wa:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.08); }
}
.sticky-wa-tooltip {
  position: absolute; right: 70px; background: var(--dark); color: var(--white);
  font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.sticky-wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark); border-right-width: 0;
}
.sticky-wa:hover .sticky-wa-tooltip { opacity: 1; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold); opacity: 0; visibility: hidden;
  transition: var(--transition-fast); cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 44px 36px; }
  .founder-social { justify-content: center; }
  .founder-quote { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(8,8,8,0.97); flex-direction: column;
    padding: 24px 0; gap: 0;
    transform: translateY(-110%); transition: transform 0.4s ease;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 28px; border-radius: 0; font-size: 1rem; }
  .nav-link::after { bottom: 8px; left: 28px; right: 28px; }

  /* Hero */
  .hero-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame img { height: 320px; }
  .about-img-frame.small { width: 140px; height: 110px; }
  .about-badge { left: 10px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  /* Lightbox */
  .lightbox-img-wrap { height: 260px; }
  .lightbox-caption { padding: 16px 20px; }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }

  /* Founder */
  .founder-card { padding: 36px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-form-wrap { padding: 28px 22px; }

  /* Back to top / sticky WA */
  .sticky-wa { width: 54px; height: 54px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 84px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .about-pillars { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-btn { padding: 8px 18px; font-size: 0.8rem; }
}

/* ============================================================
   EMPTY STATE
============================================================ */
.empty-state {
  text-align: center; padding: 60px 20px; grid-column: 1/-1; color: var(--grey);
}
.empty-state i { font-size: 3rem; color: var(--gold); opacity: 0.5; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }

