/* =============================================
   WEB DEVELOPMENT PAGE — web-development.css
   WorthyTech Solutions
   Colors: #2D466D | #333333 | #B0B8C1
   ============================================= */

/* ---- AOS Init (basic fade if AOS not loaded) ---- */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO SECTION
   ============================================= */
.wd-hero {
  position: relative;
  background: linear-gradient(135deg, #1a2a42 0%, #2D466D 55%, #333333 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Grid canvas background */
.wd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#wd-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.wd-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(176, 184, 193, 0.18);
  top: -100px; right: -80px;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.glow-2 {
  width: 350px; height: 350px;
  background: rgba(45, 70, 109, 0.3);
  bottom: 0; left: 5%;
  animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1;   }
}

.wd-hero-inner { position: relative; z-index: 2; }

/* Badge */
.wd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,184,193,0.15);
  border: 1px solid rgba(176,184,193,0.35);
  color: #B0B8C1;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.wd-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Hero title */
.wd-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.wd-text-shine {
  background: linear-gradient(90deg, #B0B8C1 0%, #fff 40%, #B0B8C1 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}
@keyframes textShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Hero description */
.wd-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Stats pills */
.wd-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.wd-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.wd-stat-pill:hover {
  background: rgba(45,70,109,0.4);
  border-color: #B0B8C1;
  transform: translateY(-2px);
}
.wd-stat-pill strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.wd-stat-pill span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ---- Browser Mockup ---- */
.wd-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-browser-mockup {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  animation: mockupFloat 5s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.browser-bar {
  background: rgba(255,255,255,0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.b-dot.red    { background: #ff5f56; }
.b-dot.yellow { background: #ffbd2e; }
.b-dot.green  { background: #27c93f; }
.b-url {
  margin-left: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: monospace;
  flex: 1;
  text-align: center;
}
.browser-content { padding: 16px; }
.bc-hero-strip {
  height: 70px;
  background: linear-gradient(135deg, #2D466D, #B0B8C1);
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.bc-hero-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.bc-nav {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  margin-bottom: 14px;
}
.bc-cards { display: flex; gap: 8px; margin-bottom: 14px; }
.bc-card {
  flex: 1;
  height: 55px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.bc-card--1::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 6px; background: rgba(176,184,193,0.4); border-radius: 3px; }
.bc-card--1::after  { content: ''; position: absolute; top: 20px; left: 8px; width: 60%; height: 4px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.bc-card--2::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 6px; background: rgba(45,70,109,0.6); border-radius: 3px; }
.bc-card--3::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 6px; background: rgba(176,184,193,0.3); border-radius: 3px; }
.bc-progress-row { display: flex; flex-direction: column; gap: 7px; }
.bc-progress {
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.bc-progress::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: var(--w, 60%);
  background: linear-gradient(90deg, #2D466D, #B0B8C1);
  border-radius: 4px;
  animation: progressLoad 2s ease-out forwards;
}
@keyframes progressLoad {
  from { width: 0; }
  to   { width: var(--w); }
}

/* Floating badges */
.wd-float-badge {
  position: absolute;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: badgeFloat 4s ease-in-out infinite;
}
.wd-float-badge i { font-size: 1rem; }
.badge-react  { top: 10%; right: -18px; animation-delay: 0s; }
.badge-react i { color: #61dafb; }
.badge-php    { top: 40%; left: -22px; animation-delay: 1.2s; }
.badge-php i  { color: #8993be; }
.badge-node   { bottom: 25%; right: -18px; animation-delay: 0.6s; }
.badge-node i { color: #68a063; }
.badge-wp     { bottom: 8%; left: 10%; animation-delay: 1.8s; }
.badge-wp i   { color: #21759b; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Wave */
.wd-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.wd-hero-wave svg { display: block; width: 100%; }

/* =============================================
   SHARED SECTION ELEMENTS
   ============================================= */
.wd-section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(45,70,109,0.12), rgba(176,184,193,0.12));
  border: 1px solid rgba(45,70,109,0.2);
  color: #2D466D;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.wd-section-tag.light {
  background: rgba(176,184,193,0.18);
  border-color: rgba(176,184,193,0.3);
  color: #B0B8C1;
}
.wd-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.wd-section-title.light { color: #ffffff; }
.wd-section-desc {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 0;
  line-height: 1.75;
}
.wd-section-desc.light { color: rgba(255,255,255,0.78); }

/* =============================================
   SERVICES GRID
   ============================================= */
.wd-services { background: #ffffff; }

.wd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .wd-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .wd-services-grid { grid-template-columns: 1fr; } }

.wd-svc-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wd-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2D466D, #B0B8C1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.wd-svc-card:hover {
  border-color: #2D466D;
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(45,70,109,0.14);
}
.wd-svc-card:hover::before { transform: scaleX(1); }

/* Featured card */
.wd-svc-card--featured {
  background: linear-gradient(160deg, #1e3552 0%, #2D466D 100%);
  border-color: #2D466D;
}
.wd-svc-card--featured::before { display: none; }
.wd-svc-card--featured .wd-svc-title,
.wd-svc-card--featured .wd-svc-desc,
.wd-svc-card--featured .wd-svc-list li { color: rgba(255,255,255,0.9); }
.wd-svc-card--featured .wd-svc-list li i { color: #4ade80; }
.wd-svc-card--featured .wd-svc-link { color: #B0B8C1; }
.wd-svc-card--featured:hover { box-shadow: 0 24px 50px rgba(45,70,109,0.35); }

.wd-svc-featured-label {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wd-svc-icon-wrap { margin-bottom: 1.25rem; }
.wd-svc-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #2D466D, #7893b1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wd-svc-card:hover .wd-svc-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(45,70,109,0.35);
}
.wd-svc-card--featured .wd-svc-icon {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
}

.wd-svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.6rem;
}
.wd-svc-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wd-svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.wd-svc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #475569;
  padding: 4px 0;
}
.wd-svc-list li i {
  color: #2D466D;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.wd-svc-footer { margin-top: auto; }
.wd-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2D466D;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wd-svc-link i { transition: transform 0.3s ease; }
.wd-svc-link:hover { color: #1e3552; }
.wd-svc-link:hover i { transform: translateX(5px); }

/* =============================================
   TECH STACK TABS
   ============================================= */
.wd-tech-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.wd-tech-tabs {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45,70,109,0.09);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.wd-tab-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  padding: 6px 8px 0;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.wd-tab-btn {
  background: transparent;
  border: none;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}
.wd-tab-btn.active {
  background: #fff;
  color: #2D466D;
  border-bottom: 2px solid #fff;
  margin-bottom: -2px;
}
.wd-tab-btn:hover:not(.active) { color: #2D466D; background: rgba(45,70,109,0.06); }

.wd-tab-panel {
  display: none;
  padding: 2rem;
}
.wd-tab-panel.active { display: block; animation: tabFade 0.4s ease; }
@keyframes tabFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wd-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .wd-tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .wd-tech-grid { grid-template-columns: repeat(2, 1fr); } }

.wd-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  cursor: default;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wd-tech-item:hover {
  background: linear-gradient(135deg, #2D466D, #4a6b9a);
  border-color: #2D466D;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 30px rgba(45,70,109,0.22);
}
.wd-tech-item i {
  font-size: 2rem;
  color: #2D466D;
  transition: color 0.3s ease;
}
.wd-tech-item:hover i { color: #fff; }
.wd-tech-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  transition: color 0.3s ease;
}
.wd-tech-item:hover span { color: rgba(255,255,255,0.9); }

/* =============================================
   PROCESS SECTION
   ============================================= */
.wd-process {
  position: relative;
  background: linear-gradient(135deg, #1a2a42 0%, #2D466D 50%, #333333 100%);
  overflow: hidden;
}
.wd-process-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.wd-process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.wd-process-line {
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(176,184,193,0.1), rgba(176,184,193,0.5), rgba(176,184,193,0.1));
}

.wd-process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 36px 0;
  position: relative;
}
.wd-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D466D, #B0B8C1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(45,70,109,0.25);
  transition: all 0.3s ease;
}
.wd-process-step:hover .wd-step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(45,70,109,0.3), 0 8px 20px rgba(0,0,0,0.3);
}
.wd-step-body {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px 24px;
  flex: 1;
  transition: all 0.3s ease;
}
.wd-process-step:hover .wd-step-body {
  background: rgba(45,70,109,0.35);
  border-color: rgba(176,184,193,0.35);
  transform: translateX(6px);
}
.wd-step-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #2D466D, #B0B8C1);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.wd-step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wd-step-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.wd-why { background: #ffffff; }
.wd-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) { .wd-why-grid { grid-template-columns: 1fr; } }

.wd-why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s ease;
}
.wd-why-card:hover {
  border-color: #2D466D;
  background: linear-gradient(135deg, rgba(45,70,109,0.05), rgba(176,184,193,0.05));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45,70,109,0.1);
}
.wd-why-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #2D466D, #7893b1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.wd-why-card:hover .wd-why-icon { transform: scale(1.1) rotate(-5deg); }
.wd-why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.wd-why-card p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.wd-faq {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}
.wd-faq-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(45,70,109,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(176,184,193,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.wd-accordion { display: flex; flex-direction: column; gap: 12px; }

.wd-acc-item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wd-acc-item.active,
.wd-acc-item:hover { border-color: #2D466D; box-shadow: 0 6px 20px rgba(45,70,109,0.1); }

.wd-acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.3s ease;
}
.wd-acc-trigger:hover { color: #2D466D; }
.wd-acc-icon {
  width: 30px; height: 30px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D466D;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.wd-acc-item.active .wd-acc-icon {
  background: linear-gradient(135deg, #2D466D, #B0B8C1);
  color: #fff;
  transform: rotate(45deg);
}

.wd-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.wd-acc-item.active .wd-acc-body {
  max-height: 200px;
  padding: 0 22px 18px;
}
.wd-acc-body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991px) {
  .wd-hero { min-height: auto; padding-top: 120px; padding-bottom: 100px; }
  .wd-browser-mockup { max-width: 340px; }
  .badge-react { right: 0; }
  .badge-php   { left: 0; }
  .badge-node  { right: 0; }
}
@media (max-width: 767px) {
  .wd-hero-stats { gap: 8px; }
  .wd-stat-pill  { padding: 6px 14px; }
  .wd-process-line { display: none; }
  .wd-process-step { padding-bottom: 20px; }
}

/* ===========================
LOCAL SEO LINKS
=========================== */

.local-service-areas{
    background:#f8f9fb;
    padding:50px 0;
}

.local-heading{
    font-size:32px;
    font-weight:700;
    color:#111;
}

.local-subheading{
    color:#666;
    margin-top:10px;
}

.local-links-wrap{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
}


.local-pill{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:white;

    border:1px solid #ddd;

    text-decoration:none;

    color:#222;

    font-weight:600;

    transition:.3s;
}


.local-pill:hover{

    background:#2D466D;

    color:white;

    border-color:#2D466D;
}

/* ===========================
LOCAL SEO SECTION
=========================== */

.local-market-section{

    background:#f8fafc;

    padding:60px 0;

    text-align:center;

    border-top:1px solid #e5e7eb;

    border-bottom:1px solid #e5e7eb;
}


.local-market-section .container{

    max-width:1000px;

    margin:auto;
}


.local-market-title{

    font-size:40px;

    font-weight:700;

    color:#2D466D;

    margin-bottom:15px;

    line-height:1.2;
}


.local-market-desc{

    font-size:18px;

    color:#64748b;

    margin-bottom:35px;
}


/* button wrapper */

.local-market-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}


/* buttons */

.local-market-buttons .city-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:260px;

    padding:16px 28px;

    border-radius:50px;

    background:#2D466D;

    color:#fff !important;

    text-decoration:none !important;

    font-weight:600;

    font-size:17px;

    border:none;

    transition:all .3s ease;

    box-shadow:
    0 8px 20px rgba(45,70,109,.15);
}


.local-market-buttons .city-btn:hover{

    background:#1f3554;

    color:#fff !important;

    transform:translateY(-4px);

    box-shadow:
    0 14px 25px rgba(45,70,109,.25);
}



/* mobile */

@media(max-width:768px){

.local-market-title{

    font-size:30px;
}

.local-market-buttons{

    flex-direction:column;
}

.local-market-buttons .city-btn{

    width:100%;
    max-width:320px;
}

}