/* ─── RESET & VARIABLES ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #00b85e;
  --green-dark: #007a3d;
  --green-light: #e6f9ee;
  --gold: #f5a623;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --mid: #4a4a4a;
  --light: #f5f4f0;
  --white: #ffffff;
  --blue: #2a72ff;
  --cyan: #00bcd4;
  --black: #000000;
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Syne", sans-serif;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 10px;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.announcement span {
  color: var(--gold);
  font-weight: 600;
}

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span {
  color: var(--green);
}
.logo sup {
  font-size: 11px;
  background: var(--green);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-links li:first-child {
  flex: 1;
}

.service-search {
  background: white;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s 0.3s ease both;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.service-search input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  transition: all 0.2s;
}

.service-search input::placeholder {
  color: #aaa;
}

.hero-search .btn-primary {
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--dark);
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.btn-ghost:hover {
  border-color: none;
  background: var(--green);
  color: var(--white);
}

.btn-primary {
  background: var(--green);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "DM Sans", sans-serif;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 184, 94, 0.35);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 100px 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  min-height: 88vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 70% 50%,
      rgba(0, 184, 94, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(245, 166, 35, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(0, 184, 94, 0.25);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

.hero-text h1 em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(0, 184, 94, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-text p {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 300;
}

.hero-search {
  background: white;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.3s ease both;
  border: 1px solid var(--border);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 15px;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
}

.hero-search input::placeholder {
  color: #aaa;
}

.search-divider {
  width: 1px;
  background: var(--border);
  margin: 8px 0;
}

.hero-search .btn-primary {
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat .num {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
}
.stat .num span {
  color: var(--green);
}
.stat .label {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

.bi::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.bi {
  display: inline-block;
  line-height: 1;
}

.cat-icon .bi,
.ti-icon .bi {
  font-size: 1.8rem;
}

.pi-avatar .bi {
  font-size: 1.2rem;
}

.pc-avatar .bi {
  font-size: 1.5rem;
}

.avatar .bi {
  font-size: 1.5rem;
}
/* ─── HERO VISUAL ─── */
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
  margin-bottom: 50px;
}

.hero-card-main {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.provider-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.avatar.green {
  background: var(--green-light);
}
.avatar.gold {
  background: #fffbec;
}
.avatar.blue {
  background: #eef3ff;
}
.provider-info {
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.provider-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}
.provider-info .role {
  font-size: 13px;
  color: var(--mid);
}

.verified-badge {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 5px;
  border-radius: 100px;
  border: 1px solid rgba(0, 184, 94, 0.2);
  margin-top: 8px;
  width: 70px;
}

.provider-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-box {
  background: var(--light);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.detail-box .d-val {
  font-size: 18px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
}
.detail-box .d-label {
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
}

.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}

.action-row {
  display: flex;
  gap: 10px;
}
.action-row button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.btn-hire {
  background: var(--green);
  color: white;
  border: none;
}
.btn-hire:hover {
  background: var(--green-dark);
}
.btn-msg {
  background: var(--light);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-msg:hover {
  border-color: var(--green);
  color: var(--green);
}

.floating-review {
  position: absolute;
  right: -30px;
  top: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  font-size: 13px;
  max-width: 280px;
  animation: float 4s ease-in-out infinite;
}
.floating-review .rev-stars {
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 5px;
}
.floating-review .rev-text {
  color: var(--mid);
  line-height: 1.5;
}
.floating-review .rev-name {
  font-weight: 700;
  font-size: 12px;
  margin-top: 6px;
  color: var(--dark);
}

.floating-stat {
  position: absolute;
  left: -40px;
  bottom: 30px;
  background: var(--dark);
  color: white;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
  animation: float 4s 2s ease-in-out infinite;
}
.floating-stat .fs-num {
  font-size: 24px;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  color: var(--green);
}
.floating-stat .fs-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--dark);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.trust-item .ti-icon {
  font-size: 20px;
}

.trust-item em {
  font-style: normal;
  color: white;
}

.trust-item strong {
  color: white;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 100px 60px;
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CATEGORIES ─── */
.categories {
  background: var(--white);
}

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

.see-all {
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.see-all:hover {
  gap: 10px;
}

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

.cat-card {
  background: var(--light);
  border-radius: 18px;
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 184, 94, 0.07);
  transition: all 0.4s;
}

.cat-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 184, 94, 0.12);
}

.cat-card:hover::before {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}

.cat-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.cat-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

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

.cat-count {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--light);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  cursor: default;
}

.step:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(0, 184, 94, 0.1);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}
.step-cta {
  background: var(--green);
  border-color: var(--green);
}

.step-cta .step-content h4 {
  color: white;
  font-size: 19px;
}

.step-cta .step-content p {
  color: rgba(255, 255, 255, 0.8);
}

.step-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 184, 94, 0.35);
}
.hire-primary {
  background: var(--white);
  border: none;
  color: green;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "DM Sans", sans-serif;
}
.hire-primary:hover {
  background: #f0f0f0;
}
.how-visual {
  position: relative;
}

.phone-mockup {
  background: var(--dark);
  border-radius: 36px;
  padding: 16px;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: var(--light);
  border-radius: 26px;
  overflow: hidden;
}

.phone-header {
  background: var(--green);
  padding: 20px 18px 16px;
  color: white;
}

.phone-header .ph-label {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.phone-header .ph-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
}

.phone-list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-item {
  background: white;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pi-info {
  flex: 1;
}
.pi-info .pi-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pi-info .pi-role {
  font-size: 11px;
  color: var(--mid);
}
.pi-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

/* ─── PROVIDERS ─── */
.providers {
  background: var(--white);
}

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

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

.provider-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.pc-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.pc-header.gold-bg {
  background: linear-gradient(135deg, #f5a623, #c97d0e);
}
.pc-header.dark-bg {
  background: linear-gradient(135deg, #2a2a2a, #0d0d0d);
}

.pc-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pc-info {
  color: white;
}
.pc-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pc-info .pc-role {
  font-size: 13px;
  opacity: 0.8;
}

.pc-verified {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pc-body {
  padding: 24px;
}

.pc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.pc-rating .stars {
  font-size: 14px;
}
.pc-rating .score {
  font-weight: 700;
  font-size: 15px;
}
.pc-rating .count {
  font-size: 13px;
  color: var(--mid);
}

.pc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--mid);
}

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

.pc-price .from {
  font-size: 11px;
  color: var(--mid);
}
.pc-price .amount {
  font-size: 22px;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  color: var(--dark);
}
.pc-price .per {
  font-size: 12px;
  color: var(--mid);
}

.btn-hire-sm {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.btn-hire-sm:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--dark);
}

.testimonials .section-title {
  color: white;
}
.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.testimonials .section-tag {
  background: rgba(0, 184, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(0, 184, 94, 0.2);
}

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

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

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testi-card.featured {
  background: var(--green);
  border-color: var(--green);
}

.testi-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 16px;
}
.testi-card.featured .testi-stars {
  color: rgba(255, 255, 255, 0.8);
}

.testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.testi-card.featured .testi-text {
  color: white;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.testi-card.featured .testi-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.testi-info .t-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}
.testi-info .t-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.testi-card.featured .t-loc {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--light);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 28px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--green-dark);
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  padding: 70px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn1,
.social-btn2,
.social-btn3,
.social-btn4,
.social-btn5 {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn1:hover {
  background: var(--green);
  border-color: var(--green);
}
.social-btn2:hover {
  background: var(--black);
  border-color: var(--green-dark);
}
.social-btn3:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.social-btn4:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.social-btn5:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.footer-col h5 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p span {
  color: var(--green);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--green);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    padding: 0 30px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    min-height: auto;
    overflow: visible;
  }
  .hero-visual {
    display: none;
  }
  .hero-text h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero-text p {
    max-width: 100%;
  }
  .homepage-hero-card {
    display: none;
  }
  .hero-search {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .search-divider {
    display: none;
  }
  .hero-search input {
    width: 100%;
  }
  .hero-search .btn-primary {
    width: 100%;
    padding: 14px;
  }
  section {
    padding: 70px 30px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    display: none;
  }
  .provider-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .cta-box {
    padding: 60px 30px;
  }
  .trust-bar {
    padding: 20px 30px;
  }
  .categories-header,
  .providers-header,
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 16px;
    height: 60px;
    gap: 10px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn-ghost {
    padding: 7px 12px;
    font-size: 13px;
  }

  .nav-actions .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }
  section {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .hero {
    padding: 20px;
    overflow: visible;
  }

  .hero-text h1 {
    font-size: 22px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .stat .num {
    font-size: 22px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .provider-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 20px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
  .trust-divider {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-search {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .hero-search input {
    width: 100%;
  }

  .hero-search .btn-primary {
    width: 100%;
    padding: 14px;
  }

  .homepage-hero-card {
    display: none;
  }
  .testi-text {
    font-size: 14px;
  }
  .testimonials {
    padding: 40px 20px;
    gap: 20px;
  }
  .testimonials-header {
    margin: 0px 0px 20px;
  }
  .cat-card {
    padding: 22px 14px;
  }
  .cat-icon {
    font-size: 28px;
  }
  .how-it-works {
    padding: 18px;
    gap: 20px;
  }
  .steps {
    gap: 20px;
  }
  .step {
    padding: 15px 10px;
  }
  .how-grid {
    margin: 10px 0px 0px;
  }
  .pc-body {
    padding: 18px;
  }
}
