/* =============================================
   PropertyServiceHelp.com — Main Stylesheet
   ============================================= */

:root {
  --navy:   #0F2D52;
  --royal:  #1E88E5;
  --orange: #FF6B35;
  --white:  #FFFFFF;
  --lgray:  #F5F7FA;
  --dgray:  #333333;
  --mgray:  #666666;
  --border: #E0E6EF;
  --shadow: 0 4px 24px rgba(15,45,82,0.10);
  --shadow-lg: 0 8px 40px rgba(15,45,82,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dgray);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p  { color: var(--mgray); }
section { padding: 72px 0; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.bg-navy  { background: var(--navy); }
.bg-lgray { background: var(--lgray); }
.section-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); background: rgba(255,107,53,.10);
  border-radius: 20px; padding: 4px 14px; margin-bottom: 12px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--mgray); font-size: 1.05rem; max-width: 560px; margin: 0 auto 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
  border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: #e85d28; border-color: #e85d28; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: #0a2040; color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; }

/* ---- Topbar ---- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.8);
  font-size: .82rem; padding: 7px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(15,45,82,0.09);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; color: var(--orange); }
.nav-logo-text .brand-name { font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); line-height: 1; }
.nav-logo-text .brand-tagline { font-size: .65rem; color: var(--mgray); letter-spacing: .06em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 8px 14px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--lgray); color: var(--royal); }
.nav-link .caret { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: block; padding: 8px 12px; font-size: .85rem; color: var(--dgray); border-radius: 6px; transition: var(--transition); }
.dropdown-item:hover { background: var(--lgray); color: var(--royal); }
.mega-menu {
  min-width: 680px; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 20px;
  left: -200px;
}
.mega-col-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); padding: 4px 8px 10px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: .9rem; color: var(--navy); }
.nav-phone svg { width: 18px; height: 18px; color: var(--orange); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #1E3A6E 100%);
  min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 80px 0 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,136,229,0.12) 0%, rgba(255,107,53,0.06) 100%);
  opacity: 1;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 80% 20%, rgba(30,136,229,.25) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(255,107,53,.15) 0%, transparent 40%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,107,53,.15); border: 1px solid rgba(255,107,53,.3); color: #FFA07A; border-radius: 20px; padding: 6px 16px; font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 20px; }
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--orange); font-family: 'Poppins',sans-serif; line-height: 1; }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 32px 28px; position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--royal)); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-card-title { font-size: 1.2rem; margin-bottom: 4px; }
.form-card-sub { font-size: .82rem; color: var(--mgray); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .88rem; color: var(--dgray); background: var(--white);
  transition: var(--transition); outline: none; font-family: inherit;
}
.form-control:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(30,136,229,.12); }
.form-control::placeholder { color: #aaa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit-btn { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; border-radius: 8px; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .75rem; color: var(--mgray); margin-top: 10px; }
.form-trust svg { width: 14px; height: 14px; color: #22c55e; }

/* ---- Services Section ---- */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 28px 22px; transition: var(--transition); cursor: pointer;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: var(--royal); box-shadow: var(--shadow-lg);
  transform: translateY(-5px); color: inherit;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--lgray);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.service-icon svg { width: 28px; height: 28px; color: var(--royal); }
.service-card:hover .service-icon { background: var(--royal); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1rem; margin: 0; }
.service-card p { font-size: .83rem; line-height: 1.55; margin: 0; }
.service-card-arrow { display: flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; color: var(--royal); margin-top: auto; }
.service-card-arrow svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .service-card-arrow svg { transform: translateX(4px); }

/* ---- Why Choose Us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.why-badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.why-badge-float .num { font-size: 1.8rem; font-weight: 800; color: var(--orange); font-family: 'Poppins',sans-serif; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.why-feature { display: flex; align-items: flex-start; gap: 12px; }
.why-feature-icon { width: 44px; height: 44px; background: rgba(30,136,229,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feature-icon svg { width: 22px; height: 22px; color: var(--royal); }
.why-feature-text h4 { font-size: .95rem; margin-bottom: 4px; }
.why-feature-text p  { font-size: .82rem; }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--royal), var(--orange)); z-index: 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--royal); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--royal); font-family: 'Poppins',sans-serif;
  margin-bottom: 20px; box-shadow: 0 4px 16px rgba(30,136,229,.18);
}
.process-step.active .step-circle { background: var(--royal); color: var(--white); border-color: var(--royal); }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .82rem; }

/* ---- Counters ---- */
.counters-section { background: var(--navy); padding: 56px 0; }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.counter-item { text-align: center; }
.counter-num { font-size: 2.6rem; font-weight: 800; color: var(--orange); font-family: 'Poppins',sans-serif; line-height: 1; }
.counter-label { color: rgba(255,255,255,.7); font-size: .85rem; margin-top: 6px; text-transform: uppercase; letter-spacing: .07em; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border); position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem; color: rgba(30,136,229,.1); font-family: Georgia,serif; line-height: 1; }
.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; color: var(--dgray); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--royal);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-meta { font-size: .77rem; color: var(--mgray); }

/* ---- Service Areas ---- */
.areas-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.area-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 16px; text-align: center; transition: var(--transition); cursor: pointer;
}
.area-card:hover { border-color: var(--royal); background: rgba(30,136,229,.04); transform: translateY(-3px); }
.area-card svg { width: 28px; height: 28px; color: var(--royal); margin: 0 auto 8px; }
.area-card .area-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
.area-card .area-state { font-size: .75rem; color: var(--mgray); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .95rem;
  color: var(--navy); gap: 16px; transition: var(--transition);
}
.faq-question:hover { background: var(--lgray); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 18px 22px; font-size: .88rem; color: var(--mgray); border-top: 1px solid var(--border); line-height: 1.7; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4090 100%); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,107,53,.12);
}
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.contact-info-value { font-weight: 600; color: var(--white); font-size: .95rem; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ---- Map ---- */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 420px; display: block; border: none; }

/* ---- Newsletter ---- */
.newsletter-section { background: var(--lgray); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; width: 100%; }
.newsletter-input {
  flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 8px 0 0 8px;
  font-size: .9rem; outline: none; font-family: inherit;
}
.newsletter-input:focus { border-color: var(--royal); }
.newsletter-btn { border-radius: 0 8px 8px 0; padding: 14px 22px; }

/* ---- Footer ---- */
footer { background: #0a1e38; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand-desc { font-size: .85rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-btn:hover { background: var(--royal); }
.social-btn svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .84rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ---- Floating Elements ---- */
.float-quote-btn {
  position: fixed; bottom: 90px; right: 24px; z-index: 500;
  background: var(--orange); color: var(--white); border: none; border-radius: var(--radius);
  padding: 12px 18px; font-size: .82rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,107,53,.4); display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.float-quote-btn:hover { background: #e85d28; transform: translateY(-2px); }
.float-quote-btn svg { width: 16px; height: 16px; }

.float-call-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: #22c55e; color: var(--white); border: none; border-radius: 50%;
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,.4); cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.float-call-btn:hover { background: #16a34a; transform: scale(1.1); color: var(--white); }
.float-call-btn svg { width: 24px; height: 24px; }

.back-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 500;
  background: var(--navy); color: var(--white); border: none; border-radius: 10px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--royal); transform: translateY(-3px); }
.back-top svg { width: 20px; height: 20px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,136,229,0.15) 0%, rgba(255,107,53,0.08) 100%); opacity: 1; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--orange); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 580px; font-size: 1.05rem; }

/* ---- About ---- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--white); font-family: 'Poppins',sans-serif;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: .8rem; }

/* ---- Service page specifics ---- */
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; background: var(--lgray); border-radius: var(--radius); padding: 16px; }
.benefit-check { width: 22px; height: 22px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-check svg { width: 13px; height: 13px; color: var(--white); }
.benefit-text strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 3px; }
.benefit-text span { font-size: .8rem; color: var(--mgray); }

/* ============== SERVICE PAGE HERO BANNER ============== */
.service-hero-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4090 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.service-hero-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,136,229,0.15) 0%, rgba(255,107,53,0.08) 100%); opacity: 1; }
.service-hero-content { position: relative; z-index: 1; }

/* ---- Alerts ---- */
.alert { padding: 14px 18px; border-radius: 8px; font-size: .88rem; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: rgba(34,197,94,.12); color: #15803d; border: 1px solid rgba(34,197,94,.3); }
.alert-error   { background: rgba(239,68,68,.1);  color: #dc2626; border: 1px solid rgba(239,68,68,.2); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
