/* ===== VARIABLES ===== */
:root {
  --navy:       #1B2D6B;
  --navy-dark:  #080D1A;
  --navy-deep:  #0D1638;
  --navy-mid:   #1E3A8A;
  --orange:     #E8600A;
  --orange-lt:  #FF7C2A;
  --orange-glow: rgba(232,96,10,0.3);
  --white:      #FFFFFF;
  --off-white:  #F4F6FB;
  --gray:       #6B7280;
  --light-gray: #E2E8F0;
  --text:       #0F172A;
  --transition: 0.28s ease;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(11,20,55,0.08);
  --shadow-lg:  0 16px 56px rgba(11,20,55,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; font-weight: 400; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
h1,h2,h3,h4,h5 { font-family: 'Raleway', sans-serif; font-weight: 800; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.accent { color: var(--orange); }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(27,45,107,0.07);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.orange { color: var(--orange); background: rgba(232,96,10,0.09); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 16px; font-weight: 400; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 9px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 32px var(--orange-glow); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

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

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8,13,26,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  padding: 12px 0;
}
.nav-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 50px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: transform var(--transition); }
.nav-logo:hover img { transform: scale(1.04); }

.nav-links { display: flex; list-style: none; align-items: center; gap: 32px; }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width var(--transition); border-radius: 2px; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 7px; font-size: 13px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-lt) !important; transform: translateY(-1px); }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,58,138,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,138,0.25) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow-1 { position: absolute; right: -10%; top: 30%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,96,10,0.12) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-glow-2 { position: absolute; left: -5%; bottom: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(27,45,107,0.4) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
/* ===== FLOATING CREDIT CARDS ===== */
.hero-cards {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.float-card {
  position: absolute;
  opacity: var(--op);
  animation: cardDrift var(--dur) var(--delay) ease-in-out infinite;
  will-change: transform;
}

@keyframes cardDrift {
  0%   { transform: translateY(0px)   translateX(0px)  rotate(var(--rot)); }
  25%  { transform: translateY(-14px) translateX(5px)  rotate(calc(var(--rot) + 2.5deg)); }
  50%  { transform: translateY(-20px) translateX(-4px) rotate(calc(var(--rot) - 1.5deg)); }
  75%  { transform: translateY(-10px) translateX(7px)  rotate(calc(var(--rot) + 1deg)); }
  100% { transform: translateY(0px)   translateX(0px)  rotate(var(--rot)); }
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: rgba(232,96,10,0.18); animation: float linear infinite; }
@keyframes float { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 0.4; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 110px 24px 60px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); background: rgba(232,96,10,0.1); border: 1px solid rgba(232,96,10,0.25);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-content h1 { font-size: clamp(42px, 7.5vw, 80px); font-weight: 900; color: var(--white); margin-bottom: 22px; animation: fadeUp 0.8s 0.1s ease both; letter-spacing: -1px; }
.hero-content h1 .accent { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lt) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; margin: 0 auto 44px; animation: fadeUp 0.8s 0.2s ease both; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp 0.8s 0.3s ease both; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 20px 32px; backdrop-filter: blur(8px); }
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Raleway', sans-serif; font-size: 34px; font-weight: 900; color: var(--white); line-height: 1; }
.plus { color: var(--orange); }
.stat-label { display: block; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: fadeUp 0.8s 0.6s ease both; }
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 600; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; padding: 32px; }
.about-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232,96,10,0.15);
  overflow: hidden;
}
.about-card::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(232,96,10,0.1) 0%, transparent 70%); }
.about-chart-svg { margin-bottom: 24px; border-radius: 10px; overflow: hidden; }
.about-chart-svg svg { width: 100%; height: auto; display: block; }
.about-card-text { font-size: 16px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.75; }

.floating-badge { position: absolute; background: var(--white); border-radius: 50px; padding: 10px 18px; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; color: var(--navy); box-shadow: 0 8px 28px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.floating-badge svg { color: var(--orange); flex-shrink: 0; }
.fb-1 { top: 8px; right: -8px; }
.fb-2 { bottom: 8px; left: -8px; }

.about-text { }
.about-text h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 18px; color: var(--navy-deep); }
.about-text p { color: var(--gray); font-size: 15px; font-weight: 400; margin-bottom: 16px; line-height: 1.75; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon { width: 42px; height: 42px; background: rgba(232,96,10,0.08); border: 1px solid rgba(232,96,10,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.feature-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-item p { font-size: 13px; color: var(--gray); margin: 0; }

/* ===== SERVICES ===== */
.services-overview { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(232,96,10,0.2); }
.service-card:hover::after { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }

.featured-card {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  transform: translateY(-10px);
}
.featured-card::after { background: linear-gradient(90deg, var(--orange), var(--orange-lt)) !important; }
.featured-card h3 { color: var(--white) !important; }
.featured-card p { color: rgba(255,255,255,0.65) !important; }
.featured-card .service-link { color: var(--orange) !important; }
.featured-card .service-icon { background: rgba(232,96,10,0.15) !important; border-color: rgba(232,96,10,0.3) !important; color: var(--orange) !important; }

.card-badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: var(--white); font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }

.service-icon { width: 56px; height: 56px; background: rgba(27,45,107,0.07); border: 1px solid rgba(27,45,107,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 14px; font-weight: 400; margin-bottom: 22px; line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange); transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== WHAT WE REMOVE ===== */
.remove-section { background: var(--navy-dark); position: relative; overflow: hidden; }
.remove-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,58,138,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,138,0.15) 1px, transparent 1px); background-size: 56px 56px; }

.remove-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 52px; position: relative; }

.remove-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: var(--transition);
}
.remove-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(232,96,10,0.3); transform: translateX(4px); box-shadow: -2px 0 0 var(--orange); }
.check-icon { width: 26px; height: 26px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-icon.sm { width: 22px; height: 22px; }
.remove-item strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.remove-item p { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 400; margin: 0; }

.remove-cta { text-align: center; position: relative; }
.remove-cta p { color: rgba(255,255,255,0.6); font-size: 17px; font-weight: 300; margin-bottom: 24px; font-style: italic; }

/* ===== FUNDING ===== */
.funding-section { background: var(--off-white); }
.funding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.funding-text h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--navy-deep); margin-bottom: 18px; }
.funding-text p { color: var(--gray); font-size: 15px; font-weight: 400; margin-bottom: 32px; line-height: 1.75; }

.funding-range { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 32px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.funding-range::after { content: ''; position: absolute; right: -20px; top: -20px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(232,96,10,0.2), transparent 70%); border-radius: 50%; }
.range-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.range-amount { display: block; font-family: 'Raleway', sans-serif; font-size: 34px; font-weight: 900; color: var(--white); margin-bottom: 4px; letter-spacing: -0.5px; }
.range-amount sup { font-size: 18px; color: var(--orange); }
.range-note { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 400; }

.funding-uses { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.funding-uses h3 { font-size: 16px; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.funding-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.funding-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--text); padding: 11px 0; border-bottom: 1px solid var(--light-gray); }
.funding-list li:last-child { border-bottom: none; }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { text-align: center; padding: 0 16px; position: relative; }
.step-num { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(27,45,107,0.3); transition: var(--transition); }
.step:hover .step-num { background: var(--orange); box-shadow: 0 4px 20px var(--orange-glow); transform: scale(1.1); }
.step-connector { position: absolute; top: 30px; left: calc(50% + 30px); right: calc(-50% + 30px); height: 1px; background: linear-gradient(to right, var(--light-gray), var(--light-gray)); z-index: 1; }
.step-connector.last { display: none; }
.step h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.step p { font-size: 13px; color: var(--gray); font-weight: 400; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: rgba(232,96,10,0.25); }
.faq-item.open {
  border-color: rgba(232,96,10,0.35);
  box-shadow: 0 4px 24px rgba(232,96,10,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray);
  transition: background var(--transition), color var(--transition), transform 0.35s ease;
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  color: var(--gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

/* ===== CONTACT ===== */
.contact-section { position: relative; background: var(--navy-dark); overflow: hidden; }
.contact-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,58,138,0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,138,0.2) 1px, transparent 1px); background-size: 56px 56px; }
.contact-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(232,96,10,0.08) 0%, transparent 60%); }

.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-size: clamp(26px, 3.5vw, 42px); color: var(--white); margin-bottom: 18px; }
.contact-text p { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 400; margin-bottom: 36px; line-height: 1.75; }

.phone-link { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 18px 24px; margin-bottom: 28px; transition: var(--transition); cursor: pointer; }
.phone-link:hover { background: rgba(232,96,10,0.12); border-color: rgba(232,96,10,0.35); transform: translateX(4px); }
.phone-icon-wrap { width: 44px; height: 44px; background: rgba(232,96,10,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.phone-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.phone-number { display: block; font-family: 'Raleway', sans-serif; font-size: 26px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }

.contact-trust { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ===== FORM ===== */
.contact-form-wrap { position: relative; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form h3 { font-size: 20px; color: var(--navy); margin-bottom: 26px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--light-gray); border-radius: 9px; font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 400; color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,96,10,0.1); }
.form-group textarea { resize: vertical; }
.form-disclaimer { text-align: center; font-size: 11px; color: var(--gray); margin-top: 10px; font-weight: 400; }

.form-success { display: none; background: var(--white); border-radius: var(--radius-lg); padding: 56px 40px; box-shadow: var(--shadow-lg); text-align: center; }
.form-success.show { display: block; }
.success-icon { width: 68px; height: 68px; background: linear-gradient(135deg, #22c55e, #16a34a); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { color: var(--navy); font-size: 26px; margin-bottom: 10px; }
.form-success p { color: var(--gray); margin-bottom: 24px; font-weight: 400; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 300; line-height: 1.75; margin-bottom: 16px; }
.footer-phone { display: inline-block; font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800; color: var(--orange); transition: color var(--transition); }
.footer-phone:hover { color: var(--orange-lt); }
.footer-links h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 400; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; font-weight: 400; }
.footer-disclaimer { font-size: 11px !important; line-height: 1.6; }

/* ===== SCROLL TOP ===== */
.scroll-top-btn { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: var(--white); border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(232,96,10,0.4); opacity: 0; transform: translateY(16px) scale(0.85); transition: opacity 0.3s, transform 0.3s, background 0.2s; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.scroll-top-btn.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-top-btn:hover { background: var(--navy); box-shadow: 0 6px 24px rgba(27,45,107,0.4); }

/* ===== FAB SPEED DIAL ===== */
.fab-group {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 54px;
}

/* Base fab style */
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }

/* Trigger button */
.fab-trigger {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(232,96,10,0.5);
  position: relative;
  z-index: 2;
}
.fab-trigger:hover { box-shadow: 0 6px 28px rgba(232,96,10,0.6); }

.fab-icon-plus {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.fab-group.open .fab-icon-plus { transform: rotate(45deg); }

/* Child wrappers — anchored to right edge, label extends LEFT */
.fab-child {
  position: absolute;
  bottom: 0;
  right: 0;                    /* align button with trigger */
  display: flex;
  align-items: center;
  flex-direction: row;         /* label LEFT, button RIGHT */
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0) scale(0.4);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.3s ease;
}

/* Stagger open — bottom first */
.fab-group.open .fab-child[data-index="0"] { opacity:1; transform:translateY(-64px)  scale(1); pointer-events:auto; transition-delay:  0ms; }
.fab-group.open .fab-child[data-index="1"] { opacity:1; transform:translateY(-124px) scale(1); pointer-events:auto; transition-delay: 60ms; }
.fab-group.open .fab-child[data-index="2"] { opacity:1; transform:translateY(-184px) scale(1); pointer-events:auto; transition-delay:120ms; }
.fab-group.open .fab-child[data-index="3"] { opacity:1; transform:translateY(-244px) scale(1); pointer-events:auto; transition-delay:180ms; }

/* Stagger close — top first */
.fab-group .fab-child[data-index="0"] { transition-delay:180ms; }
.fab-group .fab-child[data-index="1"] { transition-delay:120ms; }
.fab-group .fab-child[data-index="2"] { transition-delay: 60ms; }
.fab-group .fab-child[data-index="3"] { transition-delay:  0ms; }

/* Labels — always visible when group open, pointing RIGHT with arrow */
.fab-child-label {
  background: rgba(8,13,26,0.9);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  position: relative;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease 0.15s, transform 0.25s ease 0.15s;
}
/* Arrow pointing right toward the button */
.fab-child-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(8,13,26,0.9);
  border-right: none;
}
/* Show labels when group is open */
.fab-group.open .fab-child .fab-child-label {
  opacity: 1;
  transform: translateX(0);
}

/* Individual FAB colors */
.fab-phone { background: #1a73e8; }
.fab-ig    { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
.fab-wa    { background: #25D366; }
.fab-cal   { background: var(--orange); }

/* ===== BOOKING MODAL ===== */
.booking-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(6px); }
.booking-overlay.show { display: flex; }
.booking-modal { background: var(--white); border-radius: 20px; width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.35); animation: bmSlide 0.35s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes bmSlide { from { opacity:0; transform: translateY(36px) scale(0.97); } to { opacity:1; transform: translateY(0) scale(1); } }

.bm-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px 28px 18px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: 20px 20px 0 0; }
.bm-header h3 { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.bm-header p { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; }
.bm-close { background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.bm-close:hover { background: rgba(255,255,255,0.2); }

.bm-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 26px; }
.bm-step-label { display: flex; align-items: center; gap: 10px; font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.bm-step-num { width: 22px; height: 22px; background: var(--orange); color: var(--white); border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bm-chosen-date { font-size: 12px; font-weight: 600; color: var(--orange); margin-left: 4px; text-transform: none; letter-spacing: 0; }

.bm-dates { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.date-chip { display: flex; flex-direction: column; align-items: center; padding: 10px 4px; border: 1.5px solid var(--light-gray); border-radius: 10px; cursor: pointer; transition: all 0.2s; background: var(--white); }
.date-chip:hover { border-color: var(--orange); background: rgba(232,96,10,0.04); }
.date-chip.selected { border-color: var(--orange); background: var(--orange); color: var(--white); }
.date-chip.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.dc-day  { font-family: 'Raleway', sans-serif; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.dc-num  { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 900; line-height: 1; }
.dc-mon  { font-size: 9px; margin-top: 2px; opacity: 0.65; }

.bm-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-chip { padding: 10px 6px; text-align: center; border: 1.5px solid var(--light-gray); border-radius: 9px; cursor: pointer; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--white); transition: all 0.2s; }
.time-chip:hover:not(.booked) { border-color: var(--orange); background: rgba(232,96,10,0.05); }
.time-chip.selected { border-color: var(--orange); background: var(--orange); color: var(--white); }
.time-chip.booked { background: var(--off-white); color: var(--gray); cursor: not-allowed; text-decoration: line-through; font-weight: 400; }

.bm-form { display: flex; flex-direction: column; gap: 13px; }
.bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.bm-field { display: flex; flex-direction: column; gap: 5px; }
.bm-field label { font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); }
.bm-field input, .bm-field textarea { padding: 11px 13px; border: 1.5px solid var(--light-gray); border-radius: 9px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 400; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.bm-field input:focus, .bm-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,96,10,0.1); }
.bm-field textarea { resize: none; }

.bm-summary { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: 9px; padding: 13px 16px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); font-family: 'Raleway', sans-serif; }

.bm-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 32px; gap: 14px; }
.bm-success.show { display: flex; }
.bm-body.hide { display: none; }
.bm-success-icon { width: 68px; height: 68px; background: linear-gradient(135deg, #22c55e, #16a34a); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bm-success h3 { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.bm-success p { color: var(--gray); font-size: 14px; font-weight: 400; max-width: 300px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .funding-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-card { transform: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== MOBILE DRAWER ===== */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mob-overlay.show { display: block; }

.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 310px;
  background: #0D1638;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mob-brand {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}
.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mob-close:hover { background: rgba(255,255,255,0.15); }

.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  flex: 1;
  gap: 2px;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover, .mob-link.active { background: rgba(232,96,10,0.1); color: var(--white); }
.mob-link:hover .mob-link-icon, .mob-link.active .mob-link-icon { color: var(--orange); }

.mob-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}

.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 4px 14px 16px;
  padding: 14px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,96,10,0.35);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.mob-cta-btn:hover { background: var(--orange-lt); transform: translateY(-1px); }

.mob-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.mob-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.mob-phone svg { color: var(--orange); flex-shrink: 0; }
.mob-phone:hover { color: var(--white); }

.mob-social {
  display: flex;
  gap: 10px;
}
.mob-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.mob-social a:hover { background: rgba(232,96,10,0.2); color: var(--white); }

/* Hide mob-drawer on desktop */
@media (min-width: 769px) {
  .mob-drawer, .mob-overlay { display: none !important; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; z-index: 1000; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .remove-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; padding: 16px 20px; }
  .stat-num { font-size: 26px; }
  .form-row, .bm-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .floating-badge { display: none; }
  .bm-dates { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px 18px; }
  .bm-dates { grid-template-columns: repeat(3, 1fr); }
  .bm-times { grid-template-columns: repeat(2, 1fr); }
}
