@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #173b57;
  --navy-dark: #102d43;
  --green: #4faf8f;
  --green-dark: #3d9276;
  --background: #f7f9f8;
  --white: #ffffff;
  --text: #17252e;
  --muted: #66757f;
  --border: #e2e9e6;
  --orange: #e9984a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1160px, 90%);
  margin: auto;
}

/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 249, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
}

.logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-button {
  background: var(--navy);
  color: white;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}

.nav-button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  padding: 90px 0 100px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 70px;
}

.hero-label,
.section-label {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -3px;
  color: var(--navy-dark);
}

.hero h1 span {
  display: block;
  color: var(--green-dark);
}

.hero-description {
  max-width: 590px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.problem-search {
  max-width: 680px;
  display: flex;
  padding: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(23, 59, 87, 0.08);
}

.problem-search input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
}

.problem-search button {
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  transition: 0.25s;
}

.problem-search button:hover {
  background: var(--navy-dark);
}

.popular-searches {
  margin-top: 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.quick-search {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 20px;
  transition: 0.2s;
}

.quick-search:hover {
  color: var(--navy);
  background: white;
  border-color: #cbd8d3;
}

/* ================= EMERGENCY ================= */

.emergency-card {
  position: relative;
  overflow: hidden;
  padding: 35px;
  border-radius: 22px;
  background: var(--navy);
  color: white;
  box-shadow: 0 25px 60px rgba(23, 59, 87, 0.18);
}

.emergency-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  background: rgba(79, 175, 143, 0.18);
  border-radius: 50%;
}

.emergency-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
}

.emergency-label {
  color: #a9d8c9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.emergency-card h2 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.emergency-card p:not(.emergency-label) {
  color: #cbd8df;
  font-size: 14px;
}

.emergency-card button {
  margin-top: 25px;
  border: none;
  background: transparent;
  color: white;
  font-weight: 700;
}

/* ================= GENERAL SECTIONS ================= */

.services-section,
.technicians-section,
.how-section,
.request-section {
  padding: 95px 0;
}

.services-section {
  background: white;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-heading h2,
.center-heading h2,
.request-info h2 {
  color: var(--navy-dark);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -1.5px;
}

.section-heading > p {
  max-width: 400px;
  color: var(--muted);
  font-size: 14px;
}

.loading {
  color: var(--muted);
}

/* ================= SERVICES ================= */

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

.service-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  transition: 0.25s ease;
}

.service-card:hover {
  background: #e3f2ec;
  border-color: var(--green);

  transform: translateY(-4px);

  box-shadow:
    0 14px 30px rgba(16, 45, 67, 0.10);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 12px;
  background: #edf7f3;
  font-size: 21px;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 17px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
}

/* ================= TECHNICIANS ================= */

.technicians-section {
  background: var(--background);
}

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

.technician-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  transition: 0.25s;
}

.technician-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(23, 59, 87, 0.08);
}

.technician-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.technician-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8f3ef;
  color: var(--green-dark);
  font-weight: 800;
}

.technician-name {
  color: var(--navy-dark);
  font-size: 16px;
  font-weight: 800;
}

.verified {
  margin-left: 4px;
  color: var(--green);
}

.technician-service {
  color: var(--muted);
  font-size: 12px;
}

.technician-info {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.available {
  color: var(--green-dark);
  font-weight: 700;
}

.unavailable {
  color: #9a6464;
  font-weight: 700;
}

.technician-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price strong {
  color: var(--navy-dark);
  font-size: 18px;
}

.price span {
  color: var(--muted);
  font-size: 11px;
}

.request-tech-button {
  border: none;
  border-radius: 9px;
  padding: 9px 13px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* ================= HOW IT WORKS ================= */

.how-section {
  background: var(--navy);
  color: white;
}

.center-heading {
  margin-bottom: 55px;
  text-align: center;
}

.center-heading h2 {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  padding: 10px 45px;
  text-align: center;
}

.step:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.step span {
  display: inline-block;
  margin-bottom: 22px;
  color: #7fc5ae;
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.step p {
  color: #b9c9d3;
  font-size: 13px;
}

/* ================= REQUEST ================= */

.request-section {
  background: white;
}

.request-wrapper {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.request-info > p:last-child {
  max-width: 390px;
  margin-top: 18px;
  color: var(--muted);
}

.request-form {
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--background);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: white;
  color: var(--text);
  transition: 0.2s;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79, 175, 143, 0.1);
}

.submit-button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.form-message {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
}

/* ================= FOOTER ================= */

.footer {
  padding: 45px 0;
  background: #0e2739;
  color: #b9c9d3;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 7px;
  color: white;
}

.footer-content p {
  font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .request-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 45px;
  }

  .services-grid,
  .technicians-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .request-wrapper {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  .navbar .nav-button {
    display: none;
  }

  .hero {
    padding: 60px 0 70px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .problem-search {
    flex-direction: column;
  }

  .problem-search button {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid,
  .technicians-grid,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 25px;
  }

  .step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .request-form {
    padding: 22px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}
/* ================= HOME PAGE EXTRAS ================= */

.nav-links .active {
  color: var(--navy);
}

.hero-side-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 59, 87, 0.08);
}

.card-label {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.hero-side-card h2 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: 28px;
}

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

.card-button {
  display: inline-block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s;
}

.card-button:hover {
  color: var(--green-dark);
}

.text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
}

.text-link:hover {
  color: var(--green-dark);
}

.home-cta {
  padding: 80px 0;
  background: #eef5f2;
}

.home-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-cta h2 {
  max-width: 720px;
  color: var(--navy-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.cta-button {
  flex-shrink: 0;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s;
}

.cta-button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #b9c9d3;
  font-size: 12px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 800px) {
  .home-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  /* =========================
   ICON STYLING
========================= */

.service-icon {
  color: var(--green-dark);
  font-size: 19px;
}

.technician-info i {
  width: 18px;
  color: var(--green-dark);
  font-size: 12px;
}

.technician-info .fa-star {
  color: #e5a443;
}

.verified {
  margin-left: 4px;
  color: var(--green);
  font-size: 13px;
}

.available i {
  color: var(--green);
  font-size: 7px;
}

.unavailable i {
  color: #9a6464;
  font-size: 7px;
}

.emergency-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #edf7f3;
  color: var(--green-dark);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #7fc5ae;
  font-size: 17px;
}

.text-link i,
.card-button i,
.cta-button i {
  margin-left: 7px;
  font-size: 11px;
}
}

/* =========================
   SERVICES PAGE
========================= */

.page-hero {
  padding: 90px 0 70px;
  background: var(--navy);
  color: white;
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -2.5px;
}

.page-hero > .container > p:last-child {
  max-width: 580px;
  color: #c6d4dc;
  font-size: 16px;
}

.page-hero .section-label {
  color: #80c8b0;
}

.services-page-section {
  padding: 95px 0;
  background: white;
}

.services-page-section .service-card {
  cursor: pointer;
}

.services-page-section .service-card::after {
  content: "View Fixers";
  display: inline-block;
  margin-top: 20px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-help {
  padding: 80px 0;
  background: #eef5f2;
}

.service-help-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.service-help h2 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1.5px;
}

.service-help p:last-child {
  max-width: 560px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .service-help-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 65px 0 55px;
  }
}

/* =========================
   FIND A FIXER PAGE
========================= */

.fixers-page-section {
  padding: 85px 0 100px;
  background: var(--background);
}

.fixer-filters {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 24px;
  margin-bottom: 55px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.filter-group {
  flex: 1;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
}

.filter-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: white;
  color: var(--text);
  outline: none;
}

.filter-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79, 175, 143, 0.1);
}

.clear-filter-button {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: white;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.clear-filter-button:hover {
  color: var(--navy);
  border-color: #c5d4ce;
}

.clear-filter-button i {
  margin-right: 6px;
}

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.results-header h2 {
  color: var(--navy-dark);
  font-size: 32px;
}

#fixerCount {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 700px) {
  .fixer-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .results-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Make technician specialty more visible */
.technician-service {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
}

/* =========================
   TECHNICIAN PROFILE PAGE
========================= */

.profile-page {
  padding: 60px 0 100px;
  background: var(--background);
  min-height: 75vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.back-link:hover {
  color: var(--navy);
}

.profile-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
}

.profile-main {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 280px;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8f3ef;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 800;
}

.profile-details h1 {
  color: var(--navy-dark);
  font-size: 38px;
  line-height: 1.2;
}

.profile-specialty {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.profile-meta i {
  margin-right: 6px;
}

.profile-meta .fa-star {
  color: #e5a443;
}

.profile-about {
  max-width: 700px;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.profile-about h2 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: 22px;
}

.profile-about p {
  color: var(--muted);
}

.profile-action-card {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 230px;
  padding: 25px;
  border-radius: 16px;
  background: #eef5f2;
}

.profile-action-card > p {
  color: var(--muted);
  font-size: 12px;
}

.profile-action-card h2 {
  margin: 5px 0 20px;
  color: var(--navy-dark);
  font-size: 30px;
}

.profile-action-card .cta-button {
  display: block;
  text-align: center;
}

@media (max-width: 850px) {
  .profile-card {
    padding: 28px;
  }

  .profile-main {
    align-items: flex-start;
    padding-right: 0;
  }

  .profile-action-card {
    position: static;
    width: 100%;
    margin-top: 35px;
  }
}

@media (max-width: 600px) {
  .profile-main {
    flex-direction: column;
  }

  .profile-details h1 {
    font-size: 30px;
  }

  .profile-meta {
    flex-direction: column;
    gap: 10px;
  }
}
/* =========================
   PROFILE PRICE + REVIEWS
   Add this at the END of style.css
========================= */

.profile-price {
  color: var(--navy-dark);
  font-weight: 800;
}

.profile-reviews {
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid var(--border);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.reviews-heading h2 {
  color: var(--navy-dark);
  font-size: 24px;
}

.review-score {
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 800;
}

.review-score i,
.review-stars i {
  color: #e5a443;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ef;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.review-card h3 {
  color: var(--navy-dark);
  font-size: 14px;
}

.review-stars {
  font-size: 10px;
}

.review-card p {
  color: var(--muted);
  font-size: 13px;
}

.profile-request-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding: 25px;
  border-radius: 16px;
  background: #eef5f2;
}

.profile-request-area p {
  color: var(--muted);
  font-size: 12px;
}

.profile-request-area h2 {
  color: var(--navy-dark);
  font-size: 22px;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .profile-request-area {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* =========================
   REQUEST SERVICE PAGE
========================= */

.request-page {
  min-height: 75vh;
  padding: 85px 0 100px;
  background: var(--background);
}

.request-page-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}


/* LEFT SIDE */

.request-page-info {
  padding-top: 25px;
}

.request-page-info h1 {
  max-width: 480px;
  color: var(--navy-dark);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.request-intro {
  max-width: 480px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.request-benefits {
  display: grid;
  gap: 25px;
  margin-top: 45px;
}

.request-benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.request-benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 11px;

  background: #e8f3ef;
  color: var(--green-dark);
}

.request-benefit h3 {
  margin-bottom: 4px;
  color: var(--navy-dark);
  font-size: 14px;
}

.request-benefit p {
  color: var(--muted);
  font-size: 12px;
}


/* FORM CARD */

.request-form-card {
  padding: 38px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: white;

  box-shadow:
    0 18px 45px rgba(23, 59, 87, 0.06);
}

.request-form-heading {
  margin-bottom: 30px;
}

.request-form-heading h2 {
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-size: 28px;
}

.request-form-heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
}


/* FORM */

.request-form-card .form-group {
  margin-bottom: 19px;
}

.request-form-card .form-group label {
  display: block;
  margin-bottom: 7px;

  color: var(--navy-dark);

  font-size: 12px;
  font-weight: 700;
}

.request-form-card input,
.request-form-card select,
.request-form-card textarea {
  width: 100%;
  padding: 13px 14px;

  border: 1px solid var(--border);
  border-radius: 9px;

  outline: none;

  background: white;
  color: var(--text);

  transition: 0.2s;
}

.request-form-card textarea {
  resize: vertical;
}

.request-form-card input:focus,
.request-form-card select:focus,
.request-form-card textarea:focus {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px rgba(79, 175, 143, 0.1);
}

.request-form-card .submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 14px;

  border: none;
  border-radius: 10px;

  background: var(--navy);
  color: white;

  font-weight: 800;

  transition: 0.25s;
}

.request-form-card .submit-button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.form-message {
  min-height: 20px;
  margin-top: 14px;

  text-align: center;

  font-size: 13px;
  font-weight: 700;
}

.form-message.success {
  color: var(--green-dark);
}

.form-message.error {
  color: #a44f4f;
}


/* RESPONSIVE */

@media (max-width: 850px) {

  .request-page-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 600px) {

  .request-page {
    padding: 60px 0 75px;
  }

  .request-form-card {
    padding: 24px;
  }

  .request-page-info h1 {
    font-size: 40px;
  }

}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  padding: 105px 0 95px;
  text-align: center;
  background: var(--background);
}

.about-hero-content {
  max-width: 820px;
  margin: auto;
}

.about-hero h1 {
  margin-top: 12px;
  color: var(--navy-dark);
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.about-hero h1 span {
  color: var(--green-dark);
}

.about-hero-text {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}


/* STORY */

.about-story {
  padding: 95px 0;
  background: white;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.about-story-content h2 {
  max-width: 580px;
  margin: 10px 0 25px;
  color: var(--navy-dark);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.about-story-content > p:not(.section-label) {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-highlight-card {
  padding: 42px;
  border-radius: 22px;
  background: var(--navy-dark);
  color: white;
}

.about-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
  font-size: 19px;
}

.about-highlight-card > p {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.about-highlight-card h3 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1.2;
}

.about-highlight-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.7;
}


/* VALUES */

.about-values {
  padding: 95px 0;
  background: var(--background);
}

.about-section-heading {
  max-width: 600px;
  margin-bottom: 45px;
}

.about-section-heading h2 {
  margin-top: 8px;
  color: var(--navy-dark);
  font-size: 36px;
  line-height: 1.2;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.about-value-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 11px;
  background: #e8f3ef;
  color: var(--green-dark);
}

.about-value-card h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 17px;
}

.about-value-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* PROCESS */

.about-process {
  padding: 95px 0;
  background: white;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-process-item {
  position: relative;
  padding: 28px;
  border-top: 2px solid var(--border);
}

.about-process-item > span {
  position: absolute;
  top: 18px;
  right: 10px;
  color: #d7dfdc;
  font-size: 25px;
  font-weight: 800;
}

.about-process-item > i {
  margin-bottom: 25px;
  color: var(--green-dark);
  font-size: 22px;
}

.about-process-item h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 16px;
}

.about-process-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}


/* CTA */

.about-cta {
  padding: 20px 0 95px;
  background: white;
}

.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 40px;

  border-radius: 20px;
  background: #eef5f2;
}

.about-cta-box h2 {
  margin-top: 7px;
  color: var(--navy-dark);
  font-size: 28px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .about-hero {
    padding: 70px 0;
  }

  .about-hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .about-story,
  .about-values,
  .about-process {
    padding: 70px 0;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  min-height: 75vh;
  padding: 90px 0 105px;
  background: var(--background);
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}


/* CONTACT INFO */

.contact-info {
  padding-top: 25px;
}


.contact-info h1 {
  max-width: 520px;
  margin-top: 10px;

  color: var(--navy-dark);

  font-size: clamp(45px, 6vw, 65px);
  line-height: 1.05;
  letter-spacing: -3px;
}


.contact-info h1 span {
  color: var(--green-dark);
}


.contact-intro {
  max-width: 480px;

  margin-top: 22px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}


/* CONTACT DETAILS */

.contact-details {
  display: grid;
  gap: 24px;

  margin-top: 45px;
}


.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
}


.contact-detail-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 11px;

  background: #e8f3ef;
  color: var(--green-dark);
}


.contact-detail p {
  margin-bottom: 3px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.3px;
}


.contact-detail h3 {
  color: var(--navy-dark);

  font-size: 14px;
}


/* CONTACT FORM */

.contact-form-card {
  padding: 38px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: white;

  box-shadow:
    0 18px 45px rgba(23, 59, 87, 0.06);
}


.contact-form-heading {
  margin-bottom: 30px;
}


.contact-form-heading h2 {
  margin-bottom: 7px;

  color: var(--navy-dark);

  font-size: 28px;
}


.contact-form-heading > p:last-child {
  color: var(--muted);

  font-size: 13px;
}


.contact-form-card .form-group {
  margin-bottom: 19px;
}


.contact-form-card label {
  display: block;

  margin-bottom: 7px;

  color: var(--navy-dark);

  font-size: 12px;
  font-weight: 700;
}


.contact-form-card input,
.contact-form-card textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--border);
  border-radius: 9px;

  outline: none;

  background: white;

  color: var(--text);

  transition: 0.2s;
}


.contact-form-card textarea {
  resize: vertical;
}


.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px rgba(79, 175, 143, 0.1);
}


.contact-form-card .submit-button {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 14px;

  border: none;
  border-radius: 10px;

  background: var(--navy);

  color: white;

  font-weight: 800;

  transition: 0.25s;
}


.contact-form-card .submit-button:hover {
  background: var(--navy-dark);

  transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 850px) {

  .contact-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


@media (max-width: 600px) {

  .contact-page {
    padding: 60px 0 75px;
  }


  .contact-form-card {
    padding: 24px;
  }


  .contact-info h1 {
    font-size: 44px;

    letter-spacing: -2px;
  }

}
/* =========================
   WEBSITE INTRO
========================= */

.site-intro {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--navy-dark);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}


/* Intro content */

.intro-content {
  text-align: center;
  transform: translateY(0);

  transition: transform 0.7s ease;
}


/* FIXER CO. */

.intro-brand {
  min-height: 75px;

  color: white;

  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;

  letter-spacing: 4px;
  line-height: 1;

  white-space: nowrap;
}


/* CO. color */

.intro-brand .intro-green {
  color: var(--green);
}


/* Typing cursor */

.intro-cursor {
  display: inline-block;

  width: 3px;
  height: 0.9em;

  margin-left: 7px;

  background: var(--green);

  vertical-align: -5px;

  animation: introBlink 0.7s infinite;
}


@keyframes introBlink {

  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }

}


/* Tagline */

.intro-tagline {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 2px;

  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


/* Show tagline */

.intro-tagline.show {
  opacity: 1;
  transform: translateY(0);
}


/* Hide cursor after typing */

.intro-cursor.finished {
  animation: none;
  opacity: 0;
}


/* Hide entire intro */

.site-intro.hide {
  opacity: 0;
  visibility: hidden;
}


.site-intro.hide .intro-content {
  transform: translateY(-15px);
}


/* Mobile */

@media (max-width: 600px) {

  .intro-brand {
    min-height: 55px;

    font-size: 38px;

    letter-spacing: 2px;
  }

  .intro-tagline {
    font-size: 11px;
    letter-spacing: 1.3px;
  }

}


/* =========================================================
   FINAL POLISH + RESPONSIVE FIXES
   fixer.co
========================================================= */

/* ---------- NAVBAR ACTIONS ---------- */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.become-fixer-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1.5px solid var(--green-dark);
  border-radius: 9px;
  background: transparent;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.25s ease;
}

.become-fixer-nav i {
  font-size: 11px;
}

.become-fixer-nav:hover,
.become-fixer-nav.active {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
}

.nav-button.active {
  background: var(--navy-dark);
}

/* Keep navbar spacing stable on medium screens */

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .become-fixer-nav {
    padding: 9px 11px;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .nav-content {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .nav-content {
    height: 68px;
  }

  .logo {
    font-size: 20px;
  }

  .navbar .nav-button {
    display: none;
  }

  .become-fixer-nav {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .become-fixer-nav {
    padding: 8px;
  }

  .become-fixer-nav i {
    display: none;
  }
}


/* ---------- GLOBAL BUTTON POLISH ---------- */

.nav-button,
.cta-button,
.submit-button,
.request-tech-button,
.problem-search button,
.clear-filter-button,
.become-fixer-nav {
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.request-tech-button:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.submit-button:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}


/* ---------- ACCESSIBILITY / FOCUS ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(79, 175, 143, 0.22);
  outline-offset: 3px;
}


/* ---------- ICON STYLING ---------- */
/* These rules were previously nested inside a mobile media query.
   They are repeated globally so desktop gets the same styling. */

.service-icon {
  color: var(--green-dark);
  font-size: 19px;
}

.technician-info i {
  width: 18px;
  color: var(--green-dark);
  font-size: 12px;
}

.technician-info .fa-star {
  color: #e5a443;
}

.verified {
  margin-left: 4px;
  color: var(--green);
  font-size: 13px;
}

.available i {
  color: var(--green);
  font-size: 7px;
}

.unavailable i {
  color: #9a6464;
  font-size: 7px;
}

.emergency-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #edf7f3;
  color: var(--green-dark);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #7fc5ae;
  font-size: 17px;
}

.text-link i,
.card-button i,
.cta-button i {
  margin-left: 7px;
  font-size: 11px;
}


/* ---------- CARDS ---------- */

.service-card,
.technician-card,
.request-form-card,
.contact-form-card,
.profile-card,
.about-value-card {
  box-shadow: 0 8px 24px rgba(23, 59, 87, 0.035);
}

.service-card,
.technician-card {
  height: 100%;
}

.service-card {
  cursor: pointer;
}

.technician-card {
  display: flex;
  flex-direction: column;
}

.technician-footer {
  margin-top: auto;
}


/* ---------- TECHNICIAN PROFILE FIX ---------- */

.profile-main {
  padding-right: 0;
}

.profile-about {
  max-width: 100%;
}

.profile-card {
  overflow: hidden;
}

.profile-details {
  min-width: 0;
}

.profile-details h1 {
  overflow-wrap: anywhere;
}

.profile-request-area .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}


/* ---------- FORMS ---------- */

.form-group input,
.form-group select,
.form-group textarea,
.request-form-card input,
.request-form-card select,
.request-form-card textarea,
.contact-form-card input,
.contact-form-card textarea {
  min-height: 46px;
}

textarea {
  line-height: 1.6;
}

.form-message {
  min-height: 22px;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.form-message.success {
  color: var(--green-dark);
}

.form-message.error {
  color: #a44f4f;
}


/* ---------- FOOTER ---------- */

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}


/* ---------- GENERAL RESPONSIVE POLISH ---------- */

@media (max-width: 900px) {
  .hero {
    padding: 70px 0 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .request-wrapper,
  .request-page-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-section,
  .technicians-section,
  .how-section,
  .request-section,
  .services-page-section,
  .fixers-page-section,
  .about-story,
  .about-values,
  .about-process {
    padding: 70px 0;
  }

  .services-grid,
  .technicians-grid,
  .reviews-grid,
  .about-values-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .results-header,
  .service-help-content,
  .home-cta-content,
  .about-cta-box,
  .profile-request-area {
    align-items: flex-start;
    flex-direction: column;
  }

  .fixer-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .clear-filter-button {
    width: 100%;
  }

  .profile-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-request-area .cta-button {
    width: 100%;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  .hero {
    padding: 55px 0 65px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 46px);
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;
  }

  .problem-search {
    flex-direction: column;
  }

  .problem-search button {
    width: 100%;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .page-hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .request-form,
  .request-form-card,
  .contact-form-card {
    padding: 22px;
  }

  .profile-card {
    padding: 24px;
  }

  .profile-avatar {
    width: 74px;
    height: 74px;
    font-size: 22px;
  }

  .profile-details h1 {
    font-size: 29px;
  }

  .profile-meta {
    flex-direction: column;
    gap: 10px;
  }

  .about-hero {
    padding: 65px 0;
  }

  .about-hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .about-highlight-card {
    padding: 28px;
  }

  .footer {
    padding: 38px 0;
  }

  .footer-links {
    gap: 14px 18px;
  }
}


/* ---------- BECOME A FIXER FORM ---------- */

#fixerApplicationForm .submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

#fixerApplicationMessage {
  min-height: 22px;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

#fixerApplicationMessage.success {
  color: var(--green-dark);
}

#fixerApplicationMessage.error {
  color: #a44f4f;
}


/* ---------- MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   BECOME A FIXER PAGE
========================================================= */

.fixer-join-hero {
  padding: 85px 0;
  background: var(--background);
}

.fixer-join-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
}

.fixer-join-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--navy-dark);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.fixer-join-copy h1 span {
  color: var(--green-dark);
}

.fixer-join-copy > p:not(.section-label) {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.fixer-join-copy .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* =========================
   FEE CARD
========================= */

.fixer-fee-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 45px rgba(23, 59, 87, 0.08);
}

.fixer-fee-label {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.fixer-fee-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.fixer-fee-price strong {
  color: var(--navy-dark);
  font-size: 54px;
  line-height: 1;
}

.fixer-fee-price span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.fixer-fee-card > p:not(.fixer-fee-label) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.fixer-fee-line {
  height: 1px;
  margin: 24px 0;
  background: var(--border);
}

.fixer-fee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}


/* =========================
   HOW IT WORKS
========================= */

.fixer-guide {
  padding: 95px 0;
  background: white;
}

.fixer-section-heading {
  max-width: 680px;
  margin-bottom: 45px;
}

.fixer-section-heading h2 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 38px;
  letter-spacing: -1.5px;
}

.fixer-section-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.fixer-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fixer-guide-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  transition: 0.25s ease;
}

.fixer-guide-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(23, 59, 87, 0.07);
}

.fixer-guide-item > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.fixer-guide-item > i {
  margin-left: 7px;
  color: var(--green-dark);
}

.fixer-guide-item h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 18px;
}

.fixer-guide-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================
   PROFESSIONAL POLICY
========================= */

.fixer-policy {
  padding: 95px 0;
  background: var(--background);
}

.fixer-policy-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.fixer-policy-intro h2 {
  margin: 10px 0 18px;
  color: var(--navy-dark);
  font-size: 38px;
  letter-spacing: -1.5px;
}

.fixer-policy-intro > p:last-child {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.fixer-policy-list {
  display: grid;
  gap: 16px;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.policy-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 11px;
  background: #e8f3ef;
  color: var(--green-dark);
}

.policy-item h3 {
  margin-bottom: 6px;
  color: var(--navy-dark);
  font-size: 15px;
}

.policy-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* IMPORTANT / WARNING POLICY */

.policy-warning {
  border-color: #e7c6c6;
  background: #fff7f7;
}

.policy-warning .policy-icon {
  background: #fdeaea;
  color: #b64b4b;
}

.policy-warning h3 {
  color: #a33f3f;
}

.policy-warning p {
  color: #7d5151;
}

.policy-warning strong {
  color: #b33f3f;
}


/* =========================
   APPLICATION SECTION
========================= */

.fixer-application-section {
  padding: 95px 0 110px;
  background: white;
}

.fixer-application-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.fixer-application-copy {
  padding-top: 25px;
}

.fixer-application-copy h2 {
  margin: 10px 0 15px;
  color: var(--navy-dark);
  font-size: 40px;
  letter-spacing: -1.5px;
}

.fixer-application-copy > p:not(.section-label) {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.application-status-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 13px;
  background: #eef5f2;
}

.application-status-info > i {
  margin-top: 3px;
  color: var(--green-dark);
}

.application-status-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-dark);
  font-size: 13px;
}

.application-status-info p {
  color: var(--muted);
  font-size: 12px;
}


/* =========================
   APPLICATION FORM CARD
========================= */

.fixer-application-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--background);
  box-shadow: 0 18px 45px rgba(23, 59, 87, 0.06);
}

.fixer-application-card .form-group {
  margin-bottom: 19px;
}

.fixer-application-card label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
}

.fixer-application-card input,
.fixer-application-card select,
.fixer-application-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: white;
  color: var(--text);
  transition: 0.2s;
}

.fixer-application-card input:focus,
.fixer-application-card select:focus,
.fixer-application-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79, 175, 143, 0.1);
}

.fixer-application-card textarea {
  resize: vertical;
}


/* =========================
   POLICY CHECKBOX
========================= */

.policy-agreement {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
  padding: 15px;
  border: 1px solid #e7c6c6;
  border-radius: 11px;
  background: #fff8f8;
  color: #6f4b4b !important;
  font-size: 12px !important;
  line-height: 1.6;
}

.policy-agreement input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: #b64b4b;
}

.policy-agreement strong {
  color: #a33f3f;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .fixer-join-hero-grid,
  .fixer-policy-grid,
  .fixer-application-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .fixer-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .fixer-join-hero,
  .fixer-guide,
  .fixer-policy,
  .fixer-application-section {
    padding: 65px 0;
  }

  .fixer-join-copy h1 {
    font-size: 42px;
  }

  .fixer-guide-grid {
    grid-template-columns: 1fr;
  }

  .fixer-fee-card,
  .fixer-application-card {
    padding: 24px;
  }

  .fixer-section-heading h2,
  .fixer-policy-intro h2,
  .fixer-application-copy h2 {
    font-size: 31px;
  }

}
/* =========================================================
   UNKNOWN SERVICE POPUP
========================================================= */

.service-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(16, 45, 67, 0.55);
  backdrop-filter: blur(5px);
}

.service-popup {
  position: relative;

  width: min(460px, 100%);

  padding: 38px;

  border-radius: 20px;

  background: white;

  text-align: center;

  box-shadow:
    0 25px 70px rgba(16, 45, 67, 0.22);

  animation:
    servicePopupShow 0.25s ease;
}

@keyframes servicePopupShow {

  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}

.service-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: none;
  border-radius: 50%;

  background: #f2f5f4;

  color: var(--muted);

  font-size: 15px;

  cursor: pointer;
}

.service-popup-close:hover {
  background: #e9efec;
  color: var(--navy);
}

.service-popup-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin: 0 auto 20px;

  border-radius: 16px;

  background: #edf7f3;

  color: var(--green-dark);

  font-size: 23px;
}

.service-popup h2 {
  margin-bottom: 12px;

  color: var(--navy-dark);

  font-size: 24px;
  line-height: 1.3;
}

.service-popup > p {
  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

.service-popup-help {
  margin-top: 10px;
}

.service-popup-actions {
  display: flex;
  gap: 10px;

  margin-top: 28px;
}

.popup-try-again,
.popup-request-service {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 46px;

  padding: 12px 16px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 800;

  transition: 0.25s ease;
}

.popup-try-again {
  border: 1px solid var(--border);

  background: white;

  color: var(--navy);

  cursor: pointer;
}

.popup-try-again:hover {
  border-color: var(--green);
  background: #f7fbf9;
  transform: translateY(-1px);
}

.popup-request-service {
  border: none;

  background: var(--navy);

  color: white;

  text-decoration: none;
}

.popup-request-service:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.popup-request-service i {
  font-size: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

  .service-popup {
    padding: 32px 22px 24px;
  }

  .service-popup h2 {
    font-size: 21px;
  }

  .service-popup-actions {
    flex-direction: column;
  }

  .popup-try-again,
  .popup-request-service {
    width: 100%;
  }

}
/* =========================================================
   QUICK SERVICE CATEGORIES - OVAL STYLE
========================================================= */

.search-categories {
  margin-top: 22px;
}

.categories-label {
  margin: 0 0 11px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;
}


/* Categories Container */

.search-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}


/* Oval Category */

.search-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 40px;

  padding: 6px 15px 6px 7px;

  border: 1px solid var(--border);

  /* Oval Shape */
  border-radius: 999px;

  background: #ffffff;

  color: var(--navy);

  font-family: inherit;
  font-size: 11px;
  font-weight: 750;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


/* Round Icon */

.search-category-icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #edf7f3;

  color: var(--green-dark);

  font-size: 11px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


/* Hover */

.search-category:hover {
  transform: translateY(-2px);

  border-color: var(--green);

  background: #f8fcfa;

  box-shadow:
    0 7px 18px rgba(16, 45, 67, 0.08);
}

.search-category:hover .search-category-icon {
  background: var(--green);

  color: #ffffff;

  transform: scale(1.05);
}


/* Click */

.search-category:active {
  transform: translateY(0);
}


/* Keyboard */

.search-category:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .search-categories {
    margin-top: 18px;
  }

  .categories-label {
    font-size: 11px;
  }

  .search-categories-list {
    gap: 7px;
  }

  .search-category {
    min-height: 38px;

    padding: 5px 12px 5px 6px;

    font-size: 10px;
  }

  .search-category-icon {
    width: 27px;
    height: 27px;

    font-size: 10px;
  }

}
/* =========================================================
   HOW IT WORKS - LIGHT VERSION
========================================================= */

.how-section {
  background: #e7f1ed;
  color: var(--navy-dark);
}


/* Heading */

.how-section .center-heading h2 {
  color: var(--navy-dark);
}

.how-section .section-label {
  color: var(--green-dark);
}


/* Step Icons */

.how-section .step-icon {
  border: 1px solid #b9d8cc;
  background: #d6e9e2;
  color: var(--green-dark);
}

/* Step Number */

.how-section .step > span {
  color: var(--green-dark);
}


/* Step Title */

.how-section .step h3 {
  color: var(--navy-dark);
}


/* Step Description */

.how-section .step p {
  color: var(--muted);
}


/* Lines Between Steps */

.how-section .step:not(:last-child) {
  border-right: 1px solid rgba(16, 45, 67, 0.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .how-section .step:not(:last-child) {
    border-right: none;

    border-bottom:
      1px solid rgba(16, 45, 67, 0.10);
  }

}
.reveal {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* =========================================================
   DISTINCTIVE CARD / ELEMENT MOTION
   Adds staggered entrance + polished hover interactions.
========================================================= */

.motion-item {
  opacity: 0;
  transform: translateY(34px) scale(0.965);
  filter: blur(5px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform, opacity;
}

.motion-item.motion-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Slight alternating entrance direction for card rows */
.services-grid .motion-item:nth-child(even),
.technicians-grid .motion-item:nth-child(even),
.search-categories-list .motion-item:nth-child(even) {
  transform: translateY(34px) translateX(12px) scale(0.965);
}

.services-grid .motion-item:nth-child(odd),
.technicians-grid .motion-item:nth-child(odd),
.search-categories-list .motion-item:nth-child(odd) {
  transform: translateY(34px) translateX(-12px) scale(0.965);
}

.services-grid .motion-item.motion-show,
.technicians-grid .motion-item.motion-show,
.search-categories-list .motion-item.motion-show {
  transform: translateY(0) translateX(0) scale(1);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(-7deg) scale(1.1);
}

.service-icon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    color 0.25s ease;
}

/* Technician cards: subtle premium lift */
.technician-card {
  position: relative;
  overflow: hidden;
}

.technician-card:hover {
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 20px 42px rgba(23, 59, 87, 0.11);
}

.technician-avatar {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.technician-card:hover .technician-avatar {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(79, 175, 143, 0.18);
}

.technician-card .request-tech-button i,
.cta-button i,
.card-button i,
.text-link i {
  transition: transform 0.25s ease;
}

.technician-card:hover .request-tech-button i,
.cta-button:hover i,
.card-button:hover i,
.text-link:hover i {
  transform: translateX(4px);
}

/* How it works: each step enters separately and icons respond */
.step {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease;
}

.step:hover {
  transform: translateY(-7px);
}

.step-icon {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.step:hover .step-icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.1);
  box-shadow: 0 10px 22px rgba(23, 59, 87, 0.10);
}

/* Search category pills */
.search-category {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.search-category:hover {
  transform: translateY(-3px) scale(1.035);
}

.search-category-icon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    color 0.25s ease;
}

.search-category:hover .search-category-icon {
  transform: rotate(-9deg) scale(1.08);
}

/* Emergency / side card */
.hero-side-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-side-card:hover {
  transform: translateY(-7px) rotate(0.3deg);
  border-color: rgba(79, 175, 143, 0.45);
  box-shadow: 0 25px 55px rgba(23, 59, 87, 0.12);
}

.hero-side-card:hover .emergency-card-icon {
  transform: rotate(-8deg) scale(1.1);
}

.emergency-card-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .motion-item,
  .motion-item.motion-show,
  .service-card,
  .technician-card,
  .step,
  .search-category,
  .hero-side-card,
  .service-icon,
  .technician-avatar,
  .step-icon,
  .search-category-icon,
  .emergency-card-icon {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .service-card::before {
    display: none;
  }
}
/* =========================================
   FIXER.CO - GLOBAL INTERACTIONS
========================================= */


/* =========================================
   PAGE TRANSITION
========================================= */

body {
  opacity: 0;
  transition:
    opacity 0.28s ease;
}

body.page-ready {
  opacity: 1;
}

body.page-leaving {
  opacity: 0;
  pointer-events: none;
}


/* =========================================
   NAVBAR ENTRANCE
========================================= */

.navbar {
  opacity: 0;
  transform: translateY(-14px);

  transition:
    opacity 0.55s ease,
    transform 0.55s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
}

.navbar.navbar-show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   GENERAL SCROLL MOTION
========================================= */

.motion-item {
  --motion-delay: 0ms;

  opacity: 0;

  transform:
    translateY(32px)
    scale(0.985);

  filter: blur(3px);

  transition:
    opacity 0.7s ease
      var(--motion-delay),

    transform 0.75s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      )
      var(--motion-delay),

    filter 0.65s ease
      var(--motion-delay);
}


/* LEFT */

.motion-item.motion-from-left {
  transform:
    translateX(-24px)
    translateY(18px)
    scale(0.985);
}


/* RIGHT */

.motion-item.motion-from-right {
  transform:
    translateX(24px)
    translateY(18px)
    scale(0.985);
}


/* VISIBLE */

.motion-item.motion-show {
  opacity: 1;

  transform:
    translateX(0)
    translateY(0)
    scale(1);

  filter: blur(0);
}


/* =========================================
   SERVICE CARDS
========================================= */

.service-card {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}


.service-card:hover {
  transform:
    translateY(-8px)
    scale(1.015);

  box-shadow:
    0 20px 45px
    rgba(
      16,
      45,
      67,
      0.12
    );
}


/* SERVICE ICON */

.service-card .service-icon {
  transition:
    transform 0.4s
      cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
      );
}


.service-card:hover
.service-icon {
  transform:
    rotate(-7deg)
    scale(1.12);
}


/* =========================================
   FIXER CARDS
========================================= */

.technician-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.technician-card:hover {
  transform:
    translateY(-8px)
    scale(1.01);

  box-shadow:
    0 20px 45px
    rgba(
      16,
      45,
      67,
      0.11
    );
}


/* AVATAR */

.technician-avatar,
.profile-avatar {
  transition:
    transform 0.4s
      cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
      ),
    box-shadow 0.35s ease;
}


.technician-card:hover
.technician-avatar {
  transform:
    rotate(-5deg)
    scale(1.08);
}


/* =========================================
   QUICK CATEGORY BUTTONS
========================================= */

.search-category {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}


.search-category:hover {
  transform:
    translateY(-4px)
    scale(1.025);

  box-shadow:
    0 10px 24px
    rgba(
      16,
      45,
      67,
      0.09
    );
}


.search-category-icon {
  transition:
    transform 0.35s
      cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
      );
}


.search-category:hover
.search-category-icon {
  transform:
    scale(1.15)
    rotate(-6deg);
}


/* =========================================
   HOW IT WORKS
========================================= */

.step {
  transition:
    transform 0.35s ease;
}


.step:hover {
  transform:
    translateY(-7px);
}


.step-icon {
  transition:
    transform 0.4s
      cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
      ),
    box-shadow 0.35s ease;
}


.step:hover
.step-icon {
  transform:
    translateY(-3px)
    rotate(-5deg)
    scale(1.1);

  box-shadow:
    0 12px 25px
    rgba(
      79,
      175,
      143,
      0.18
    );
}


/* =========================================
   PROFILE
========================================= */

.profile-main {
  transition:
    transform 0.35s ease;
}


.profile-main:hover
.profile-avatar {
  transform:
    scale(1.06)
    rotate(-3deg);

  box-shadow:
    0 12px 30px
    rgba(
      16,
      45,
      67,
      0.12
    );
}


.profile-about,
.profile-request-area {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.profile-about:hover,
.profile-request-area:hover {
  transform:
    translateY(-4px);
}


/* =========================================
   REVIEWS
========================================= */

.review-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.review-card:hover {
  transform:
    translateY(-7px)
    rotate(-0.4deg);

  box-shadow:
    0 18px 38px
    rgba(
      16,
      45,
      67,
      0.10
    );
}


.review-avatar {
  transition:
    transform 0.35s
      cubic-bezier(
        0.34,
        1.56,
        0.64,
        1
      );
}


.review-card:hover
.review-avatar {
  transform:
    scale(1.1);
}


/* =========================================
   FORMS
========================================= */

.form-motion-item {
  opacity: 0;

  transform:
    translateY(18px);

  transition:
    opacity 0.55s ease
      var(--form-delay),

    transform 0.55s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      )
      var(--form-delay);
}


.form-visible
.form-motion-item {
  opacity: 1;
  transform: translateY(0);
}


/* FORM FIELD */

.form-group,
.input-group {
  transition:
    transform 0.25s ease;
}


.form-group.field-active,
.input-group.field-active {
  transform:
    translateY(-2px);
}


/* INPUTS */

input,
textarea,
select {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}


input:focus,
textarea:focus,
select:focus {
  transform:
    translateY(-1px);

  box-shadow:
    0 0 0 4px
    rgba(
      79,
      175,
      143,
      0.10
    );
}


/* =========================================
   CONTACT / REQUEST / FIXER FORMS
========================================= */

#requestForm,
#contactForm,
#fixerApplicationForm {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


#requestForm:hover,
#contactForm:hover,
#fixerApplicationForm:hover {
  transform:
    translateY(-3px);
}


/* =========================================
   ABOUT PAGE CARDS
========================================= */

.about-card,
.value-card,
.values-card,
.mission-card,
.info-card,
.benefit-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.about-card:hover,
.value-card:hover,
.values-card:hover,
.mission-card:hover,
.info-card:hover,
.benefit-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 18px 38px
    rgba(
      16,
      45,
      67,
      0.09
    );
}


/* =========================================
   BUTTON INTERACTION
========================================= */

button,
.nav-button,
.cta-button,
.request-tech-button,
.become-fixer-nav {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


button:hover,
.nav-button:hover,
.cta-button:hover,
.request-tech-button:hover {
  transform:
    translateY(-2px);
}


.button-clicked {
  animation:
    fixerButtonClick
    0.32s ease;
}


@keyframes fixerButtonClick {

  0% {
    transform:
      scale(1);
  }

  45% {
    transform:
      scale(0.95);
  }

  100% {
    transform:
      scale(1);
  }

}


/* =========================================
   CTA
========================================= */

.home-cta {
  overflow: hidden;
}


.home-cta h2,
.home-cta p {
  transition:
    transform 0.35s ease;
}


.home-cta:hover h2 {
  transform:
    translateY(-3px);
}


/* =========================================
   FORM SUCCESS / ERROR
========================================= */

.form-message.success,
.form-message.error {
  animation:
    messageAppear
    0.45s
    cubic-bezier(
      0.34,
      1.56,
      0.64,
      1
    );
}


@keyframes messageAppear {

  from {
    opacity: 0;

    transform:
      translateY(8px)
      scale(0.97);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =========================================
   ACCESSIBILITY
========================================= */

@media
(prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

    scroll-behavior:
      auto !important;

  }


  .motion-item,
  .form-motion-item,
  .navbar {

    opacity: 1 !important;

    transform:
      none !important;

    filter:
      none !important;

  }

}


/* =========================================
   MOBILE
========================================= */

@media
(max-width: 768px) {

  .motion-item,
  .motion-item.motion-from-left,
  .motion-item.motion-from-right {

    transform:
      translateY(22px)
      scale(0.99);

  }


  .motion-item.motion-show {

    transform:
      translateY(0)
      scale(1);

  }


  .service-card:hover,
  .technician-card:hover,
  .review-card:hover {

    transform:
      translateY(-3px);

  }

}
/* =========================
   PLATFORM CREATIVE MOTION
========================= */

.platform-animated {
  position: relative;
  overflow: hidden;
}

.platform-label {
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 0.32em;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    letter-spacing 0.7s ease;
}

.platform-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28em;

  overflow: hidden;
}

.platform-word {
  display: inline-block;
  opacity: 0;
}

.from-word {
  transform: translateY(30px);
}

.problem-word {
  transform:
    translateY(30px)
    translateX(-12px);

  filter: blur(6px);
}

.to-word {
  transform: translateY(30px);
}

.fixer-word {
  transform:
    translateX(32px)
    scale(0.96);

  color: var(--green);
}

.fixer-dot {
  display: inline-block;
  color: var(--green);
}

.platform-line {
  display: block;

  width: 0;
  height: 3px;

  margin-top: 18px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--green-dark)
    );

  opacity: 0;
}


/* =========================
   ACTIVE STATE
========================= */

.platform-animated.platform-play
.platform-label {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.18em;
}


.platform-animated.platform-play
.from-word {
  animation:
    platformFrom
    0.65s
    0.25s
    forwards;
}


.platform-animated.platform-play
.problem-word {
  animation:
    platformProblem
    0.9s
    0.42s
    forwards;
}


.platform-animated.platform-play
.to-word {
  animation:
    platformTo
    0.55s
    0.82s
    forwards;
}


.platform-animated.platform-play
.platform-line {
  animation:
    platformLine
    0.7s
    0.9s
    forwards;
}


.platform-animated.platform-play
.fixer-word {
  animation:
    platformFixer
    0.75s
    1.12s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}


.platform-animated.platform-play
.fixer-dot {
  animation:
    fixerDot
    0.5s
    1.75s
    ease
    forwards;
}


/* =========================
   KEYFRAMES
========================= */

@keyframes platformFrom {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


@keyframes platformProblem {

  0% {
    opacity: 0;

    transform:
      translateY(30px)
      translateX(-12px);

    filter: blur(6px);
  }

  55% {
    opacity: 1;

    transform:
      translateY(0)
      translateX(4px);

    filter: blur(0);
  }

  70% {
    transform:
      translateX(-3px);
  }

  85% {
    transform:
      translateX(2px);
  }

  100% {
    opacity: 1;

    transform:
      translateX(0);

    filter: blur(0);
  }

}


@keyframes platformTo {

  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


@keyframes platformLine {

  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 110px;
    opacity: 1;
  }

}


@keyframes platformFixer {

  from {
    opacity: 0;

    transform:
      translateX(32px)
      scale(0.96);
  }

  to {
    opacity: 1;

    transform:
      translateX(0)
      scale(1);
  }

}


@keyframes fixerDot {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.9);
  }

  100% {
    transform: scale(1);
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .platform-heading {
    gap: 0.18em;
  }

  .platform-line {
    margin-top: 14px;
  }

}


/* =========================
   REDUCED MOTION
========================= */

@media
(prefers-reduced-motion: reduce) {

  .platform-label,
  .platform-word,
  .platform-line {

    opacity: 1 !important;

    transform: none !important;

    filter: none !important;

    animation: none !important;

  }

  .platform-line {
    width: 110px;
  }

}
/* =========================
   ABOUT PLATFORM MOTION
========================= */

.platform-animated {
  position: relative;
  overflow: hidden;
}

.platform-label {
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 0.32em;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    letter-spacing 0.7s ease;
}

.platform-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 0.28em;

  overflow: hidden;
}

.platform-word {
  display: inline-block;
  opacity: 0;
}

.from-word {
  transform: translateY(30px);
}

.problem-word {
  transform:
    translateY(30px)
    translateX(-12px);

  filter: blur(6px);
}

.to-word {
  transform: translateY(30px);
}

.fixer-word {
  transform:
    translateX(35px)
    scale(0.95);

  color: var(--green);
}

.fixer-dot {
  display: inline-block;
}


/* GREEN LINE */

.platform-line {
  display: block;

  width: 0;
  height: 3px;

  margin:
    18px auto
    0;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--green-dark)
    );

  opacity: 0;
}


/* =========================
   PLAY
========================= */

.platform-play
.platform-label {
  opacity: 1;

  transform:
    translateY(0);

  letter-spacing:
    0.18em;
}


.platform-play
.from-word {
  animation:
    aboutFrom
    0.6s
    0.2s
    forwards;
}


.platform-play
.problem-word {
  animation:
    aboutProblem
    0.9s
    0.4s
    forwards;
}


.platform-play
.to-word {
  animation:
    aboutTo
    0.55s
    0.8s
    forwards;
}


.platform-play
.platform-line {
  animation:
    aboutLine
    0.65s
    0.9s
    forwards;
}


.platform-play
.fixer-word {
  animation:
    aboutFixer
    0.75s
    1.08s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    forwards;
}


.platform-play
.fixer-dot {
  animation:
    aboutDot
    0.5s
    1.7s
    ease
    forwards;
}


/* =========================
   KEYFRAMES
========================= */

@keyframes aboutFrom {

  from {
    opacity: 0;
    transform:
      translateY(30px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }

}


@keyframes aboutProblem {

  0% {
    opacity: 0;

    transform:
      translateY(30px)
      translateX(-12px);

    filter:
      blur(6px);
  }

  55% {
    opacity: 1;

    transform:
      translateY(0)
      translateX(4px);

    filter:
      blur(0);
  }

  70% {
    transform:
      translateX(-3px);
  }

  85% {
    transform:
      translateX(2px);
  }

  100% {
    opacity: 1;

    transform:
      translateX(0);

    filter:
      blur(0);
  }

}


@keyframes aboutTo {

  from {
    opacity: 0;
    transform:
      translateY(22px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }

}


@keyframes aboutLine {

  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 120px;
    opacity: 1;
  }

}


@keyframes aboutFixer {

  from {
    opacity: 0;

    transform:
      translateX(35px)
      scale(0.95);
  }

  to {
    opacity: 1;

    transform:
      translateX(0)
      scale(1);
  }

}


@keyframes aboutDot {

  0% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(2);
  }

  100% {
    transform:
      scale(1);
  }

}
/* ========================================
   CONTACT TITLE CREATIVE ANIMATION
======================================== */

.contact-title-animated {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em;

  overflow: hidden;
}


/* All title parts start hidden */

.contact-word {
  display: inline-block;
  opacity: 0;
}


/* First part */

.contact-love {
  transform: translateY(30px);
}


/* "hear" starts blurred */

.contact-hear {
  transform:
    translateY(30px)
    translateX(-10px);

  filter: blur(6px);
}


/* "from you" enters from the right */

.contact-you {
  transform:
    translateX(35px)
    scale(0.96);

  color: var(--green);
}


/* Final dot */

.contact-dot {
  display: inline-block;
}


/* ========================================
   ANIMATION PLAY STATE
======================================== */

.contact-title-animated.contact-play
.contact-love {

  animation:
    contactLove
    0.65s
    0.15s
    forwards;
}


.contact-title-animated.contact-play
.contact-hear {

  animation:
    contactHear
    0.85s
    0.45s
    forwards;
}


.contact-title-animated.contact-play
.contact-you {

  animation:
    contactYou
    0.75s
    0.9s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


.contact-title-animated.contact-play
.contact-dot {

  animation:
    contactDot
    0.5s
    1.55s
    ease
    forwards;
}


/* ========================================
   KEYFRAMES
======================================== */

@keyframes contactLove {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


@keyframes contactHear {

  0% {

    opacity: 0;

    transform:
      translateY(30px)
      translateX(-10px);

    filter: blur(6px);

  }


  60% {

    opacity: 1;

    transform:
      translateY(0)
      translateX(3px);

    filter: blur(0);

  }


  80% {

    transform:
      translateX(-2px);

  }


  100% {

    opacity: 1;

    transform:
      translateX(0);

    filter: blur(0);

  }

}


@keyframes contactYou {

  from {

    opacity: 0;

    transform:
      translateX(35px)
      scale(0.96);

  }


  to {

    opacity: 1;

    transform:
      translateX(0)
      scale(1);

  }

}


@keyframes contactDot {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(2);
  }

  100% {
    transform: scale(1);
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .contact-word {

    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;

  }

}

/* ========================================
   ABOUT HERO - TWO LINE TITLE FIX
======================================== */

.about-hero .about-start-title {
  max-width: 980px;
  margin: 12px auto 0;
  text-align: center;
}

.about-hero .about-start-title .about-start-line {
  display: block;
  color: var(--navy-dark);
}

.about-hero .about-start-title .about-start-line + .about-start-line {
  margin-top: 4px;
}

.about-hero .about-start-title em {
  color: var(--green-dark);
  font-style: normal;
}

.about-hero .about-hero-text {
  max-width: 650px;
  margin: 25px auto 0;
  text-align: center;
}

@media (max-width: 700px) {
  .about-hero .about-start-title {
    max-width: 100%;
  }

  .about-hero .about-start-title .about-start-line {
    line-height: 1.08;
  }
}

/* =========================================================
   RESTORED UI - BECOME A FIXER + LOCATION
   Intro styles are intentionally untouched.
========================================================= */

/* =========================================================
   FIND A FIXER - LOCATION + SMART SORTING
========================================================= */

.fixer-filters {
  flex-wrap: wrap;
}

.location-filter-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1.5px solid var(--green-dark);
  border-radius: 10px;
  background: #edf7f3;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(79, 175, 143, 0.08);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.location-filter-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.65) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
}

.location-filter-button:hover {
  background: #dcefe8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79,175,143,.16);
}

.location-filter-button:hover::before { transform: translateX(130%); }
.location-filter-button i { font-size: 13px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.location-filter-button:hover i { transform: scale(1.14) rotate(-8deg); }
.location-filter-button.location-active { background: var(--green-dark); border-color: var(--green-dark); color: #fff; box-shadow: 0 12px 28px rgba(61,146,118,.20); }
.location-filter-button.location-active i { animation: fixerLocationPulse .7s ease 1; }
.location-filter-button:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.location-filter-button:disabled i { animation: fixerLocationSearching .9s linear infinite; }

@keyframes fixerLocationSearching { to { transform: rotate(360deg); } }
@keyframes fixerLocationPulse { 0%{transform:scale(1)} 45%{transform:scale(1.3)} 100%{transform:scale(1)} }

.location-status {
  width: 100%;
  min-height: 22px;
  margin: -35px 0 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .3s ease, transform .3s ease;
}
.location-status:not(:empty) { opacity: 1; transform: translateY(0); }
.location-status i { margin-right: 6px; }
.location-status.success { color: var(--green-dark); }
.location-status.error { color: #a44f4f; }
.technician-distance { color: var(--navy); font-weight: 700; }
.technician-distance i { color: var(--green-dark); }
.technician-card { position: relative; }
.best-match-card { border-color: rgba(79,175,143,.55); box-shadow: 0 14px 35px rgba(23,59,87,.08); }
.best-match-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e8f3ef;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  animation: fixerBestMatchIn .45s cubic-bezier(.22,1,.36,1);
}
@keyframes fixerBestMatchIn { from {opacity:0; transform:translateY(-7px) scale(.92)} to {opacity:1; transform:translateY(0) scale(1)} }

/* =========================================================
   BECOME A FIXER - BENEFITS
========================================================= */

.fixer-benefits { padding: 90px 0; background: var(--background); }
.fixer-benefits-heading { max-width: 650px; margin-bottom: 42px; }
.fixer-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.fixer-benefit-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16,45,67,.04);
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.fixer-benefit-card::before { content:""; position:absolute; top:0; left:0; width:4px; height:0; background:var(--green); transition:height .35s ease; }
.fixer-benefit-card:hover { transform: translateY(-7px); border-color: rgba(79,175,143,.35); box-shadow: 0 18px 38px rgba(16,45,67,.08); }
.fixer-benefit-card:hover::before { height:100%; }
.fixer-benefit-icon {
  display:grid; place-items:center; width:52px; height:52px; margin-bottom:22px; border-radius:14px; background:#eef3f1; color:var(--navy); font-size:19px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s ease, color .3s ease;
}
.fixer-benefit-card:hover .fixer-benefit-icon { transform: translateY(-3px) rotate(-4deg) scale(1.04); background:#e3f1ec; color:var(--green-dark); }
.fixer-benefit-card h3 { margin-bottom:10px; color:var(--navy-dark); font-size:18px; }
.fixer-benefit-card p { color:var(--muted); font-size:13px; line-height:1.75; }

/* HOW TO JOIN cards */
.fixer-guide-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.fixer-guide-card:hover { transform: translateY(-6px); border-color: rgba(79,175,143,.3); background:#fff; box-shadow:0 14px 32px rgba(23,59,87,.07); }
.fixer-guide-card > span { display:inline-block; margin-bottom:22px; color:var(--green-dark); font-size:13px; font-weight:800; }
.fixer-guide-card > i { margin-left:7px; color:var(--green-dark); transition:transform .3s ease; }
.fixer-guide-card:hover > i { transform:translateY(-3px) rotate(-5deg) scale(1.08); }
.fixer-guide-card h3 { margin-bottom:10px; color:var(--navy-dark); font-size:18px; }
.fixer-guide-card p { color:var(--muted); font-size:13px; line-height:1.7; }

/* Application fee reminder */
.application-fee-reminder { display:flex; align-items:flex-start; gap:12px; margin:24px 0 14px; padding:15px 16px; border:1px solid rgba(79,175,143,.22); border-radius:12px; background:#f2f8f5; }
.application-fee-reminder i { margin-top:3px; color:var(--green-dark); }
.application-fee-reminder p { margin:0; color:var(--muted); font-size:13px; line-height:1.6; }
.application-fee-reminder strong { color:var(--navy-dark); }

/* Page entrance animations */
.become-fixer-page .fixer-join-copy,
.become-fixer-page .fixer-fee-card,
.become-fixer-page .fixer-benefits-heading,
.become-fixer-page .fixer-benefit-card,
.become-fixer-page .fixer-guide-card,
.become-fixer-page .policy-item,
.become-fixer-page .fixer-application-copy,
.become-fixer-page .fixer-application-card { opacity:0; transition:opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.become-fixer-page .fixer-join-copy { transform:translateX(-34px); }
.become-fixer-page .fixer-fee-card { transform:translateX(34px) rotate(1.5deg); }
.become-fixer-page .fixer-benefits-heading { transform:translateY(24px); }
.become-fixer-page .fixer-benefit-card { transform:translateY(30px) scale(.98); }
.become-fixer-page .fixer-guide-card { transform:translateY(28px); }
.become-fixer-page .policy-item { transform:translateX(24px); }
.become-fixer-page .fixer-application-copy { transform:translateX(-28px); }
.become-fixer-page .fixer-application-card { transform:translateX(28px); }
.become-fixer-page .become-visible { opacity:1 !important; transform:none !important; }
.become-fixer-page .fixer-benefit-card:nth-child(2), .become-fixer-page .fixer-guide-card:nth-child(2) { transition-delay:.1s; }
.become-fixer-page .fixer-benefit-card:nth-child(3), .become-fixer-page .fixer-guide-card:nth-child(3) { transition-delay:.2s; }
.become-fixer-page .fixer-guide-card:nth-child(4) { transition-delay:.3s; }
.become-fixer-page .policy-item:nth-child(2) { transition-delay:.08s; }
.become-fixer-page .policy-item:nth-child(3) { transition-delay:.16s; }
.become-fixer-page .policy-item:nth-child(4) { transition-delay:.24s; }
.become-fixer-page .submit-button i, .become-fixer-page .cta-button i { transition:transform .25s ease; }
.become-fixer-page .submit-button:hover i { transform:translateX(5px); }
.become-fixer-page .cta-button:hover i { transform:translateY(4px); }

@media (max-width: 900px) {
  .fixer-filters .filter-group { min-width:calc(50% - 10px); }
  .location-filter-button, .clear-filter-button { flex:1; }
  .location-status { margin-top:-25px; }
}

@media (max-width: 800px) {
  .fixer-benefits-grid { grid-template-columns:1fr; }
  .fixer-benefit-card { min-height:auto; }
  .become-fixer-page .fixer-join-copy, .become-fixer-page .fixer-fee-card, .become-fixer-page .fixer-application-copy, .become-fixer-page .fixer-application-card { transform:translateY(24px); }
}

@media (max-width: 600px) {
  .fixer-filters .filter-group { min-width:100%; }
  .location-filter-button, .clear-filter-button { width:100%; }
  .location-status { margin-top:-20px; }
  .best-match-badge { position:static; width:fit-content; margin-bottom:15px; }
  .fixer-benefits { padding:70px 0; }
  .fixer-benefit-card, .fixer-guide-card { min-height:auto; padding:24px; }
}

@media (prefers-reduced-motion: reduce) {
  .location-filter-button, .location-filter-button i, .best-match-badge,
  .become-fixer-page .fixer-join-copy, .become-fixer-page .fixer-fee-card, .become-fixer-page .fixer-benefits-heading, .become-fixer-page .fixer-benefit-card, .become-fixer-page .fixer-guide-card, .become-fixer-page .policy-item, .become-fixer-page .fixer-application-copy, .become-fixer-page .fixer-application-card { animation:none !important; transition:none !important; }
  .become-fixer-page .fixer-join-copy, .become-fixer-page .fixer-fee-card, .become-fixer-page .fixer-benefits-heading, .become-fixer-page .fixer-benefit-card, .become-fixer-page .fixer-guide-card, .become-fixer-page .policy-item, .become-fixer-page .fixer-application-copy, .become-fixer-page .fixer-application-card { opacity:1; transform:none; }
}

