/* ══ FIXED NAVBAR — CRITICAL ══ */
html { scroll-padding-top: 92px; }

nav#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

/* Ensure content starts below fixed nav */
.hero { margin-top: 0; }

/* Scroll offset for anchor links */
section[id], div[id] { scroll-margin-top: 92px; }

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  section[id], div[id] { scroll-margin-top: 76px; }
}
/* ═══════════════════════════════ */


:root {
  --orange: #E8621A;
  --navy: #1B2B5E;
  --orange-light: #FF7A30;
  --navy-light: #253670;
  --cream: #FAF7F2;
  --white: #ffffff;
  --gray: #6B7280;
  --dark: #111827;
  --shadow: 0 20px 60px rgba(27,43,94,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── FLOATING SIDE ICONS ── */
.side-contacts {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-contacts a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}

.side-contacts a::before {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  background: inherit;
  color: white;
  white-space: nowrap;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  letter-spacing: 0.5px;
}

.side-contacts a:hover::before { transform: translateX(0); }
.side-contacts a:hover { width: 56px; }

.side-contacts .sc-chat  { background: var(--navy); }
.side-contacts .sc-sms   { background: #10B981; }
.side-contacts .sc-wa    { background: #25D366; }
.side-contacts .sc-fb    { background: #1877F2; }
.side-contacts .sc-phone { background: var(--orange); }

/* ── BREADCRUMB NAV RESET (must come before NAVBAR rules) ── */
/* All <nav> elements inherit fixed-nav styles from the rule below.
   Breadcrumb navs inside page sections must be reset to normal flow. */
nav.breadcrumb {
  position: static !important;
  height: auto !important;
  background: transparent !important;
  z-index: auto !important;
  box-shadow: none !important;
  border-bottom: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  display: block !important;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 40px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(232,98,26,0.25);
  box-shadow: 0 2px 16px rgba(27,43,94,0.1);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 76px;
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 24px rgba(27,43,94,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(232,98,26,0.2));
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,43,94,0.75) 0%, rgba(232,98,26,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,26,0.2);
  border: 1px solid rgba(232,98,26,0.5);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: white;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232,98,26,0.4);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,98,26,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero card / contact form */
.hero-card {
  background: white;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: fadeLeft 0.8s 0.3s ease both;
}

.hero-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: #F9FAFB;
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group textarea { resize: none; height: 80px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(232,98,26,0.3);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.trust-item i {
  font-size: 22px;
  color: var(--orange);
}

.trust-item span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── SECTION COMMONS ── */
section { padding: 100px 40px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title span { color: var(--orange); }

.section-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 560px;
  font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--cream); }

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(232,98,26,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(232,98,26,0.1), rgba(27,43,94,0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--orange);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: white;
  transform: rotate(-6deg);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── ABOUT ── */
.about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '1990';
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: white;
  padding: 16px 20px;
  border-radius: 6px;
  text-align: center;
}

.about-image-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  display: block;
}

.about-image-badge .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .section-title { color: white; }
.about-content .section-desc  { color: rgba(255,255,255,0.65); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.about-feature i { color: var(--orange); font-size: 16px; }

/* ── PRICING ── */
.pricing { background: var(--cream); }

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-desc { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 40px 32px;
  border: 2px solid #E5E7EB;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(27,43,94,0.25);
}

.pricing-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-bottom-left-radius: 8px;
}

.pricing-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232,98,26,0.3);
}

.pricing-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(232,98,26,0.15), rgba(27,43,94,0.1));
  color: var(--orange);
}

.pricing-card.featured .pricing-icon {
  background: rgba(232,98,26,0.2);
}

.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-name { color: white; }

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }

.pricing-divider {
  height: 1px;
  background: #E5E7EB;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }

.pricing-features li i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.pricing-btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.pricing-btn-outline:hover {
  background: var(--navy);
  color: white;
}

.pricing-btn-filled {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 24px rgba(232,98,26,0.35);
}

.pricing-btn-filled:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

/* ── GALLERY / PROCESS ── */
.process { background: white; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
}

.process-step {
  padding: 40px 28px;
  position: relative;
  transition: all 0.3s;
}

.process-step:nth-child(odd) { background: var(--navy); color: white; }
.process-step:nth-child(even) { background: var(--orange); color: white; }

.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.process-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.9;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-title { color: white; }
.testimonials-header .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
}

.author-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}

.author-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding: 72px 40px;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: white;
  margin-bottom: 16px;
}

.cta-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-strip .btn-primary {
  background: white;
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-strip .btn-primary:hover {
  background: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: #0D1630;
  padding: 72px 40px 32px;
  color: rgba(255,255,255,0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 56px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--orange); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-item i { color: var(--orange); font-size: 15px; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
}

.chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(27,43,94,0.4);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}

.chat-toggle:hover { transform: scale(1.1); }

.chat-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #10B981;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.chat-box {
  position: absolute;
  bottom: 70px; left: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: slideUp 0.3s ease;
}

.chat-box.open { display: block; }

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

.chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.chat-header-info h4 { color: white; font-size: 14px; font-weight: 700; }
.chat-header-info span { color: rgba(255,255,255,0.6); font-size: 12px; }

.chat-body {
  padding: 20px;
  max-height: 200px;
  overflow-y: auto;
}

.chat-bubble {
  background: #F3F4F6;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 12px;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-option {
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}

.chat-option:hover { background: var(--navy); color: white; }

.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  outline: none;
}

.chat-input:focus { border-color: var(--orange); }

.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send:hover { background: var(--orange-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.6s; }
.stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.7s; }

/* Counter animation */
.counter { transition: all 0.3s; }



/* ──────────────────────────────────────
   COMPLETE MOBILE RESPONSIVE STYLES
   ────────────────────────────────────── */

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  /* NAV */
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.6px; }
  nav { padding: 0 24px; }
}

/* Tablet + small desktop: single column hero below 1200px */
@media (max-width: 1199px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 5% 60px;
    gap: 40px;
    max-width: 100%;
  }
  .hero-card { max-width: 560px; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  /* ── NAV MOBILE LAYOUT ── */

  /* Nav bar: logo LEFT, hamburger RIGHT */
  nav {
    padding: 0 18px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav.scrolled { height: 60px; }

  /* Logo — left aligned, properly sized */
  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }
  .nav-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    object-position: left center;
  }

  /* Hamburger — right side, larger tap target */
  .hamburger {
    display: flex;
    flex-shrink: 0;
    padding: 10px;
    margin-right: -10px;
    gap: 5px;
  }
  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  /* Mobile dropdown menu */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(27,43,94,0.18);
    z-index: 899;
    border-top: 3px solid var(--orange);
  }
  .nav-links.open { display: flex; }

  /* Menu items — bigger tap area, more padding */
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--navy);
    text-align: left;
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.15s, color 0.15s;
  }
  .nav-links a:hover {
    background: #FFF5F0;
    color: var(--orange);
  }
  .nav-links a::after { display: none; }

  /* CTA button in mobile menu — full width, big, orange */
  .nav-links a.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 20px 4px;
    padding: 14px 24px;
    width: calc(100% - 40px);
    border-radius: 6px;
    background: var(--orange);
    color: white !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    border-bottom: none;
  }
  .nav-links a.nav-cta:hover {
    background: var(--orange-light);
    color: white !important;
  }

  /* SIDE CONTACTS - hide on mobile, show bottom bar instead */
  .side-contacts { display: none; }

  /* MOBILE BOTTOM CONTACT BAR */
  .mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    border-top: 2px solid var(--orange);
  }
  .mobile-contact-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--navy);
    gap: 3px;
    transition: background 0.2s;
    border-right: 1px solid #F3F4F6;
  }
  .mobile-contact-bar a:last-child { border-right: none; }
  .mobile-contact-bar a i { font-size: 18px; color: var(--orange); }
  .mobile-contact-bar a.cb-wa i { color: #25D366; }
  .mobile-contact-bar a.cb-fb i { color: #1877F2; }
  .mobile-contact-bar a:active { background: #F3F4F6; }

  /* HERO */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 40px;
  }
  .hero-title { font-size: 58px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 36px; }
  .hero-stat-label { font-size: 11px; }
  .hero-card { margin: 0 4px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns a { justify-content: center; }

  /* TRUST STRIP */
  .trust-strip { flex-wrap: wrap; gap: 14px; padding: 16px 20px; justify-content: center; }
  .trust-item { font-size: 12px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; }
  .service-icon { width: 52px; height: 52px; font-size: 22px; margin-bottom: 14px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 13px; }

  /* ABOUT */
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-image { height: 280px; }
  .about-text { padding: 0 4px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* HOW IT WORKS */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card.featured { transform: none; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA STRIP */
  .cta-strip .container { flex-direction: column; text-align: center; gap: 20px; }
  .cta-strip a { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* SECTION PADDING */
  .container { padding: 0 18px; }
  section { padding: 60px 0; }
  .section-title { font-size: 36px; }

  /* Body padding for bottom bar */
  body { padding-bottom: 72px; }
  footer { padding-bottom: 20px; }

  /* Chat widget position on mobile */
  .chat-widget { bottom: 84px; left: 16px; }
  .chat-box { width: calc(100vw - 32px); max-width: 340px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 46px; }
  .hero-badge { font-size: 11px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .pricing-header h2, .testimonials-header h2, .services-header h2 { font-size: 32px; }
}

/* ──────────────────────────────────────
   SERVICE PAGE RESPONSIVE
   ────────────────────────────────────── */
@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .svc-hero-card { display: none; }
  .svc-hero-left { padding-bottom: 48px; }
  .svc-hero h1 { font-size: 50px; }
  .svc-hero-actions { flex-wrap: wrap; gap: 12px; }
  .svc-body { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .svc-sidebar { order: -1; }
  .sidebar-cta { position: static; }
  .svc-steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .svc-trust-inner { flex-wrap: wrap; gap: 16px; padding: 0 20px; }
  .svc-bottom-cta { padding: 56px 20px; }
  .svc-bottom-btns { flex-direction: column; align-items: center; }
  .svc-breadcrumb-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .svc-hero h1 { font-size: 38px; }
  .svc-hero { padding: 48px 0 0; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-hero-actions { flex-direction: column; }
  .svc-hero-actions a { justify-content: center; }
}

/* ──────────────────────────────────────
   THANK YOU PAGE RESPONSIVE
   ────────────────────────────────────── */
@media (max-width: 900px) {
  .ty-plan-card { grid-template-columns: 1fr; }
  .ty-steps-grid { grid-template-columns: 1fr; }
  .ty-benefits-inner { grid-template-columns: 1fr 1fr; }
  .ty-plan-wrap { margin-top: -40px; padding: 0 16px; }
  .ty-steps { padding: 56px 20px; }
  .ty-contact { padding: 56px 20px; }
}
@media (max-width: 480px) {
  .ty-hero { padding: 48px 20px 60px; }
  .ty-benefits-inner { grid-template-columns: 1fr; }
  .ty-hero-btns { flex-direction: column; align-items: center; }
  .ty-contact-btns { flex-direction: column; align-items: center; }
}

/* ── MOBILE MENU EXTRAS ── */

/* Prevent body scroll when mobile menu is open */
body.menu-open { overflow: hidden; }

/* Overlay behind open mobile menu */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(27,43,94,0.25);
  z-index: 898;
  pointer-events: none;
}

/* Nav desktop layout safeguard */
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo img {
    height: 88px;
    object-position: left center;
  }
}

/* Scrolled nav logo smaller on desktop */
nav.scrolled .nav-logo img { height: 68px; }

@media (max-width: 768px) {
  nav.scrolled .nav-logo img { height: 46px; }
  nav.scrolled { height: 60px; }
  /* Dropdown top adjusts with scrolled nav */
  nav.scrolled ~ * #navLinks,
  nav.scrolled #navLinks,
  .nav-links.open { top: 60px; }
}

/* ── EXTRA PADDING ON MOBILE MENU ITEMS ── */
@media (max-width: 480px) {
  .nav-logo img { height: 48px; }
  nav { height: 66px; padding: 0 14px; }
  nav.scrolled { height: 54px; }
  .nav-links a { padding: 16px 20px; font-size: 15px; }
  .nav-links a.nav-cta { padding: 16px 20px; margin: 12px 16px 4px; width: calc(100% - 32px); font-size: 15px; }
}

/* ── BURGER MENU DROPDOWN FIX ── */
/* Default dropdown position = below nav */
.nav-links, #navLinks {
  /* Will be positioned by JS when scrolled */
}

/* Ensure dropdown opens correctly on all states */
@media (max-width: 768px) {
  /* Make sure ul is actually a ul for the menu */
  ul.nav-links, ul#navLinks {
    list-style: none;
    margin: 0;
    padding: 8px 0 20px;
  }

  ul.nav-links li, ul#navLinks li {
    width: 100%;
    margin: 0;
  }

  /* Nav dropdown z-index above everything */
  .nav-links.open, #navLinks.open {
    z-index: 9998;
  }

  /* Remove the ::after underline on mobile entirely */
  .nav-links li a::after,
  #navLinks li a::after {
    display: none !important;
    width: 0 !important;
  }
}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--orange); }
.footer-sep { color: rgba(255,255,255,0.25); font-size: 12px; }

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-legal-links {
    justify-content: center;
  }
}
/* ── LOGO MOBILE FIX ── */
@media (max-width: 768px) {
  .nav-logo {
    overflow: visible;
    flex-shrink: 0;
    max-width: calc(100% - 60px);
  }
  .nav-logo img {
    height: 52px !important;
    width: auto !important;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    display: block;
    overflow: visible;
  }
  nav {
    overflow: visible;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 46px !important;
    max-width: 160px;
  }
}
/* Vapi floating button — above hero overlay and mobile bar */
vapi-button-web { z-index: 9990 !important; }
div[id^="vapi"], div[class*="vapi-btn"] { z-index: 9990 !important; }

/* ── Talk to Alex pulse button (hero) ── */
@keyframes alex-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.btn-alex-pulse {
  background: linear-gradient(135deg, #e85d04, #f48c06);
  color: white;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(232,93,4,0.4);
}
.btn-alex-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: rgba(232,93,4,0.5);
  animation: alex-ring 1.8s ease-out infinite;
  pointer-events: none;
}
.btn-alex-pulse:hover {
  background: linear-gradient(135deg, #f48c06, #e85d04);
  transform: translateY(-2px);
}

/* ── Standalone Talk to Alex CTA ── */
.btn-talk-alex {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #e85d04, #f48c06);
  color: white;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(232,93,4,0.45);
  overflow: hidden;
}
.btn-talk-alex::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(255,255,255,0.22);
  animation: alex-ring 1.8s ease-out infinite;
  pointer-events: none;
}
.btn-talk-alex i {
  font-size: 22px;
  flex-shrink: 0;
}
.btn-talk-alex:hover {
  background: linear-gradient(135deg, #f48c06, #e85d04);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,93,4,0.6);
}
.hero-btn-label {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-btn-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-btn-label small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 3px;
}

/* Hide mobile contact bar on desktop */
.mobile-contact-bar { display: none; }
@media (max-width: 768px) {
  .mobile-contact-bar { display: flex !important; }
}

/* ── Booking modal ── */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,50,0.75);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-overlay.open { display: flex; }
.booking-modal {
  background: white;
  border-radius: 12px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeUp 0.3s ease;
}
.booking-modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.booking-modal p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.booking-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 22px; cursor: pointer;
  color: var(--gray);
  line-height: 1;
}
.booking-close:hover { color: var(--navy); }
.bk-hidden { display: none; }
.bk-submit { width: 100%; margin-top: 8px; }
.booking-modal h3 i { color: var(--orange); margin-right: 8px; }

/* Consent checkbox row */
.form-consent { margin-top: 8px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
.consent-check {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--orange);
}
.consent-label span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.consent-label span a {
  color: var(--orange);
  text-decoration: underline;
}
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: #92400e;
  margin: 12px 0;
  display: none;
}
.booking-note.show { display: block; }
.booking-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.booking-success.show { display: block; }
.booking-success i { font-size: 48px; color: #10b981; margin-bottom: 12px; }
.booking-success h4 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.booking-success p { color: var(--gray); }

@media (max-width: 480px) {
  .booking-modal { padding: 24px 18px; }
  .booking-row { grid-template-columns: 1fr; }
}

/* ── Vapi floating button offset ── */
vapi-button-web,
div[id^="vapi"], div[class*="vapi-btn"] {
  z-index: 9990 !important;
}
