/* === VARIABLES === */
:root {
  --gold: #C6A94E;
  --gold-light: #D4BC6A;
  --gold-dark: #A88B2E;
  --gold-pale: #F5EDD4;
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-grey: #3A3A3A;
  --mid-grey: #6B6B6B;
  --light-grey: #9A9A9A;
  --silver: #C8C8C8;
  --off-white: #F2F0EB;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --success: #4A8C5C;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(198,169,78,0.25);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --nav-height: 72px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === NAVIGATION === */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #D4980E;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--dark-grey);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-dark); background: rgba(198,169,78,0.08); }
.nav-link.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--gold-light) !important; box-shadow: var(--shadow-gold); }

.nav-admin {
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--dark-grey) !important;
  font-size: 12px;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(0,0,0,0.1);
}
.nav-admin:hover { color: var(--gold-dark) !important; background: rgba(198,169,78,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark-grey);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(198,169,78,0.4); }
.btn-outline:hover { border-color: var(--gold); background: rgba(198,169,78,0.08); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(198,169,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(198,169,78,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(45,45,45,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(198,169,78,0.5) 40px, rgba(198,169,78,0.5) 41px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: calc(var(--nav-height) + 60px) 40px 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,169,78,0.3);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: slideUp 0.8s ease 0.2s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 400; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: slideUp 0.8s ease 0.4s both;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  font-size: 18px; color: var(--light-grey);
  max-width: 560px; margin: 0 auto 20px;
  line-height: 1.7; font-weight: 300;
  animation: slideUp 0.8s ease 0.6s both;
}
.hero-dual {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 32px;
  animation: slideUp 0.8s ease 0.8s both;
}
.hero-dual-box {
  text-align: left; max-width: 260px; flex: 1;
  padding: 24px;
  border: 1px solid rgba(198,169,78,0.15);
  border-radius: var(--radius-lg);
  background: rgba(198,169,78,0.03);
}
.hero-dual-box h3 {
  font-family: var(--font-display);
  font-size: 18px; color: var(--gold);
  margin-bottom: 8px; font-weight: 500;
}
.hero-dual-box p { font-size: 13px; color: var(--light-grey); line-height: 1.6; }
.hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 40px;
  animation: slideUp 0.8s ease 1s both;
}

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

/* === SECTIONS === */
.section { padding: 100px 40px; }
.section-dark { background: var(--black); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 400; line-height: 1.2;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.section-dark .section-title,
.section-charcoal .section-title { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--mid-grey); line-height: 1.6; font-weight: 300; }
.section-dark .section-subtitle,
.section-charcoal .section-subtitle { color: var(--light-grey); }

/* Page hero for inner pages */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 64px) 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(198,169,78,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: var(--light-grey); max-width: 560px; margin: 0 auto; }

/* Page padding for sections below fixed nav */
.page-padded { padding-top: var(--nav-height); }

/* === HOW IT WORKS (vertical card layout) === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.step-card {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  border: 1px solid rgba(198,169,78,0.1);
  border-radius: var(--radius-lg);
  background: rgba(198,169,78,0.03);
}
.step-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300;
  color: rgba(198,169,78,0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.step-card p { font-size: 13px; color: var(--light-grey); line-height: 1.6; }

/* === PACKAGES (horizontal flex scroll) === */
.packages-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.packages-grid::-webkit-scrollbar { height: 6px; }
.packages-grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 3px; }
.packages-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.package-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 240px;
  flex: 1 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(198,169,78,0.04) 0%, var(--white) 40%);
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 16px; right: -32px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.package-card.corporate {
  border-color: rgba(198,169,78,0.3);
  background: linear-gradient(135deg, rgba(198,169,78,0.03), var(--white));
}
.package-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.package-price { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 14px; }
.package-desc { font-size: 12px; color: var(--mid-grey); margin-bottom: 16px; line-height: 1.6; }
.package-features { flex: 1; margin-bottom: 20px; }
.package-features li {
  font-size: 12px; color: var(--charcoal);
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
  content: '✦';
  position: absolute; left: 0; top: 6px;
  color: var(--gold); font-size: 9px;
}
.package-card .btn { width: 100%; justify-content: center; font-size: 13px; padding: 10px 20px; }

/* === ADD-ONS === */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.addon-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.addon-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.addon-icon { font-size: 28px; margin-bottom: 10px; }
.addon-card h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.addon-price { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 6px; }
.addon-desc { font-size: 12px; color: var(--mid-grey); line-height: 1.5; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: var(--dark-grey); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; color: var(--gold-dark); font-weight: 600;
  flex-shrink: 0;
}
.testimonial-info h4 { font-size: 14px; font-weight: 600; color: var(--black); }
.testimonial-info p { font-size: 12px; color: var(--mid-grey); }

/* === CORPORATE === */
.corp-content-wrap {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.corp-content-wrap .section-label { margin-bottom: 16px; }
.corp-content-wrap h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.corp-content-wrap h2 em { color: var(--gold); font-style: italic; }
.corp-content-wrap p {
  font-size: 15px; color: var(--light-grey);
  line-height: 1.7; margin-bottom: 16px;
}
.corp-content-wrap .btn { margin-top: 8px; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.about-img-wrap {
  aspect-ratio: 1/1;
  width: 300px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content h2 em { color: var(--gold); font-style: italic; }
.about-content .section-label { margin-bottom: 12px; }
.about-content p { font-size: 15px; color: var(--mid-grey); line-height: 1.7; margin-bottom: 16px; }
.about-content .btn { margin-top: 8px; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  margin-bottom: 28px;
}
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(198,169,78,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-detail h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.contact-detail p { font-size: 13px; color: var(--light-grey); line-height: 1.5; }
.contact-detail a { color: var(--light-grey); transition: var(--transition); }
.contact-detail a:hover { color: var(--gold); }
.service-area-box {
  margin-top: 24px; padding: 20px;
  background: rgba(198,169,78,0.08);
  border-radius: var(--radius-lg);
}
.service-area-box h4 { font-size: 14px; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.service-area-box p { font-size: 13px; color: var(--light-grey); line-height: 1.6; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.contact-form-card .form-note {
  font-size: 13px; color: var(--mid-grey);
  margin-bottom: 24px;
}
.contact-form-card .form-note strong { color: var(--gold-dark); }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 12px;
  font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-grey); margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,169,78,0.1);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.honeypot { display: none !important; visibility: hidden; }

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 60px 40px 30px;
  color: var(--light-grey);
  border-top: 1px solid rgba(198,169,78,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px; color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand-desc { font-size: 13px; color: var(--mid-grey); line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold);
  margin-bottom: 16px;
}
.footer ul li {
  font-size: 13px; color: var(--light-grey);
  padding: 4px 0; transition: var(--transition);
}
.footer ul li a { color: inherit; transition: var(--transition); }
.footer ul li a:hover,
.footer ul li:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  font-size: 12px; color: var(--mid-grey);
  padding-top: 40px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}

/* === SUCCESS PAGE === */
.success-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 40px 20px;
  padding-top: calc(var(--nav-height) + 40px);
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(74,140,92,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 24px;
}
.success-card h1 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--black); margin-bottom: 12px;
}
.success-card p { font-size: 15px; color: var(--mid-grey); line-height: 1.6; margin-bottom: 32px; }

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === TABLET === */
@media (max-width: 1024px) {
  .main-nav { padding: 0 24px; }
  .nav-link { font-size: 11px; padding: 6px 10px; }
  .hero h1 { font-size: 44px; }
  .hero-dual { flex-direction: column; gap: 16px; align-items: center; }
  .hero-dual-box { max-width: 100%; width: 100%; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .about-img-wrap { width: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 70px 24px; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 24px 64px; }
}

/* === MOBILE === */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .main-nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(255,255,255,0.99);
    flex-direction: column;
    padding: 12px 20px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    align-items: stretch;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 14px; padding: 12px 16px; text-align: center; }
  .nav-cta { margin-left: 0; margin-top: 8px; border-radius: 50px; }
  .nav-admin { margin-left: 0; border-left: none; padding-left: 14px; }

  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-content { padding: calc(var(--nav-height) + 40px) 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }

  .packages-grid { flex-direction: column; overflow-x: visible; }
  .package-card { min-width: unset; flex: unset; }

  .addons-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; justify-items: center; gap: 28px; }
  .about-img-wrap { width: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .section-title { font-size: 32px; }
  .section { padding: 60px 20px; }
  .contact-info-card, .contact-form-card { padding: 28px 24px; }
  .page-hero { padding: calc(var(--nav-height) + 40px) 20px 56px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .addons-grid { grid-template-columns: 1fr; }
  .about-img-wrap { width: 180px; }
  .success-card { padding: 40px 24px; }
}
