/* Tx Top Cleaning Services - Professional Brand Styles */

:root {
  --navy: #0a1628;
  --navy-light: #132337;
  --blue: #1e5bb8;
  --blue-bright: #2b7de9;
  --silver: #c0c8d4;
  --orange: #e85d04;
  --orange-dark: #d44d00;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray: #5a6577;
  --light-gray: #e8ecf1;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-hover: 0 12px 36px rgba(10, 22, 40, 0.14);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Icons - professional SVG style */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ========== HEADER ========== */
.header {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text span:first-child {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.logo-text span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 6px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links .btn {
  margin-left: 8px;
  padding: 10px 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 4px 8px;
}

/* Dropdown for Services */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-light);
  box-shadow: var(--shadow-hover);
  border-radius: 10px;
  padding: 10px 0;
  z-index: 100;
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  border-radius: 0;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 100px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.78) 45%, rgba(10,22,40,0.45) 100%),
              url('../images/hero-austin.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.25);
  color: #ffc090;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  border: 1px solid rgba(232, 93, 4, 0.35);
}
.hero h1 {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: #ff9a4a; }
.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 500px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}
.section-header p {
  font-size: 1.08rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ========== SERVICES GRID (homepage teaser) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.service-card-img .svc-icon {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.9);
}
.service-card-body {
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 16px;
}
.service-card .btn {
  align-self: flex-start;
  padding: 9px 18px;
  font-size: 0.88rem;
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.trust-box {
  background: var(--white);
  padding: 20px 16px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.trust-box .trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--orange);
}
.trust-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.trust-box p { font-size: 0.82rem; color: var(--gray); }

/* ========== CTA ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p {
  font-size: 1.08rem;
  opacity: 0.92;
  margin-bottom: 26px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT PAGE ========== */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.contact-info-card > p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item .icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(232, 93, 4, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item .icon-wrap svg { width: 20px; height: 20px; }
.contact-item h4 {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-bottom: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item a, .contact-item p {
  font-weight: 600;
  font-size: 1.02rem;
}
.contact-item a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 91, 184, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--silver);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand .logo img { height: 44px; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
  opacity: 0.85;
}
.footer h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-links a {
  display: block;
  margin-bottom: 9px;
  font-size: 0.92rem;
  opacity: 0.85;
}
.footer-links a:hover { color: var(--orange); opacity: 1; }
.footer-contact p { margin-bottom: 10px; font-size: 0.92rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(30,91,184,0.35));
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.08rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero-photo {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero-photo::before {
  background: linear-gradient(180deg, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.78) 100%);
}
.compare-note {
  margin: 28px 0 8px;
  padding: 22px 24px;
  background: #fff4ec;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
}
.compare-note h3 {
  color: var(--orange-dark);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.compare-note p {
  color: var(--navy);
  font-size: 1.02rem;
  margin: 0;
  font-weight: 500;
}
.breadcrumb {
  margin-bottom: 14px;
  font-size: 0.88rem;
  opacity: 0.8;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--orange); }

/* ========== SERVICE DETAIL ========== */
.service-detail { padding: 56px 0; }
.service-content { max-width: 860px; margin: 0 auto; }
.service-content.wide { max-width: 1100px; }
.service-content h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-content > p {
  margin-bottom: 16px;
  color: #3a4555;
  font-size: 1.05rem;
}
.includes-excludes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 26px 0 32px;
}
.includes-box, .excludes-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.includes-box h3 {
  color: #0d7a4f;
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.excludes-box h3 {
  color: #b53a2e;
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.includes-box ul li, .excludes-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 0.93rem;
  color: #3a4555;
}
.includes-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #0d7a4f;
  border-radius: 50%;
}
.excludes-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #b53a2e;
  border-radius: 50%;
}
.excludes-note {
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 8px;
  font-style: italic;
}
.compare-wrap { margin: 28px 0 40px; }
.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.compare-tabs button {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.compare-tabs button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-top: 14px;
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 14px 12px;
}
.compare-table th:first-child {
  text-align: left;
  background: var(--navy);
}
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 0.92rem;
  color: #3a4555;
  vertical-align: middle;
}
.compare-table tr:nth-child(even) td { background: #fafbfc; }
.compare-table td.task { text-align: left; font-weight: 500; }
.compare-table td.mark { text-align: center; font-size: 1.15rem; font-weight: 700; }
.compare-table td.yes { color: #0d7a4f; }
.compare-table td.no { color: #c0392b; }
.compare-table tbody tr[data-cat="extra"] { display: none; }
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 8px;
}
.stage-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
}
.stage-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid var(--light-gray);
}
.stage-card h3 {
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.stage-card p { font-size: 0.9rem; color: #3a4555; margin: 0; }
@media (max-width: 800px) {
  .stage-grid { grid-template-columns: 1fr; }
}

.service-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 20px;
}
.service-cta h3 { margin-bottom: 8px; font-size: 1.3rem; }
.service-cta p { margin-bottom: 18px; opacity: 0.9; color: var(--silver); }

/* ========== ABOUT PAGE ========== */
.about-page-content { max-width: 800px; margin: 0 auto; }
.about-page-content h2 { font-size: 1.6rem; margin: 28px 0 12px; }
.about-page-content p { color: #3a4555; margin-bottom: 14px; font-size: 1.05rem; }
.about-page-content ul { margin: 16px 0 24px 8px; }
.about-page-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #3a4555;
}
.about-page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .includes-excludes { grid-template-columns: 1fr; }
  .nav-item:hover .nav-dropdown { display: none; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 80px 0 70px; min-height: auto; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

.footer .logo img {
  height: 58px;
  width: auto;
}

/* ========== CAREERS ========== */
.careers-hero { min-height: 340px; }
.careers-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.path-section {
  background: #f6f7fa;
  padding: 72px 0;
}
.path-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}
.path-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e6ee;
  align-items: start;
}
.path-list li:last-child { border-bottom: none; }
.path-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.path-list h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.path-list p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1rem;
}
.apply-wrap { max-width: 760px; margin: 0 auto; }
.apply-intro {
  text-align: center;
  margin-bottom: 36px;
}
.apply-intro img {
  display: block;
  height: 140px;
  width: auto;
  margin: 0 auto 22px;
}
.apply-intro h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.apply-intro p { color: var(--gray); }
.apply-card { max-width: 760px; margin: 0 auto; }
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 8px;
}
.check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.service-feature-img {
  padding-top: 0;
  padding-bottom: 0;
}
.feature-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #0a1628;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(10,22,40,0.12);
}
.feature-img-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* ========== ABOUT PAGE SPLIT LAYOUT ========== */
.about-intro {
  text-align: left;
  margin-bottom: 36px;
}
.about-intro .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.about-intro .accent-bar {
  width: 4px;
  height: 36px;
  background: var(--orange, #e07a2f);
  border-radius: 2px;
}
.about-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
.about-intro .sub {
  color: #6b7685;
  margin-top: 6px;
  font-size: 1.02rem;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
}
.about-split.reverse {
  direction: rtl;
}
.about-split.reverse > * {
  direction: ltr;
}
.about-split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(16,24,40,0.10);
}
.about-split img.map {
  object-fit: contain;
  background: #fff;
  height: 420px;
}
.about-split h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}
.about-split p {
  color: #3a4555;
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.65;
}
.about-split ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.about-split ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #3a4555;
  line-height: 1.55;
}
.about-split ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange, #e07a2f);
}
.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.about-note {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
  color: #3a4555;
}
@media (max-width: 800px) {
  .about-split, .about-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 22px;
    margin: 36px 0;
  }
  .about-split img { height: 240px; }
}


/* ========== PHONE LAYOUT ========== */
html, body { max-width: 100%; overflow-x: hidden; }
.header { position: sticky; }
.nav { position: relative; }

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .logo img { height: 48px; }
  .logo-text span:first-child { font-size: 1rem; }
  .logo-text span:last-child { font-size: 0.58rem; }
  .nav { padding: 8px 0; gap: 8px; }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-links .btn { margin-left: 0; width: 100%; }
  .hero {
    min-height: 72vh;
    padding: 56px 0 48px;
    background-position: center;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero p { font-size: 1rem; }
  .page-hero-photo { min-height: 220px; padding: 40px 0 36px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 0.98rem; padding: 0 6px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card-img { height: 180px; }
  .cta-banner h2 { font-size: 1.55rem; }
  .cta-banner { padding: 44px 0; }
  .apply-intro img { height: 100px; }
  .path-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .path-num { font-size: 1.25rem; }
  .compare-table { min-width: 560px; }
  .includes-excludes { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr; justify-items: stretch; }
  .careers-hero-actions { flex-direction: column; }
  .careers-hero-actions .btn { width: 100%; }
  .footer .logo img { height: 48px; }
}

@media (max-width: 480px) {
  .hero { min-height: 68vh; }
  .hero h1 { font-size: 1.6rem; }
  .hero-badge { font-size: 0.75rem; }
  .btn { width: 100%; }
  .hero-buttons { width: 100%; }
}

/* Hide Netlify "Powered by" badge */
#netlify-badge,
.netlify-badge,
[class*="nf-badge"],
iframe[title*="Netlify"],
a[href*="www.netlify.com"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
