/* Oris Property Solutions LLC */
:root {
  --navy: #07101f;
  --navy-2: #0b1728;
  --blue: #1d63ff;
  --blue-2: #4f8cff;
  --mint: #62dfc4;
  --sand: #f5f3ee;
  --white: #ffffff;
  --text: #162033;
  --muted: #687386;
  --line: #dde3ec;
  --card: #ffffff;
  --shadow: 0 22px 55px rgba(10, 24, 52, .11);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,16,31,.78);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(5, 17, 34, .18);
}
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}
.footer-brand-logo-wrap {
  background: rgba(255,255,255,.98);
}
.footer-brand-logo {
  height: 48px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }

.main-nav { display: flex; align-items: center; gap: 31px; }
.main-nav a { color: #d5deed; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--white); }
.nav-cta { padding: 11px 18px; border-radius: 12px; color: var(--white)!important; background: var(--blue); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--white); }

.hero {
  position: relative; overflow: hidden;
  min-height: 810px;
  padding: 150px 0 90px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(7,16,31,.99) 0%, rgba(10,25,45,.98) 57%, rgba(11,27,46,.93) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.12));
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); opacity: .25; }
.hero-glow-one { width: 500px; height: 500px; right: -120px; top: 70px; background: var(--blue); }
.hero-glow-two { width: 300px; height: 300px; left: 38%; bottom: -160px; background: var(--mint); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #b8c8de; font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 29px; height: 2px; background: var(--mint); }
h1, h2, h3 { font-family: "Plus Jakarta Sans", sans-serif; margin: 0; line-height: 1.12; }
h1 { font-size: clamp(48px, 5.7vw, 78px); letter-spacing: -.055em; }
h1 em { color: #8fb5ff; font-style: normal; }
.hero-lead { max-width: 665px; margin: 26px 0 33px; color: #bcc9db; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px;
  border: 0; border-radius: 14px;
  font: 700 14px "Manrope", sans-serif;
  cursor: pointer; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #3979ff); box-shadow: 0 13px 30px rgba(29,99,255,.28); }
.btn-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 47px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.11); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { color: #8fa0b8; font-size: 12px; margin-top: 4px; }

.hero-panel { padding: 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.07); box-shadow: 0 35px 70px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.panel-top { display: flex; align-items: center; gap: 9px; padding: 2px 4px 16px; color: #c3cfe0; font-size: 12px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(98,223,196,.12); }
.property-card { overflow: hidden; border-radius: 19px; background: var(--white); color: var(--text); }
.property-visual { position: relative; height: 245px; overflow: hidden; }
.property-visual-photo {
  background-image: linear-gradient(180deg, rgba(6,15,28,.02), rgba(6,15,28,.08)), url('hero-property-support.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.property-info { padding: 22px 23px 25px; }
.property-label { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.property-info h3 { margin-top: 7px; font-size: 21px; }
.property-info p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 11px; }
.mini-card { display: flex; gap: 11px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(4,12,24,.55); }
.mini-card .icon { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 8px; color: var(--mint); background: rgba(98,223,196,.1); font-weight: 800; }
.mini-card div { display: flex; flex-direction: column; }
.mini-card strong { font-size: 12px; }
.mini-card small { margin-top: 2px; color: #8496b0; font-size: 10px; }

.stats-bar { padding: 23px 0; background: var(--sand); border-bottom: 1px solid #e8e5df; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { padding: 0 25px; border-right: 1px solid #dad7d0; }
.stats-grid div:first-child { padding-left: 0; }
.stats-grid div:last-child { border: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { font-size: 14px; }
.stats-grid span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.section { padding: 108px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .industries h2, .coverage-copy h2, .why-us h2, .contact-copy h2 { margin-top: 11px; font-size: clamp(35px, 4vw, 53px); letter-spacing: -.045em; }
.section-heading p { margin: 0 0 4px; color: var(--muted); }
.section-kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker.light { color: var(--mint); }

.services { background: #fbfcfe; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 31px; border: 1px solid #e4e9f1; border-radius: var(--radius); background: var(--card); transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); border-color: var(--navy); background: linear-gradient(145deg, #0a1830, #102b4d); }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 13px; color: var(--blue); background: #edf3ff; font-weight: 800; font-size: 12px; }
.featured .service-icon { color: var(--mint); background: rgba(98,223,196,.1); }
.service-card h3 { font-size: 21px; }
.service-card p { color: var(--muted); font-size: 14px; }
.featured p, .featured li { color: #b8c7db; }
.service-card ul { margin: 20px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid #e9edf3; }
.featured ul { border-color: rgba(255,255,255,.11); }
.service-card li { position: relative; padding: 5px 0 5px 18px; color: #47556a; font-size: 13px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }

.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.industries-copy p { color: var(--muted); }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 16px; color: var(--blue); font-weight: 800; }
.industry-list { border-top: 1px solid var(--line); }
.industry-list div { display: grid; grid-template-columns: 55px 1fr; gap: 20px; align-items: center; padding: 26px 3px; border-bottom: 1px solid var(--line); }
.industry-list span { color: var(--blue); font-size: 12px; font-weight: 800; }
.industry-list strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 20px; }

.process { background: var(--sand); }
.section-heading.centered { display: block; max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered p { margin-top: 15px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.process-step { position: relative; padding: 30px 25px; border-radius: 18px; background: var(--white); }
.process-step span { color: var(--blue); font-size: 12px; font-weight: 800; }
.process-step h3 { margin: 37px 0 12px; font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; }

.coverage-section { overflow: hidden; padding: 105px 0; color: var(--white); background: linear-gradient(120deg, #081426, #103156); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.coverage-map { position: relative; min-height: 440px; border: 1px solid rgba(255,255,255,.11); border-radius: 30px; background: radial-gradient(circle at center, rgba(29,99,255,.16), transparent 58%), rgba(255,255,255,.035); overflow: hidden; }
.coverage-map::before, .coverage-map::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 42px 42px; }
.map-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(98,223,196,.25); border-radius: 50%; }
.ring-one { width: 130px; height: 130px; }
.ring-two { width: 245px; height: 245px; }
.ring-three { width: 365px; height: 365px; }
.map-pin { position: absolute; z-index: 2; left: 50%; top: 48%; transform: translate(-50%,-50%); text-align: center; }
.map-pin span { display: block; width: 23px; height: 23px; margin: auto; border: 6px solid var(--mint); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 9px rgba(98,223,196,.1); }
.map-pin strong { display: block; margin-top: 16px; font-size: 13px; }
.city { position: absolute; z-index: 2; color: #95a8c0; font-size: 11px; font-weight: 700; }
.city-dallas { right: 22%; bottom: 22%; }
.city-fortworth { left: 16%; bottom: 23%; }
.city-frisco { right: 24%; top: 24%; }
.city-plano { right: 13%; top: 43%; }
.coverage-copy p { color: #b8c7da; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.coverage-tags span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #dce5f1; background: rgba(255,255,255,.05); font-size: 12px; }
.coverage-note { font-size: 12px; opacity: .75; }

.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.why-points { display: grid; gap: 13px; }
.why-points div { display: grid; grid-template-columns: 37px 1fr; gap: 15px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 15px; }
.why-points span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #116d59; background: #e7f8f3; font-weight: 800; }
.why-points p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.why-points strong { color: var(--text); }

.contact-section { padding: 105px 0; color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy p { color: #aebbd0; }
.contact-details { display: grid; gap: 23px; margin-top: 38px; }
.contact-details a, .contact-details div { display: flex; flex-direction: column; }
.contact-details span { color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.contact-details strong { margin-top: 6px; font-size: 14px; }
.contact-form { padding: 30px; border-radius: 24px; color: var(--text); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 15px; font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; margin-top: 7px; padding: 14px 15px;
  border: 1px solid #dce3ec; border-radius: 11px;
  color: var(--text); background: #fbfcfe;
  font: 500 13px "Manrope", sans-serif; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,99,255,.08); }
.full { width: 100%; }
.form-note { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 11px; }

footer { padding: 65px 0 22px; color: #9faec2; background: #050b15; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 50px; }
.footer-brand p { max-width: 330px; font-size: 13px; }
footer h4 { margin: 0 0 18px; color: var(--white); font-size: 13px; }
footer a, footer p { display: block; margin: 0 0 10px; color: #93a2b7; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }


.sms-consent {
  margin: 4px 0 18px;
  padding: 16px;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  background: #f7f9fc;
}
.checkbox-label {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin: 0 !important;
  font-weight: 500 !important;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--blue);
  box-shadow: none;
}
.checkbox-label span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 78px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 16px; background: #0b1728; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .menu-toggle { display: block; }
  .hero-grid, .coverage-grid, .contact-grid, .industries-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero { padding-top: 135px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo-wrap { padding: 6px 10px; border-radius: 14px; }
  .brand-logo { height: 30px; }
  .footer-brand-logo { height: 38px; }
  .nav-wrap { height: 70px; }
  .main-nav { top: 70px; }
  .hero { min-height: auto; padding: 120px 0 65px; }
  h1 { font-size: 45px; }
  .hero-lead { font-size: 16px; }
  .hero-trust { grid-template-columns: 1fr; }
  .mini-grid, .form-row, .service-grid, .process-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div { padding: 13px 0; border-right: 0; border-bottom: 1px solid #dad7d0; }
  .stats-grid div:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading h2, .industries h2, .coverage-copy h2, .why-us h2, .contact-copy h2 { font-size: 36px; }
  .property-visual { height: 205px; }
  .coverage-map { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


/* Final text-only logo tuning */
.brand-logo-wrap {
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 12px 30px rgba(5, 17, 34, .18);
}
.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}
.footer-brand-logo-wrap {
  padding: 10px 16px;
}
.footer-brand-logo {
  height: 42px;
}
@media (max-width: 680px) {
  .brand-logo-wrap { padding: 6px 10px; }
  .brand-logo { height: 28px; }
  .footer-brand-logo { height: 34px; }
}


/* Phone and social contact enhancements */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.social-link,
.floating-socials a {
  display: grid;
  place-items: center;
  border-radius: 12px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.social-link {
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  background: rgba(255,255,255,.07);
}
.social-link svg,
.floating-socials svg,
.call-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.social-link.facebook:hover,
.floating-socials .facebook:hover { background: #1877f2; }
.social-link.instagram:hover,
.floating-socials .instagram:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.social-link.linkedin:hover,
.floating-socials .linkedin:hover { background: #0a66c2; }
.social-link:hover,
.floating-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-call-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  min-height: 64px;
  padding: 9px 17px 9px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg,#0b2a56 0%,#1d63ff 58%,#2e7bff 100%);
  box-shadow: 0 18px 42px rgba(17,72,170,.34), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.floating-call-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(17,72,170,.42), inset 0 1px 0 rgba(255,255,255,.25);
}
.call-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.13);
}
.call-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.call-copy small {
  color: #bcd1ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.call-copy strong {
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.floating-socials {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(7,16,31,.95);
  box-shadow: 0 16px 35px rgba(5,17,34,.24);
}
.floating-socials a {
  width: 38px;
  height: 38px;
  color: #eaf1fb;
  background: rgba(255,255,255,.08);
}
@media (max-width: 680px) {
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-call-card {
    min-width: 218px;
    min-height: 58px;
    border-radius: 16px;
    padding: 7px 13px 7px 8px;
  }
  .call-icon { width: 42px; height: 42px; flex-basis: 42px; }
  .call-copy strong { font-size: 14px; }
  .floating-socials { display: none; }
}


/* Clickable service cards */
.service-card[data-service] {
  position: relative;
  cursor: pointer;
}
.service-card[data-service]::after {
  content: "Request this service →";
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.service-card.featured[data-service]::after {
  color: var(--mint);
}
.service-card[data-service]:focus-visible {
  outline: 3px solid rgba(29,99,255,.35);
  outline-offset: 4px;
}
.service-card[data-service]:active {
  transform: translateY(-1px) scale(.995);
}


/* Service cards with light image backgrounds */
.service-card.service-bg {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #dbe4ef;
  background-color: #f6f9fc;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  isolation: isolate;
  box-shadow: 0 18px 42px rgba(10,24,52,.08);
}
.service-card.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 30%, rgba(255,255,255,.63) 58%, rgba(255,255,255,.26) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.18) 100%);
  z-index: 0;
}
.service-card.service-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 26%, rgba(255,255,255,.72) 72%, rgba(255,255,255,.90) 100%);
  z-index: 0;
}
.service-card.service-bg > * {
  position: relative;
  z-index: 1;
}
.service-card.service-bg .service-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  margin-bottom: 0;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(10,24,52,.10);
}
.service-card.service-bg h3,
.service-card.service-bg p,
.service-card.service-bg ul,
.service-card.service-bg li,
.service-card.service-bg .service-link {
  position: relative;
}
.service-card.service-bg h3 {
  margin-top: 60px;
  color: var(--text);
}
.service-card.service-bg p {
  color: #445367;
}
.service-card.service-bg ul {
  border-top: 1px solid rgba(22,32,51,.10);
}
.service-card.service-bg li {
  color: #3e4d61;
}
.service-card.service-bg .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.service-card.service-bg .service-link span {
  transition: transform .2s ease;
}
.service-card.service-bg:hover {
  transform: translateY(-5px);
}
.service-card.service-bg:hover .service-link span {
  transform: translateX(4px);
}
.service-bg-maintenance { background-image: url('service-maintenance-bg.png'); background-position: 72% center; }
.service-bg-preservation { background-image: url('service-preservation-bg.png'); background-position: 78% center; }
.service-bg-turnover { background-image: url('service-turnover-bg.png'); background-position: 75% center; }
.service-bg-inspection { background-image: url('service-inspection-bg.png'); background-position: 78% center; }
.service-bg-exterior { background-image: url('service-exterior-bg.png'); background-position: 76% center; }
.service-bg-commercial { background-image: url('service-commercial-bg.png'); background-position: 76% center; }
@media (max-width: 680px) {
  .service-card.service-bg {
    min-height: 365px;
    background-position: center right;
  }
  .service-card.service-bg::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.50) 30%, rgba(255,255,255,.38) 55%, rgba(255,255,255,.74) 100%),
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.12) 100%);
  }
  .service-card.service-bg h3 {
    margin-top: 60px;
  }
}
