/* =========================================
   ALORA BALLOONS — GLOBAL STYLESHEET
   Palette: Gold, Blush Pink, White
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7A2E;
  --pink: #F2C4CE;
  --pink-mid: #E8A0B0;
  --pink-deep: #C47A8A;
  --white: #FDFAF6;
  --off-white: #F8F2EC;
  --warm-grey: #9E9089;
  --dark: #2A1F1A;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--dark);
  margin-top: 0.4rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--warm-grey);
  font-weight: 300;
  max-width: 520px;
  margin-top: 1rem;
}

/* ---- Divider ---- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* =============================
   NAVIGATION
   ============================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(201,168,76,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}

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

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

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(12px);
  padding: 2rem 5%;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  border-top: 1px solid var(--gold-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--off-white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* =============================
   FLOATING WHATSAPP
   ============================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* =============================
   HERO (HOME)
   ============================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 40%, #F5E6E8 100%);
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: var(--pink-mid); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: var(--gold-light); bottom: -50px; left: 10%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: var(--pink); top: 40%; left: -60px; animation-delay: -5s; }

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: fadeSlideUp 0.9s ease both; }
.hero-text .section-label { font-size: 0.65rem; }

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-top: 1rem;
  color: var(--dark);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtext {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--warm-grey);
  max-width: 420px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 4px;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 12px;
  animation: fadeSlideUp 0.9s 0.2s ease both;
  opacity: 0;
}

.hero-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.hero-img-wrap:first-child {
  grid-row: span 2;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero-img-wrap:hover img { transform: scale(1.05); }

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

/* =============================
   SECTION WRAPPER
   ============================= */
.section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 5%;
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* =============================
   SERVICES STRIP
   ============================= */
.services-strip {
  background: var(--dark);
  padding: 70px 5%;
}

.services-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.82rem;
  color: rgba(253,250,246,0.5);
  line-height: 1.7;
}

/* =============================
   GALLERY PREVIEW
   ============================= */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
}
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,31,26,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials-bg {
  background: var(--off-white);
  padding: 100px 5%;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 30px;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* =============================
   CTA BANNER
   ============================= */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--dark);
  padding: 70px 5% 30px;
  color: rgba(253,250,246,0.6);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-brand .nav-logo-text { color: var(--white); font-size: 1.4rem; }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 14px; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* =============================
   GALLERY PAGE
   ============================= */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 5% 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.page-hero .section-label { display: block; margin-bottom: 0.5rem; }

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 60px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-full-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-full-item:hover img { transform: scale(1.05); }

.gallery-full-item .gallery-item-overlay {
  opacity: 0;
  transition: opacity var(--transition);
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,31,26,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-full-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,14,12,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none; border: none;
  font-family: 'Jost', sans-serif;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(201,168,76,0.4); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =============================
   PACKAGES PAGE
   ============================= */
.packages-intro {
  padding: calc(var(--nav-height) + 80px) 5% 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.packages-section {
  padding: 60px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.packages-tab-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  margin-top: 3rem;
}

.packages-tab-subtitle {
  font-size: 0.85rem;
  color: var(--warm-grey);
  margin-bottom: 2.5rem;
}

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

.package-card {
  border: 1px solid var(--gold-light);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: var(--white);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.package-card.featured {
  background: var(--dark);
  border-color: var(--gold);
}

.package-card.featured .package-name,
.package-card.featured .package-price,
.package-card.featured .package-includes li,
.package-card.featured .package-divider-label { color: var(--white); }

.package-card.featured .package-price { color: var(--gold-light); }
.package-card.featured .package-includes li::before { color: var(--gold); }
.package-card.featured .package-tagline { color: rgba(253,250,246,0.55); }

.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dark);
}

.package-tagline {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-top: 4px;
  margin-bottom: 1.5rem;
}

.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.package-price span {
  font-size: 1rem;
  font-weight: 300;
  vertical-align: super;
}

.package-hr {
  border: none;
  border-top: 1px solid var(--gold-light);
  margin: 1.5rem 0;
}

.package-card.featured .package-hr { border-color: rgba(201,168,76,0.3); }

.package-divider-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.package-includes li {
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.package-addons {
  font-size: 0.78rem;
  color: var(--warm-grey);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.package-card .btn { width: 100%; justify-content: center; margin-top: auto; }

.packages-note {
  margin-top: 3rem;
  padding: 24px 28px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* =============================
   BOOKING / CONTACT PAGE
   ============================= */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 5% 100px;
  align-items: start;
}

.booking-info { position: sticky; top: calc(var(--nav-height) + 30px); }

.booking-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-top: 0.5rem;
}

.booking-info p {
  font-size: 0.95rem;
  color: var(--warm-grey);
  margin-top: 1.2rem;
  max-width: 400px;
  line-height: 1.8;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--off-white);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-text label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-item-text a, .contact-item-text span {
  font-size: 0.9rem;
  color: var(--dark);
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Form */
.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--gold-light);
  padding: 48px 40px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gold-light);
  background: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--warm-grey); font-size: 0.9rem; }

.whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  width: 100%;
}
.whatsapp-direct-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* =============================
   ABOUT PAGE
   ============================= */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, #F5E6E8 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '"';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30vw;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
}

.about-hero-inner {
  max-width: 700px;
}

.about-hero-inner h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
}

.about-hero-inner p {
  font-size: 1.1rem;
  color: var(--warm-grey);
  margin-top: 1.5rem;
  line-height: 1.9;
}

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

.about-story-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
}

.about-story-img img:first-child {
  margin-top: 40px;
}

.about-story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-story-text p {
  font-size: 0.95rem;
  color: var(--warm-grey);
  margin-top: 1.2rem;
  line-height: 1.9;
}

.about-values {
  background: var(--off-white);
  padding: 100px 5%;
}

.about-values-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 36px 28px;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}
.value-card p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* =============================
   SCROLL ANIMATIONS
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-grid { display: none; }
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 50px; }
  .booking-info { position: static; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-strip-inner { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 32px 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-story-img { grid-template-columns: 1fr; }
  .about-story-img img:first-child { margin-top: 0; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .packages-grid .package-card.featured { order: -1; }
}

@media (max-width: 480px) {
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
}
