/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0A2342;
  --navy-light: #1a3a5c;
  --navy-dark: #06152b;
  --gold: #D4AF37;
  --gold-light: #e0c45a;
  --gold-dark: #b8962e;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray: #888888;
  --light-gray: #e0e0e0;
  --dark-gray: #333333;
  --text: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 30px rgba(212,175,55,0.3);
  --shadow-navy: 0 4px 30px rgba(10,35,66,0.15);
  --max-width: 1200px;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212,175,55,0.1);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2 span { color: var(--gold); }
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
  border-radius: 2px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}
}
.gold-text { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-navy); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow: 0 2px 20px rgba(10,35,66,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}
.navbar .logo span { color: var(--gold); font-weight: 400; font-size: 0.85rem; display: block; }
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.4) 40%, rgba(10,35,66,0.6) 70%, rgba(10,35,66,0.88) 100%);
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInDown 1s ease;
}
.hero-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-content h1 span {
  color: var(--gold);
  position: relative;
}
.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 1px;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-buttons .btn-gold {
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.hero-buttons .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.hero-buttons .btn-outline-light {
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-stats-bar .hs-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.hero-stats-bar .hs-item strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.hero-stats-bar .hs-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero-bg-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-icons i {
  position: absolute;
  color: rgba(212,175,55,0.1);
  font-size: 2rem;
  animation: floatIcon 20s infinite linear;
}
.hero-bg-icons i:nth-child(1) { top: 10%; left: 8%; font-size: 2.5rem; animation-duration: 22s; animation-delay: -2s; }
.hero-bg-icons i:nth-child(2) { top: 20%; right: 12%; font-size: 1.8rem; animation-duration: 18s; animation-delay: -5s; }
.hero-bg-icons i:nth-child(3) { top: 50%; left: 5%; font-size: 3rem; animation-duration: 25s; animation-delay: -8s; }
.hero-bg-icons i:nth-child(4) { top: 65%; right: 8%; font-size: 2.2rem; animation-duration: 20s; animation-delay: -3s; }
.hero-bg-icons i:nth-child(5) { top: 80%; left: 15%; font-size: 1.6rem; animation-duration: 16s; animation-delay: -10s; }
.hero-bg-icons i:nth-child(6) { top: 35%; right: 5%; font-size: 2.8rem; animation-duration: 24s; animation-delay: -6s; }
.hero-bg-icons i:nth-child(7) { top: 15%; left: 30%; font-size: 1.5rem; animation-duration: 19s; animation-delay: -1s; }
.hero-bg-icons i:nth-child(8) { top: 70%; right: 25%; font-size: 2rem; animation-duration: 21s; animation-delay: -7s; }
.hero-bg-icons i:nth-child(9) { top: 45%; left: 20%; font-size: 2.2rem; animation-duration: 17s; animation-delay: -4s; }
.hero-bg-icons i:nth-child(10) { top: 85%; right: 15%; font-size: 1.8rem; animation-duration: 23s; animation-delay: -9s; }
.hero-bg-icons i:nth-child(11) { top: 5%; right: 35%; font-size: 2rem; animation-duration: 20s; animation-delay: -11s; }
.hero-bg-icons i:nth-child(12) { top: 55%; left: 40%; font-size: 1.7rem; animation-duration: 18s; animation-delay: -12s; }
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg) scale(0.5); opacity: 0; }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 1.5rem;
}
/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(180deg, #fff 0%, rgba(212,175,55,0.03) 100%);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, var(--navy), #0a1a30);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(10,35,66,0.15);
}
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 50px;
}
.about-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 22px;
  pointer-events: none;
}
.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-experience-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.about-experience-badge span {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-text {
  padding-right: 20px;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212,175,55,0.1);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 24px;
  color: var(--navy);
  line-height: 1.15;
}
.about-text h2 span {
  color: var(--gold);
  position: relative;
}
.about-text h2 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.2;
  border-radius: 2px;
}
.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.af-item:hover {
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 4px 15px rgba(212,175,55,0.08);
  transform: translateX(4px);
}
.af-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #c9a53a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.af-item div strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.af-item div span {
  font-size: 0.85rem;
  color: var(--gray);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item .label { color: var(--gray); font-size: 0.9rem; margin-top: 5px; }
/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, #fff 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #c9a53a, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 20px 50px rgba(10,35,66,0.12);
}
.service-card .icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover .icon {
  background: linear-gradient(135deg, var(--gold), #c9a53a);
  color: var(--navy);
  border-radius: 50%;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.service-card .service-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover .service-learn {
  opacity: 1;
  transform: translateY(0);
}
/* ===== BOOKING ===== */
.booking-section {
  background: var(--off-white);
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
}
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.booking-step {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.booking-step.active {
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 4px 15px rgba(10,35,66,0.2);
}
.booking-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}
.booking-step.active .step-num {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.event-type-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.event-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10,35,66,0.1);
}
.event-type-card.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}
.event-type-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  transition: var(--transition);
}
.event-type-card.selected .icon { transform: scale(1.15); }
.event-type-card h4 { font-size: 1rem; color: var(--navy); font-weight: 600; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.package-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 45px 30px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
  transition: var(--transition);
}
.package-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.package-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(212,175,55,0.25);
}
.package-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.package-card.featured .pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  transform: none;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}
.package-card .pkg-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.package-card .pkg-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.1;
}
.package-card .pkg-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.package-card .pkg-features { margin: 30px 0; text-align: left; }
.package-card .pkg-features li {
  padding: 10px 0;
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.package-card .pkg-features li:last-child { border-bottom: none; }
.package-card .pkg-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  width: 20px;
  height: 20px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(10,35,66,0.12);
}
.package-card.featured:hover { transform: translateY(-10px) scale(1.03); }
.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
/* ===== PORTFOLIO ===== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 28px;
  border: none;
  background: var(--off-white);
  color: var(--gray);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: var(--transition);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.filter-btn:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--off-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10,35,66,0.15);
}
.portfolio-item img, .portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item:hover img { transform: scale(1.12); }
.portfolio-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(transparent 0%, rgba(10,35,66,0.85) 40%);
  transform: translateY(0);
  opacity: 0;
  transition: all 0.4s ease;
}
.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.portfolio-item .overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}
.portfolio-item .overlay p { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.5px; }
.portfolio-item .overlay .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.4s ease;
}
.portfolio-item:hover .overlay .overlay-icon { opacity: 1; }
.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray);
  gap: 10px;
  font-size: 2rem;
}
/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, #fff 0%, rgba(212,175,55,0.04) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 36px 30px 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 3rem;
  color: rgba(212,175,55,0.06);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(10,35,66,0.1);
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card .review-text {
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card .client-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), #c9a53a);
  padding: 2px;
  flex-shrink: 0;
}
.testimonial-card .client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.testimonial-card .client-photo .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--navy);
  border-radius: 50%;
}
.testimonial-card .client-info h4 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-card .client-info span {
  font-size: 0.8rem;
  color: var(--gray);
}
.testimonial-card .client-info span i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-right: 3px;
}
/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(circle at center, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.4;
}
.cta-section .cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaPulse 4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}
.cta-content h2 span { color: var(--gold); position: relative; }
.cta-content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
  font-size: 1.15rem;
  line-height: 1.7;
}
.cta-content .btn {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
/* ===== PRICING TABLE ===== */
.pricing-table-wrapper { overflow-x: auto; margin-top: 40px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.pricing-table th {
  background: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
}
.pricing-table th:first-child { background: transparent; color: var(--gray); font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.pricing-table td { color: var(--text); font-size: 0.95rem; }
.pricing-table tr:nth-child(even) td { background: rgba(10,35,66,0.02); }
.pricing-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.pricing-table .check { color: var(--gold); font-weight: 700; }
.pricing-table .cross { color: var(--light-gray); }
.pricing-table .price-cell { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--white);
}
.contact-info h3 span { color: var(--gold); }
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.contact-item h4 { font-size: 1rem; margin-bottom: 3px; color: var(--white); }
.contact-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateY(-3px);
}
.contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  margin-top: 30px;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}
/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.3;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--gold);
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.9; }
.footer-col ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer .social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: var(--transition);
  margin-right: 10px;
}
.footer .social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}
.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(212,175,55,0.08);
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}
.footer-bottom p { letter-spacing: 0.3px; }
/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  color: white;
}
/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.dark-mode-toggle:hover { border-color: var(--gold); color: var(--gold); }
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
/* ===== SUCCESS MESSAGE ===== */
.success-message {
  text-align: center;
  padding: 60px 20px;
}
.success-message .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}
.success-message h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; color: var(--navy); }
.success-message p { color: var(--gray); }
/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  cursor: default;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox video { width: 100%; background: #000; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition);
  line-height: 1;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  transition: var(--transition);
  opacity: 0.6;
  z-index: 10000;
  user-select: none;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; color: var(--gold); }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.9rem;
  background: rgba(10,35,66,0.8);
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 10000;
  letter-spacing: 1px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-content { grid-template-columns: 1fr; gap: 50px; }
  .about-text { padding-right: 0; }
  .about-image-card { height: 360px; }
  .about-experience-badge { right: 10px; bottom: 20px; padding: 14px 18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-steps { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .booking-step { min-width: 140px; }
  .event-type-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-section { padding: 80px 20px; }
  .cta-content h2 { font-size: 2rem; }
  .hero-stats-bar { gap: 12px; }
  .hero-stats-bar .hs-item { font-size: 0.75rem; }
  .hero-stats-bar .hs-item strong { font-size: 0.9rem; }
}
@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--navy);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transition: var(--transition);
    border-left: 1px solid rgba(212,175,55,0.15);
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; margin-bottom: 28px; }
  .hero { min-height: 100vh; height: auto; padding: 120px 0 60px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 16px; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-light { padding: 14px 28px; font-size: 0.85rem; }
  .hero-stats-bar { margin-top: 35px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hero-stats-bar .hs-item { font-size: 0.7rem; }
  .hero-stats-bar .hs-item strong { font-size: 0.85rem; }
  .hero-glow { width: 300px; height: 300px; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 35px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.95rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 25px 18px; }
  .service-card .icon { width: 56px; height: 56px; font-size: 1.4rem; border-radius: 14px; margin-bottom: 16px; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.82rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .stat-item .number { font-size: 1.8rem; }
  .about-image-card { height: 280px; }
  .about-experience-badge { right: 10px; bottom: 14px; padding: 10px 14px; }
  .about-experience-badge strong { font-size: 1.5rem; }
  .about-experience-badge span { font-size: 0.65rem; }
  .about-text h2 { font-size: 2rem; }
  .af-item { padding: 12px 16px; }
  .af-icon { width: 40px; height: 40px; font-size: 1rem; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .package-card { padding: 30px 20px 25px; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .package-card .pkg-name { font-size: 1.2rem; }
  .package-card .pkg-price { font-size: 2rem; }
  .booking-steps { gap: 8px; }
  .booking-step { min-width: auto; padding: 10px 16px; font-size: 0.8rem; }
  .booking-step .step-num { width: 28px; height: 28px; font-size: 0.75rem; }
  .event-type-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .event-type-card { padding: 20px 12px; }
  .event-type-card .icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .event-type-card h4 { font-size: 0.9rem; }
  .booking-form { padding: 25px 18px; }
  .cta-section { padding: 60px 20px; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-content p { font-size: 0.95rem; }
  .testimonial-card { padding: 25px 20px 22px; }
  .cta-section { padding: 60px 20px; }
  .footer-grid { gap: 30px; }
  .about-features { margin-top: 24px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-light { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .event-type-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .event-type-card { padding: 16px 10px; }
  .event-type-card .icon { width: 40px; height: 40px; font-size: 1rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content p { font-size: 0.88rem; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
  .section { padding: 40px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .about-image-card { height: 220px; }
  .about-experience-badge { display: none; }
  .testimonial-card { padding: 20px 15px 18px; }
  .testimonial-card .review-text { font-size: 0.85rem; }
  .service-card { padding: 20px 14px; }
  .service-card .icon { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 12px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.78rem; }
  .cta-content h2 { font-size: 1.4rem; }
  .cta-content p { font-size: 0.85rem; }
  .hero-scroll { display: none; }
  .booking-step { font-size: 0.7rem; padding: 8px 12px; }
  .booking-step .step-num { width: 22px; height: 22px; font-size: 0.65rem; }
}
