/* ============================================
   ROOT & VARIABLES
   ============================================ */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F1ED;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F4F1ED;
  --gold: #bbaa93;
  --gold-light: #cbbfb0;
  --gold-dark: #a69880;
  --silver: #94A3B8;
  --green: #16a34a;
  --white: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #DDD5C9;
  --border-hover: rgba(187, 170, 147, 0.5);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-gold: 0 8px 32px rgba(187, 170, 147, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(187, 170, 147, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 580px; margin: 0 auto 56px; line-height: 1.8; }
.divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.divider-left { margin-left: 0; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  display: flex; align-items: center; padding: 0 28px;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}
/* Transparent nav — white text over dark hero */
.nav .nav-logo-main { color: #fff; transition: color 0.35s ease; }
.nav .nav-logo-sub  { color: rgba(255,255,255,0.75); transition: color 0.35s ease; }
.nav .nav-link      { color: rgba(255,255,255,0.85); transition: color 0.35s ease; }
.nav .nav-logo-img  { filter: brightness(0) invert(1); transition: filter 0.35s ease; }
.nav .nav-link:hover,
.nav .nav-link.active { color: #fff; }
.nav .nav-toggle span { background: #fff; }

/* Scrolled OR inner-page solid nav */
.nav.scrolled,
.nav.nav-solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.nav.scrolled .nav-logo-main,
.nav.nav-solid .nav-logo-main { color: var(--text-primary); }
.nav.scrolled .nav-logo-sub,
.nav.nav-solid .nav-logo-sub  { color: var(--gold); }
.nav.scrolled .nav-logo-img,
.nav.nav-solid .nav-logo-img  { filter: none; }
.nav.scrolled .nav-link,
.nav.nav-solid .nav-link       { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active,
.nav.nav-solid .nav-link:hover,
.nav.nav-solid .nav-link.active { color: var(--text-primary); }
.nav.scrolled .nav-toggle span,
.nav.nav-solid .nav-toggle span { background: var(--text-primary); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-inner .nav-links { justify-self: center; }
.nav-inner .nav-cta-btn { justify-self: end; }
.nav-inner .nav-toggle { justify-self: end; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.contact-page-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.hero-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 28px;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff; font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(187, 170, 147, 0.35);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.5px; color: var(--text-primary); }
.nav-logo-sub { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  letter-spacing: 0.3px; position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important; padding: 10px 24px;
  border-radius: 8px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(187, 170, 147, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(187, 170, 147, 0.45); color: #fff !important; }
.nav-cta::after { display: none !important; }
.nav-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; padding: 10px 24px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.5px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(187, 170, 147, 0.3);
  transition: var(--transition); white-space: nowrap;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(187, 170, 147, 0.45); }
.nav .nav-cta-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.3px;
  cursor: pointer; transition: var(--transition); border: none; outline: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(187, 170, 147, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(187, 170, 147, 0.5); color: #fff; }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #e8e8eb; transform: translateY(-3px); }
.btn-green { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,0.3); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(34,197,94,0.45); color: #fff; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); transform: translateY(-5px); }
.card-icon {
  width: 54px; height: 54px;
  background: rgba(187, 170, 147, 0.1); border: 1px solid rgba(187, 170, 147, 0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.card-title { font-size: 1.15rem; margin-bottom: 10px; }
.card-text { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.75; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #000;
  z-index: -1;
}
.hero-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: -20%;
  width: 100%; height: 120%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content { max-width: 820px; padding-top: 80px; }
/* Hero text is always white — it sits over the dark image overlay */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px; color: #fff; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 24px; color: #fff;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.82);
  max-width: 540px; margin-bottom: 44px; line-height: 1.85;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.hero-stats {
  display: flex; gap: 52px; margin-top: 80px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat-num { font-size: 2.6rem; font-weight: 900; color: #fff; font-family: 'Montserrat', sans-serif; line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; letter-spacing: 0.5px; }
.scroll-indicator {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; animation: float 2.5s ease-in-out infinite;
}
.scroll-indicator::after { content: ''; width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-secondary); font-weight: 500;
}
.trust-item-icon { color: var(--gold); font-size: 1.2rem; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(187, 170, 147, 0.13); }
.service-card-img-wrap { overflow: hidden; position: relative; height: 210px; }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px; background: rgba(0,0,0,0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 50px;
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
}
.service-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-card-title { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.service-card-desc { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; flex: 1; }
.service-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border); margin-top: auto;
}
.service-price-wrap { display: flex; flex-direction: column; }
.service-price-from { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.service-price { font-size: 1.55rem; font-weight: 800; color: var(--gold); font-family: 'Montserrat', sans-serif; line-height: 1; }

/* ============================================
   WHY US / FEATURE CARDS
   ============================================ */
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.why-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(187, 170, 147, 0.15), rgba(187, 170, 147, 0.05));
  border: 1px solid rgba(187, 170, 147, 0.3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.why-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card-body p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, rgba(187, 170, 147, 0.05) 0%, transparent 50%),
              var(--bg-secondary);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.stat-item {
  text-align: center; padding: 40px 20px;
  background: var(--bg-secondary); position: relative;
}
.stat-num { font-size: 3.2rem; font-weight: 900; color: var(--gold); font-family: 'Montserrat', sans-serif; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
  box-shadow: var(--shadow);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1rem;
  font-family: 'Montserrat', sans-serif; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-meta { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(187, 170, 147, 0.1) 0%, transparent 70%),
    var(--bg-secondary);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 0; text-align: center;
}
.cta-section .section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  background:
    linear-gradient(180deg, rgba(187,170,147,0.04) 0%, transparent 100%),
    radial-gradient(ellipse at top center, rgba(187,170,147,0.07) 0%, transparent 65%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-eyebrow {
  display: inline-block; padding: 6px 18px;
  background: rgba(187,170,147,0.1); border: 1px solid var(--border);
  border-radius: 50px; color: var(--gold); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; margin-bottom: 18px; }
.page-hero-sub { color: var(--text-secondary); font-size: 1.08rem; max-width: 580px; margin: 0 auto; line-height: 1.85; }

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-toggle {
  display: inline-flex; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px; margin-bottom: 56px;
}
.pricing-toggle-btn {
  padding: 10px 28px; border-radius: 50px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  color: var(--text-muted); border: none; background: transparent;
}
.pricing-toggle-btn.active { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(187, 170, 147, 0.3); }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pricing-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-gold); border-color: var(--border-hover); }
.pricing-card:hover::before, .pricing-card.featured::before { opacity: 1; }
.pricing-card.featured { border-color: rgba(187,170,147,0.5); box-shadow: 0 0 50px rgba(187,170,147,0.08); }
.pricing-popular-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 50px;
}
.pricing-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pricing-name { font-size: 1.7rem; font-weight: 800; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.pricing-tagline { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-price { font-size: 3.2rem; font-weight: 900; color: var(--white); font-family: 'Montserrat', sans-serif; line-height: 1; }
.pricing-price-from { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; margin-bottom: 4px; }
.pricing-price sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); vertical-align: middle; }
.pricing-features { margin: 28px 0 36px; }
.pricing-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-feature:last-child { border-bottom: none; }
.feat-check { display: none; }

/* Add-ons table */
.addons-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.addons-table th {
  padding: 14px 20px; text-align: left; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); background: var(--bg-card); border-bottom: 1px solid var(--border);
}
.addons-table th:first-child { border-radius: 10px 0 0 0; }
.addons-table th:last-child { border-radius: 0 10px 0 0; text-align: right; }
.addons-table td {
  padding: 16px 20px; font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.addons-table tr:last-child td { border-bottom: none; }
.addons-table tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.addons-table tr:last-child td:last-child { border-radius: 0 0 10px 0; }
.addons-table tbody tr { background: var(--bg-card); transition: var(--transition); }
.addons-table tbody tr:hover { background: var(--bg-card-hover); }
.addons-table td:last-child { text-align: right; font-weight: 700; color: var(--gold); font-family: 'Montserrat', sans-serif; }
.addon-name { font-weight: 600; }
.addon-desc { color: var(--text-muted); font-size: 0.82rem; margin-top: 3px; }

/* ============================================
   PET OWNERS PAGE
   ============================================ */
.pet-page-hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.65) 100%),
    url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1920&h=600&fit=crop&q=80') center/cover no-repeat;
}
.pet-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--green);
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.35); }
.product-card-header {
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.03));
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  border-bottom: 1px solid rgba(34,197,94,0.15);
}
.product-icon {
  width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.product-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.product-brand { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.product-card-body { padding: 24px; }
.product-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; margin-bottom: 18px; }
.product-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 600;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: var(--green);
}
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition); margin-bottom: 16px;
}
.process-step:hover { border-color: rgba(34,197,94,0.3); transform: translateX(6px); }
.process-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--green); font-family: 'Montserrat', sans-serif;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* Pet FAQ */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; transition: var(--transition);
}
.faq-item.open { border-color: rgba(34,197,94,0.35); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 0.95rem;
}
.faq-icon { font-size: 1.2rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 20px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; display: flex;
  gap: 18px; align-items: flex-start; transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: rgba(187,170,147,0.1); border: 1px solid rgba(187,170,147,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold);
}
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-sub { color: var(--text-muted); font-size: 0.82rem; }
.form-container {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 18px;
  background: #F7F4F1; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.93rem; outline: none; transition: var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(187,170,147,0.1);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #fff; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 130px; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px;
}
.service-check {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
  transition: var(--transition); font-size: 0.88rem; user-select: none;
}
.service-check:hover { border-color: rgba(187,170,147,0.4); background: rgba(187,170,147,0.04); }
.service-check.selected { border-color: rgba(187,170,147,0.55); background: rgba(187,170,147,0.06); color: var(--gold); }
.service-check-input {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; border-radius: 4px;
  border: 2px solid rgba(187,170,147,0.4); cursor: pointer;
  position: relative; flex-shrink: 0; transition: var(--transition); background: transparent;
}
.service-check-input:checked { background: var(--gold); border-color: var(--gold); }
.service-check-input:checked::after {
  content: '✓'; position: absolute; color: #fff;
  font-size: 11px; font-weight: 800; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.map-placeholder {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); height: 320px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; color: var(--text-muted);
  position: relative;
}
.map-placeholder-icon { font-size: 3rem; color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hours-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem;
}
.hours-day { color: var(--text-secondary); }
.hours-time { font-weight: 600; color: var(--gold); }
.submit-btn {
  position: relative; overflow: hidden;
}
.submit-btn .btn-loading { display: none; }
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loading { display: inline-flex; align-items: center; gap: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
.form-success {
  display: none; text-align: center; padding: 48px;
  flex-direction: column; align-items: center; gap: 16px;
}
.form-success.visible { display: flex; }
.success-icon { font-size: 4rem; animation: bounceIn 0.6s ease; }
@keyframes bounceIn { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F172A; border-top: none; padding: 80px 0 36px;
}
.footer .nav-logo-main { color: #fff; }
.footer .nav-logo-sub  { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
.footer-brand-text { color: #94A3B8; font-size: 0.9rem; line-height: 1.8; margin: 20px 0 28px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--transition); color: #94A3B8;
}
.footer-social:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }
.footer-heading { font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-link { color: #94A3B8; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.footer-link:hover { color: #fff; transform: translateX(4px); display: flex; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: #94A3B8; font-size: 0.88rem; }
.footer-contact-icon { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  color: #64748B; font-size: 0.83rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { color: #64748B; }
.footer-bottom-link:hover { color: #fff; }

/* ============================================
   TOAST
   ============================================ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  padding: 14px 22px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: slideInToast 0.4s ease; max-width: 340px; pointer-events: all;
}
.toast.success { border-color: rgba(34,197,94,0.45); }
.toast.error { border-color: rgba(239,68,68,0.45); }
@keyframes slideInToast { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeOutToast { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(50px); } }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

/* ============================================
   MISC / UTILITY
   ============================================ */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-48 { margin-bottom: 48px; }
.separator { height: 1px; background: var(--border); margin: 40px 0; }
.highlight-bar {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; background: rgba(187,170,147,0.08); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.88rem; color: var(--text-secondary);
}
.highlight-bar strong { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-height); right: 0; left: auto;
    width: 220px;
    height: auto;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
    padding: 16px 24px 24px;
    border-radius: 0 0 0 16px;
    box-shadow: -4px 4px 24px rgba(0,0,0,0.12);
    animation: fadeIn 0.2s ease;
    z-index: 999;
  }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links.open .nav-link { padding: 14px 0; font-size: 1rem; border-bottom: none; width: 100%; color: var(--text-primary); }
  .nav-links.open .nav-link::after { display: none; }
  .nav-links.open .nav-cta { margin-top: 12px; text-align: center; padding: 16px; display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .trust-bar-inner { gap: 28px; }
  .hours-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .form-container { padding: 28px 20px; }
  .page-hero { padding: 130px 0 64px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
