/* ==============================================================================
   Soft Futura - Website Development Landing Page Styles
   Accurately recreated from visual blueprint reference
   ============================================================================== */

:root {
  --wd-primary: #1d68f2;
  --wd-primary-dark: #1251c7;
  --wd-primary-light: #3b82f6;
  --wd-primary-glow: rgba(29, 104, 242, 0.35);
  --wd-navy-hero: #050a1b;
  --wd-navy-dark: #070d24;
  --wd-navy-card: #0b1536;
  --wd-navy-border: #16244d;
  --wd-text-dark: #0f172a;
  --wd-text-muted: #64748b;
  --wd-text-light: #94a3b8;
  --wd-border-light: #e5e7eb;
  --wd-bg-light: #f8fafc;
  --wd-bg-white: #ffffff;
  --wd-radius-card: 14px;
  --wd-radius-pill: 9999px;
  --wd-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --wd-shadow-hover: 0 12px 32px rgba(29, 104, 242, 0.12);
}

/* Page Base */
.wd-page {
  background-color: #ffffff;
  color: var(--wd-text-dark);
  font-family: var(--font-body, 'Inter', sans-serif);
  overflow-x: hidden;
  width: 100%;
}

.wd-page .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wd-page h1,
.wd-page h2,
.wd-page h3,
.wd-page h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: -0.02em;
}

/* Accent Highlight */
.wd-accent {
  color: var(--wd-primary);
}

/* Section Header Typography */
.wd-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.wd-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wd-primary);
  margin-bottom: 0.6rem;
}

.wd-section-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--wd-text-dark);
  margin-bottom: 0.75rem;
}

.wd-section-desc {
  font-size: 0.98rem;
  color: var(--wd-text-muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.wd-section {
  padding: 5rem 0;
  position: relative;
  width: 100%;
}

.wd-bg-light {
  background-color: #f8fafc;
}

/* ==============================================================================
   1. HERO SECTION (Dark Blue with Hawa Mahal Background)
   ============================================================================== */
.wd-hero {
  background: linear-gradient(135deg, rgba(5, 10, 27, 0.93) 0%, rgba(8, 16, 42, 0.9) 50%, rgba(5, 10, 27, 0.95) 100%),
              url('../images/hero/jaipur-hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 5rem;
  color: #ffffff;
}

.wd-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Pill Badge */
.wd-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: var(--wd-radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.wd-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.wd-hero-title .wd-accent-glow {
  color: #3b82f6;
  text-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.wd-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 620px;
  margin-bottom: 2rem;
}

/* Hero 4 Stats Row with Icons */
.wd-hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-hstat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wd-hstat-icon {
  width: 32px;
  height: 32px;
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wd-hstat-icon svg {
  width: 24px;
  height: 24px;
}

.wd-hstat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  font-family: var(--font-heading, sans-serif);
}

.wd-hstat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

/* Hero Action Buttons */
.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.wd-btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wd-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--wd-radius-pill);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(29, 104, 242, 0.35);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.wd-btn-blue:hover {
  background-color: var(--wd-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 104, 242, 0.5);
}

.wd-btn-dark-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: rgba(11, 21, 54, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--wd-radius-pill);
  transition: all 0.25s ease;
  text-decoration: none;
}

.wd-btn-dark-wa:hover {
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
  background-color: rgba(37, 211, 102, 0.1);
}

.wd-btn-dark-wa svg {
  width: 18px;
  height: 18px;
  fill: #25d366;
}

/* Trust Checklist below buttons */
.wd-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.wd-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wd-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #3b82f6;
}

/* Right Side: Consultation Form Card */
.wd-form-card {
  background: #ffffff;
  border-radius: var(--wd-radius-card);
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  color: var(--wd-text-dark);
  max-width: 440px;
  margin-left: auto;
}

.wd-form-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.wd-form-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--wd-text-dark);
  margin-bottom: 0.35rem;
}

.wd-form-header p {
  font-size: 0.85rem;
  color: var(--wd-text-muted);
  line-height: 1.45;
}

.wd-input-group {
  margin-bottom: 1.1rem;
}

.wd-input-group input,
.wd-input-group select,
.wd-input-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--wd-border-light);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--wd-text-dark);
  background-color: #f8fafc;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.wd-input-group input::placeholder,
.wd-input-group textarea::placeholder {
  color: #94a3b8;
}

.wd-input-group input:focus,
.wd-input-group select:focus,
.wd-input-group textarea:focus {
  outline: none;
  border-color: var(--wd-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 104, 242, 0.12);
}

.wd-form-btn {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--wd-primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(29, 104, 242, 0.3);
  margin-top: 0.5rem;
}

.wd-form-btn:hover {
  background-color: var(--wd-primary-dark);
}

.wd-form-btn svg {
  width: 16px;
  height: 16px;
}

.wd-form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--wd-text-muted);
  margin-top: 0.85rem;
}

.wd-form-secure svg {
  width: 14px;
  height: 14px;
  stroke: #eab308;
}

.wd-form-toast {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
  line-height: 1.4;
}

/* ==============================================================================
   2. OUR SERVICES SECTION (6 Equal Cards)
   ============================================================================== */
.wd-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.wd-service-card {
  background: #ffffff;
  border: 1px solid var(--wd-border-light);
  border-radius: var(--wd-radius-card);
  padding: 1.75rem 1.25rem;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wd-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 104, 242, 0.4);
  box-shadow: var(--wd-shadow-hover);
}

.wd-service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(29, 104, 242, 0.08);
  color: var(--wd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.25s ease;
}

.wd-service-card:hover .wd-service-icon-box {
  background: var(--wd-primary);
  color: #ffffff;
}

.wd-service-icon-box svg {
  width: 24px;
  height: 24px;
}

.wd-service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wd-text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.wd-service-card p {
  font-size: 0.82rem;
  color: var(--wd-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==============================================================================
   3. WHY CHOOSE SOFT FUTURA (Left Copy + Right Multi-Device Showcase)
   ============================================================================== */
.wd-why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.wd-why-copy .wd-eyebrow {
  margin-bottom: 0.5rem;
}

.wd-why-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--wd-text-dark);
  margin-bottom: 1rem;
}

.wd-why-desc {
  font-size: 0.98rem;
  color: var(--wd-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.wd-why-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wd-why-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.wd-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1d68f2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(29, 104, 242, 0.25);
}

.wd-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
}

/* Right Side: Multi-Device Showcase Mockup */
.wd-showcase-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wd-devices-art {
  width: 100%;
  max-width: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-devices-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.05));
  transition: transform 0.4s ease;
}

/* Unified Floating Stats Card (Matching Reference Design) */
.wd-why-stats-card {
  position: absolute;
  top: 6%;
  right: -25px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.35rem 1.65rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  z-index: 5;
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wdFloatBadge 5s ease-in-out infinite alternate;
}

@keyframes wdFloatBadge {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.wd-why-stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(29, 104, 242, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wd-why-stat-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.wd-why-badge-icon {
  width: 48px;
  height: 48px;
  background: #1d68f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(29, 104, 242, 0.3);
  flex-shrink: 0;
}

.wd-why-badge-icon svg {
  width: 26px;
  height: 26px;
}

.wd-why-stat-top-info strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #1d68f2;
  line-height: 1.1;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

.wd-why-stat-top-info span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  display: block;
  margin-top: 0.2rem;
}

.wd-why-stat-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.wd-why-stat-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #1d68f2;
  line-height: 1.1;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

.wd-why-stat-item span {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  display: block;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* ==============================================================================
   4. OUR WORK SECTION (6 Horizontal Cards)
   ============================================================================== */
.wd-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.wd-work-card {
  background: #ffffff;
  border: 1px solid var(--wd-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--wd-shadow-card);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.wd-work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wd-shadow-hover);
  border-color: rgba(29, 104, 242, 0.35);
}

.wd-work-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
}

.wd-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wd-work-card:hover .wd-work-thumb img {
  transform: scale(1.05);
}

.wd-work-body {
  padding: 1rem 0.85rem;
  text-align: center;
}

.wd-work-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--wd-primary);
  background: rgba(29, 104, 242, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: var(--wd-radius-pill);
  margin-bottom: 0.4rem;
}

.wd-work-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wd-text-dark);
  margin-bottom: 0.2rem;
}

.wd-work-sub {
  font-size: 0.72rem;
  color: var(--wd-text-muted);
}

.wd-work-cta-wrap {
  text-align: center;
}

.wd-btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--wd-primary);
  color: var(--wd-primary);
  border-radius: var(--wd-radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wd-btn-pill-outline:hover {
  background-color: var(--wd-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 104, 242, 0.25);
}

/* ==============================================================================
   5. CLIENT TESTIMONIALS (4 Cards Carousel Style)
   ============================================================================== */
.wd-reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.wd-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--wd-border-light);
  color: var(--wd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.wd-nav-arrow:hover {
  background: var(--wd-primary);
  color: #ffffff;
}

.wd-nav-arrow.prev { left: -20px; }
.wd-nav-arrow.next { right: -20px; }

.wd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.wd-testi-card {
  background: #ffffff;
  border: 1px solid var(--wd-border-light);
  border-radius: var(--wd-radius-card);
  padding: 1.85rem 1.5rem;
  box-shadow: var(--wd-shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wd-quote-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: #93c5fd;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.wd-testi-card p {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.wd-testi-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.wd-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wd-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d68f2 0%, #3b82f6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.wd-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--wd-text-dark);
}

.wd-author-info span {
  font-size: 0.75rem;
  color: var(--wd-text-muted);
}

.wd-dots-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
}

.wd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.wd-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--wd-primary);
}

/* ==============================================================================
   6. FAQS SECTION (2 Columns Accordion)
   ============================================================================== */
.wd-faqs-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wd-faq-item {
  border-bottom: 1px solid var(--wd-border-light);
  padding: 1.1rem 0;
}

.wd-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--wd-text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  gap: 1rem;
}

.wd-faq-trigger:hover {
  color: var(--wd-primary);
}

.wd-faq-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--wd-text-muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.wd-faq-item.open .wd-faq-chevron {
  transform: rotate(180deg);
  stroke: var(--wd-primary);
}

.wd-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.wd-faq-content {
  padding-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--wd-text-muted);
  line-height: 1.6;
}

/* ==============================================================================
   7. FINAL BLUE CTA STRIP
   ============================================================================== */
.wd-final-strip {
  background: linear-gradient(135deg, #1d68f2 0%, #1750bf 100%);
  color: #ffffff;
  padding: 3.5rem 0;
}

.wd-strip-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.wd-strip-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wd-strip-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.wd-strip-icon-circle svg {
  width: 28px;
  height: 28px;
}

.wd-strip-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.wd-strip-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.wd-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.wd-btn-white-pill {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: var(--wd-primary);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--wd-radius-pill);
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wd-btn-white-pill:hover {
  transform: translateY(-2px);
  background-color: #f8fafc;
}

.wd-btn-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--wd-radius-pill);
  transition: all 0.25s ease;
  text-decoration: none;
}

.wd-btn-wa-pill:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.wd-btn-wa-pill svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ==============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================== */
@media (max-width: 1200px) {
  .wd-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-nav-arrow {
    display: none;
  }
}

@media (max-width: 992px) {
  .wd-hero {
    padding: 7rem 0 4rem;
  }
  .wd-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wd-form-card {
    margin: 0 auto;
    width: 100%;
  }
  .wd-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wd-why-stats-card {
    position: static;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 320px;
    animation: none;
  }
  .wd-faqs-2col {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .wd-strip-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .wd-strip-left {
    flex-direction: column;
  }
  .wd-strip-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wd-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .wd-hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 540px) {
  .wd-services-grid {
    grid-template-columns: 1fr;
  }
  .wd-work-grid {
    grid-template-columns: 1fr;
  }
  .wd-hero-title {
    font-size: 2.1rem;
  }
}
