/* ============================================================
   JB Events — Premium Design System
   Colors: #0A2540 (Royal Blue) | #D4AF37 (Gold) | #16A34A (Green)
   Fonts: Poppins (headings) + Inter (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0A2540;
  --primary-light: #0d3260;
  --primary-dark: #061829;
  --gold: #D4AF37;
  --gold-light: #e8c94b;
  --gold-dark: #b8950f;
  --green: #16A34A;
  --green-light: #22c55e;
  --bg: #FAFAFA;
  --dark: #111827;
  --dark2: #1f2937;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --gray-border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.20);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --gradient-primary: linear-gradient(135deg, #0A2540 0%, #0d3260 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #e8c94b 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10,37,64,.95) 0%, rgba(13,50,96,.80) 60%, rgba(212,175,55,.20) 100%);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-xl { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--gray); line-height: 1.8; }
.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-green { color: var(--green) !important; }
.text-white { color: var(--white) !important; }
.text-gray { color: var(--gray) !important; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ---------- Section Utilities ---------- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 130px 0; }
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.section-primary { background: var(--gradient-primary); }
.section-primary h2, .section-primary h3, .section-primary h4 { color: var(--white); }
.section-primary p { color: rgba(255,255,255,.75); }
.section-gray { background: var(--gray-light); }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.12);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(212,175,55,.25);
}
.section-label::before { content: ''; display: block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(10,37,64,.3);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,37,64,.4);
  color: var(--white);
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,.50);
  color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22,163,74,.4);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 10px 22px; font-size: .85rem; border-radius: 6px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-primary { background: rgba(10,37,64,.1); color: var(--primary); }
.badge-gold { background: rgba(212,175,55,.15); color: var(--gold-dark); }
.badge-green { background: rgba(22,163,74,.1); color: var(--green); }

/* ============================================================
   HEADER
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 10px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--gold); font-size: .85rem; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--primary-dark); }

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
}
.main-header.header-top {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 72px; height: 72px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(10,37,64,.3);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.3) 0%, transparent 60%);
}
.logo-icon i { color: var(--gold); font-size: 1.3rem; z-index: 1; position: relative; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: -.01em;
}
.logo-tagline {
  font-size: .65rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(10,37,64,.05); }
.nav-link i { font-size: .7rem; opacity: .6; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--dark);
  transition: var(--transition);
}
.dropdown-menu a i { color: var(--gold); width: 16px; }
.dropdown-menu a:hover { background: rgba(10,37,64,.05); color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #25D366;
  color: var(--white);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #128C7E; color: var(--white); transform: translateY(-2px); }
.whatsapp-btn i { font-size: 1rem; }

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

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-border);
}
.mobile-nav-close {
  width: 40px; height: 40px;
  border: none;
  background: var(--gray-light);
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--dark);
  font-size: 1rem;
  transition: var(--transition);
}
.mobile-nav-link:hover { background: rgba(10,37,64,.05); color: var(--primary); }
.mobile-nav-sub { padding-left: 16px; display: none; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: block;
  padding: 10px 16px;
  color: var(--gray);
  font-size: .9rem;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav-sub a:hover { background: rgba(10,37,64,.05); color: var(--primary); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta .btn { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  width: 100%;
}
/* Hero container fix: ensure the direct .container child also clears the overlay */
.hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: .7rem; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }

.hero-quick-form {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  max-width: 720px;
}
.hero-quick-form h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.quick-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.quick-form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
}
.form-field input::placeholder { color: rgba(255,255,255,.5); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.15);
}
.form-field select option { background: var(--primary); color: var(--white); }

/* Standard form (non-hero) */
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: .95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,37,64,.08);
}
.form-label { font-size: .9rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; display: block; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.floating-badge {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.float-btn i { font-size: 1.1rem; }
.float-btn-wa { background: #25D366; }
.float-btn-wa:hover { background: #128C7E; transform: scale(1.05); }
.float-btn-call { background: var(--primary); }
.float-btn-call:hover { background: var(--primary-light); transform: scale(1.05); }

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,.1);
}
.stat-icon {
  width: 56px; height: 56px;
  background: rgba(212,175,55,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.2);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,37,64,.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(10,37,64,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--primary); color: var(--gold); }
.service-card-title { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.service-card-desc { font-size: .88rem; color: var(--gray); margin-bottom: 20px; flex: 1; line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold); gap: 10px; }

.vendor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.vendor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.vendor-card-img { height: 200px; overflow: hidden; position: relative; }
.vendor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vendor-card:hover .vendor-card-img img { transform: scale(1.06); }
.vendor-card-body { padding: 20px; }
.vendor-card-cat { font-size: .75rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.vendor-card-name { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.vendor-card-rating { display: flex; align-items: center; gap: 4px; font-size: .85rem; color: var(--gray); margin-bottom: 12px; }
.vendor-card-rating .stars { color: #FBBF24; }
.vendor-card-price { font-size: .85rem; color: var(--gray); }
.vendor-card-price strong { color: var(--primary); font-family: 'Poppins', sans-serif; }

.venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.venue-card-img { height: 240px; overflow: hidden; position: relative; }
.venue-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.venue-card:hover .venue-card-img img { transform: scale(1.06); }
.venue-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 20px;
  color: var(--white);
}
.venue-card-city { font-size: .78rem; color: var(--gold-light); font-weight: 500; margin-bottom: 4px; }
.venue-card-name { font-size: 1.05rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
.venue-card-body { padding: 18px 20px; }
.venue-card-capacity { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--gray); }
.venue-card-capacity i { color: var(--primary); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-cat { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-dark); background: rgba(212,175,55,.1); padding: 3px 10px; border-radius: 50px; }
.blog-card-date { font-size: .78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.blog-card-title { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; transition: var(--transition); line-height: 1.45; }
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { font-size: .88rem; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.blog-card-author { display: flex; align-items: center; gap: 8px; }
.blog-card-author-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.blog-card-author-name { font-size: .8rem; font-weight: 500; color: var(--dark); }
.blog-card-read { font-size: .78rem; color: var(--gray); }

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.package-card.featured {
  border-color: var(--gold);
  background: var(--gradient-primary);
}
.package-card.featured h3, .package-card.featured h4, .package-card.featured p, .package-card.featured li { color: var(--white); }
.package-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.package-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.package-icon.light { background: rgba(10,37,64,.08); color: var(--primary); }
.package-icon.dark { background: rgba(212,175,55,.15); color: var(--gold); }
.package-name { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; color: var(--gray); }
.package-card.featured .package-name { color: rgba(255,255,255,.7); }
.package-price { margin-bottom: 8px; }
.package-price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}
.package-card.featured .package-price-amount { color: var(--gold); }
.package-price-label { font-size: .85rem; color: var(--gray); }
.package-desc { font-size: .88rem; margin-bottom: 28px; color: var(--gray); line-height: 1.6; }
.package-card.featured .package-desc { color: rgba(255,255,255,.7); }
.package-features { list-style: none; margin-bottom: 32px; flex: 1; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--dark);
}
.package-card.featured .package-features li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.package-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.package-card.featured .package-features li i { color: var(--gold); }

/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover .category-card-img img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10,37,64,.80));
}
.category-card-body { padding: 16px; text-align: center; }
.category-card-name { font-size: .95rem; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--dark); margin-bottom: 4px; }
.category-card-count { font-size: .78rem; color: var(--gray); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,.3);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(10,37,64,.08) 0%, rgba(212,175,55,.08) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
  border: 1px solid rgba(10,37,64,.08);
}
.why-card:hover .why-icon {
  background: var(--gradient-primary);
  color: var(--gold);
  border-color: transparent;
}
.why-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.why-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(10,37,64,.3);
  border: 3px solid rgba(212,175,55,.3);
  position: relative;
}
.process-step-icon { font-size: .8rem; color: rgba(255,255,255,.7); }
.process-title { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.process-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.testimonial-stars { color: #FBBF24; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-text { font-size: .95rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,175,55,.3);
}
.testimonial-author-name { font-weight: 600; font-size: 1rem; color: var(--dark); }
.testimonial-author-role { font-size: .8rem; color: var(--gray); }
.testimonial-event { font-size: .78rem; color: var(--gold-dark); font-weight: 500; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.masonry-grid {
  columns: 4;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform .5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay i { color: var(--white); font-size: 1.5rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(10,37,64,.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: rgba(10,37,64,.02); }
.faq-question h4 { font-size: .97rem; color: var(--dark); font-weight: 600; flex: 1; }
.faq-icon {
  width: 32px; height: 32px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: .92rem; color: var(--gray); line-height: 1.75; }

/* ============================================================
   AWARDS & PARTNERS
   ============================================================ */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.award-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,.3); transform: translateY(-4px); }
.award-icon { font-size: 2.5rem; margin-bottom: 16px; }
.award-title { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.award-year { font-size: .8rem; color: var(--gold-dark); font-weight: 500; }

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 50px;
  opacity: .5;
  filter: grayscale(100%);
  transition: var(--transition);
  object-fit: contain;
}
.partner-logo:hover { opacity: 1; filter: none; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 60%);
}
.newsletter-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.newsletter-inner p { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: .95rem;
  padding: 10px 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; }

/* ============================================================
   GOOGLE MAP SECTION
   ============================================================ */
.map-section { padding: 0; }
.map-wrapper { height: 450px; position: relative; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.map-info {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 320px;
  z-index: 10;
}
.map-info h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 20px; }
.map-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.map-info-item i { color: var(--gold); width: 18px; flex-shrink: 0; margin-top: 3px; }
.map-info-item p { font-size: .88rem; color: var(--gray); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 46px; height: 46px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,.3);
}
.footer-logo-icon i { color: var(--gold); font-size: 1.2rem; }
.footer-logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social-link:hover { background: var(--gold); color: var(--primary-dark); border-color: transparent; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(212,175,55,.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-link i { font-size: .7rem; color: var(--gold); opacity: .7; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,55,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
}
.footer-contact-text { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.6); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-wave {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--bg);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .6rem; }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-img { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.about-story-img img { width: 100%; height: 500px; object-fit: cover; }
.about-story-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-story-badge-num { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-story-badge-text { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -44px;
  top: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,.3);
}
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.timeline-title { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.timeline-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-card-img { height: 280px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-body { padding: 24px; }
.team-card-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card-role { font-size: .85rem; color: var(--gold-dark); font-weight: 500; margin-bottom: 12px; }
.team-card-bio { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a {
  width: 34px; height: 34px;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: .85rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 52px; height: 52px;
  background: rgba(10,37,64,.06);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: var(--primary); color: var(--gold); }
.contact-info-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; margin-bottom: 4px; }
.contact-info-value { font-size: .97rem; font-weight: 500; color: var(--dark); }
.contact-info-value a { color: var(--dark); }
.contact-info-value a:hover { color: var(--primary); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 60%);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-title { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-align: center; }
.auth-subtitle { font-size: .9rem; color: var(--gray); text-align: center; margin-bottom: 32px; }
.auth-divider { text-align: center; position: relative; margin: 24px 0; }
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--gray-border);
}
.auth-divider span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: .85rem;
  color: var(--gray);
}
.auth-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--gray); }
.auth-footer a { color: var(--primary); font-weight: 500; }
.password-field { position: relative; }
.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: .95rem;
  padding: 4px;
  transition: var(--transition);
}
.password-toggle:hover { color: var(--primary); }
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: rgba(22,163,74,.08); color: var(--green); border: 1px solid rgba(22,163,74,.2); }
.alert-error { background: rgba(239,68,68,.08); color: #dc2626; border: 1px solid rgba(239,68,68,.2); }
.alert-info { background: rgba(10,37,64,.06); color: var(--primary); border: 1px solid rgba(10,37,64,.15); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-hero-img { border-radius: var(--radius-xl); overflow: hidden; height: 500px; }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-sidebar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}
.service-sidebar h3 { font-size: 1.1rem; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: .9rem;
  color: var(--dark);
}
.service-features li i { color: var(--green); }

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.col-span-2 { grid-column: span 2; }
.gap-sm { gap: 16px; }
.gap-lg { gap: 40px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-60 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

/* Spacing */
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }

/* ============================================================
   ANIMATIONS (AOS-like with custom triggers)
   Only applied once JS loads (.js-loaded on body) so content
   is never invisible without JavaScript.
   ============================================================ */
.js-loaded [data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.js-loaded [data-aos].aos-animate { opacity: 1; transform: translateY(0); }
.js-loaded [data-aos="fade-left"] { transform: translateX(-30px); }
.js-loaded [data-aos="fade-left"].aos-animate { transform: translateX(0); }
.js-loaded [data-aos="fade-right"] { transform: translateX(30px); }
.js-loaded [data-aos="fade-right"].aos-animate { transform: translateX(0); }
.js-loaded [data-aos="zoom-in"] { transform: scale(.9); }
.js-loaded [data-aos="zoom-in"].aos-animate { transform: scale(1); }
.js-loaded [data-aos="fade-up"] { transform: translateY(30px); }
.js-loaded [data-aos="fade-up"].aos-animate { transform: translateY(0); }

/* Delay classes */
.delay-100 { transition-delay: .1s !important; }
.delay-200 { transition-delay: .2s !important; }
.delay-300 { transition-delay: .3s !important; }
.delay-400 { transition-delay: .4s !important; }
.delay-500 { transition-delay: .5s !important; }
.delay-600 { transition-delay: .6s !important; }
.delay-700 { transition-delay: .7s !important; }
.delay-800 { transition-delay: .8s !important; }

/* Particle animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes counter-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-hero h1 { animation: slide-in-up .8s ease forwards; }
.animate-hero .hero-badge { animation: slide-in-up .6s ease forwards; }
.animate-hero .hero-desc { animation: slide-in-up .8s .2s ease both; }
.animate-hero .hero-actions { animation: slide-in-up .8s .35s ease both; }
.animate-hero .hero-stats { animation: slide-in-up .8s .5s ease both; }

.gold-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.gold-line.center { display: block; margin: 0 auto 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-card:nth-child(3)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::after { display: none; }
}
@media (max-width: 992px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .two-col, .two-col-60 { grid-template-columns: 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-info { position: static; transform: none; width: 100%; border-radius: 0; }
  .map-wrapper { height: auto; display: flex; flex-direction: column; }
  .map-wrapper iframe { height: 300px; }
  .about-story-badge { position: static; transform: none; margin-top: 20px; display: inline-block; }
  .masonry-grid { columns: 2; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-lg { padding: 90px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card { padding: 32px 24px; }
  .quick-form-grid, .quick-form-grid.three { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; padding: 12px; }
  .top-bar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .masonry-grid { columns: 2; }
  .container-xl { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero-content { padding: 120px 0 80px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .gallery-filters { gap: 6px; }
  .gallery-filter-btn { padding: 8px 16px; font-size: .82rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .package-card { padding: 24px 18px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 950;
  font-family: 'Inter', sans-serif;
}
.chat-toggle {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  animation: pulse-glow 2s infinite;
}
.chat-toggle:hover { transform: scale(1.1); }
.chat-badge-label {
  position: absolute;
  bottom: 0; right: -60px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.chat-window {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 500px;
  border: 1px solid var(--gray-border);
}
.chat-window.open { display: flex; }
.chat-header {
  background: var(--gradient-primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 38px; height: 38px;
  background: rgba(212,175,55,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .95rem;
}
.chat-name { font-weight: 600; color: var(--white); font-size: .9rem; font-family: 'Poppins', sans-serif; }
.chat-status { font-size: .72rem; color: rgba(255,255,255,.7); }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1rem; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}
.chat-msg { max-width: 80%; }
.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .85rem;
  line-height: 1.5;
}
.chat-msg-bot .chat-bubble { background: var(--gray-light); color: var(--dark); border-radius: 14px 14px 14px 4px; }
.chat-msg-user .chat-bubble { background: var(--gradient-primary); color: var(--white); border-radius: 14px 14px 4px 14px; }
.chat-input-area { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--gray-border); }
.chat-input {
  flex: 1;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--primary); }
.chat-send {
  width: 38px; height: 38px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chat-send:hover { background: var(--gold); color: var(--primary-dark); }

/* ============================================================
   MISC UTILS
   ============================================================ */
.divider { height: 1px; background: var(--gray-border); margin: 40px 0; }
.divider-gold { height: 2px; background: var(--gradient-gold); width: 60px; border-radius: 2px; margin: 16px 0; }
.divider-gold.center { margin: 16px auto; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-light);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--primary); color: var(--white); }
.d-none { display: none !important; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 14px 20px;
  gap: 12px;
  backdrop-filter: blur(10px);
  max-width: 500px;
  transition: var(--transition);
}
.search-box:focus-within { border-color: var(--gold); background: rgba(255,255,255,.18); }
.search-box i { color: rgba(255,255,255,.6); }
.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: .95rem;
  outline: none;
}
.search-box input::placeholder { color: rgba(255,255,255,.5); }
.search-box .btn { padding: 8px 20px; font-size: .85rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  color: var(--dark);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
