/*
Theme Name: ABP OneStop Weddings
Theme URI: https://www.abponestopweddings.com
Author: ABP Weddings
Author URI: https://www.abponestopweddings.com
Description: A luxury wedding planner theme with elegant gold, maroon and cream tones. Easily customizable — just update images and text.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abp-weddings
Tags: wedding, elegant, luxury, one-page, responsive
*/

/* ============================================================
   CSS VARIABLES — Change colors/fonts here globally
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9A6F28;
  --maroon:      #7B1E37;
  --maroon-dark: #550F22;
  --cream:       #FAF6EF;
  --cream-dark:  #F0E8D8;
  --text-dark:   #2C1810;
  --text-mid:    #5C3D2E;
  --text-light:  #8B6355;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Great Vibes', cursive;

  --shadow-soft: 0 8px 40px rgba(122, 30, 55, 0.12);
  --shadow-card: 0 4px 24px rgba(44, 24, 16, 0.10);
  --radius:      4px;
  --transition:  all 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: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; color: var(--maroon-dark); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--text-mid); margin-bottom: 1rem; }
.lead { font-size: 1.15rem; line-height: 1.9; color: var(--text-mid); }
.script { font-family: var(--font-accent); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--gold); display: block; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1.2rem; }
.divider {
  display: flex; align-items: center; gap: 16px; margin: 20px auto 40px;
  max-width: 300px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold-light); }
.divider-diamond { width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,30,55,0.3);
}
.btn-primary:hover { background: var(--maroon-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(122,30,55,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   TOPBAR (Announcement Bar)
   ============================================================ */
.topbar {
  background: var(--maroon-dark);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,239,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.site-logo img { height: 60px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; }
.site-logo-text .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.site-logo-text .logo-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold);
}
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--maroon); background: rgba(201,168,76,0.1); }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--maroon); transition: var(--transition); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* !! REPLACE THIS with your hero background image !! */
  background: linear-gradient(135deg, var(--maroon-dark) 0%, #3D0B1A 60%, #1A0508 100%);
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,5,10,0.75) 0%, rgba(20,5,10,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-content .script { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content h1 { color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,0.4); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  right: 8%;
  bottom: 15%;
  z-index: 3;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
  animation: rotateBadge 20s linear infinite;
}
.hero-badge-inner { font-family: var(--font-display); font-weight: 700; color: var(--maroon-dark); font-size: 1.8rem; line-height: 1; }
.hero-badge-sub { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--maroon-dark); text-transform: uppercase; font-weight: 700; }
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.6));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--maroon);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  /* !! REPLACE: your main about image !! */
  background: linear-gradient(135deg, var(--gold-light), var(--maroon));
  min-height: 400px;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
  /* !! REPLACE: your accent image !! */
  background: linear-gradient(135deg, var(--maroon-dark), var(--gold-dark));
}
.about-exp-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--maroon);
  color: var(--white);
  padding: 20px;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}
.about-exp-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; }
.about-exp-badge .text { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-mid); }
.about-list li::before { content: '✦'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--cream-dark); }
.services-header { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  /* !! REPLACE: service image !! */
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--maroon) 100%);
  min-height: 200px;
  transition: var(--transition);
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-body { padding: 28px; }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-body p { font-size: 0.9rem; margin-bottom: 16px; }
.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link::after { content: '→'; transition: var(--transition); }
.service-link:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-header { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  /* !! REPLACE: gallery images !! */
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--maroon) 100%);
}
.gallery-item:nth-child(2) .gallery-img { background: linear-gradient(135deg, var(--maroon) 0%, var(--gold) 100%); }
.gallery-item:nth-child(3) .gallery-img { background: linear-gradient(135deg, var(--gold) 0%, var(--maroon-dark) 100%); }
.gallery-item:nth-child(4) .gallery-img { background: linear-gradient(135deg, var(--cream-dark) 0%, var(--maroon) 100%); }
.gallery-item:nth-child(5) .gallery-img { background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--gold-light) 100%); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122,30,55,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-overlay-icon { color: var(--white); font-size: 2rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .script { color: var(--gold-light); }
.why-text h2 { color: var(--white); }
.why-text p { color: rgba(255,255,255,0.8); }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-feature-text h4 { color: var(--gold-light); margin-bottom: 4px; }
.why-feature-text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.why-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  /* !! REPLACE: why us image !! */
  background: linear-gradient(160deg, rgba(201,168,76,0.3) 0%, rgba(20,5,10,0.8) 100%);
  min-height: 400px;
}
.why-img-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  pointer-events: none;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section { background: var(--cream-dark); }
.packages-header { text-align: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.package-card:hover { transform: translateY(-6px); border-color: var(--gold-light); }
.package-card.featured {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
}
.package-card.featured h3 { color: var(--white); }
.package-card.featured p { color: rgba(255,255,255,0.75); }
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.package-icon { font-size: 2.5rem; margin-bottom: 16px; }
.package-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--maroon); margin: 12px 0; }
.package-card.featured .package-price { color: var(--gold); }
.package-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.package-card.featured .package-price span { color: rgba(255,255,255,0.6); }
.package-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.package-features li { font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.package-card.featured .package-features li { color: rgba(255,255,255,0.8); }
.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-header { text-align: center; }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--text-mid); position: relative; z-index: 1; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  /* !! REPLACE: couple photo !! */
  background: linear-gradient(135deg, var(--gold-light), var(--maroon));
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-date { font-size: 0.8rem; color: var(--text-light); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-section { background: var(--cream-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info .script { font-size: 2.5rem; }
.contact-details { margin: 30px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 2px; }
.contact-item-text span { color: var(--text-mid); font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 48px 40px; box-shadow: var(--shadow-card); }
.contact-form h3 { text-align: center; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon); background: var(--white); box-shadow: 0 0 0 3px rgba(122,30,55,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--maroon-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-main { color: var(--gold-light) !important; font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--gold) !important; }
.footer-desc { font-size: 0.9rem; margin: 16px 0 24px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--maroon-dark); border-color: var(--gold); }
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  font-size: 1.2rem;
  border: none;
  box-shadow: 0 4px 20px rgba(122,30,55,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--white);
}
.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-inner .main-nav, .nav-inner .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-badge { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent, .about-exp-badge { display: none; }
  .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px !important; }
  .contact-form { padding: 32px 24px; }
}

/* ============================================================
   MOBILE NAV OPEN STATE
   ============================================================ */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 20px 24px 30px;
  border-top: 1px solid var(--gold-light);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-light);
  letter-spacing: 0.05em;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
