/* ================================================
   INPAND TECHNOLOGIES — SERVICES PAGE
   services.css
   ================================================ */

/* ── VARIABLES ── */
/* ---- CSS Variables ---- */
:root {
  --color-primary: #0029e0;
  --color-primary-dark: #0010c7;
  --color-accent: #ebeefc;
  --color-text: #101011;
  --color-text-muted: #646363;
  --color-white: #ffffff;
  --color-bg: #f5f7fa;
  --color-footer-bg: #020205;
  --color-footer-text: #f5f5f5;
  --color-footer-link: #b7b7c7;
  --color-green: #2ecc71;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --max-width-wide: 1180px;
  --max-width-content: 980px;
  --gutter: clamp(1rem, 4vw, 2rem);

  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  /* FIX 2: added missing variable */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);

  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-width-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  gap: 10px;
}

.bounce {
  width: 14px;
  height: 14px;
  background: var(--color-primary-dark);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.b1 {
  animation-delay: -0.32s;
}

.b2 {
  animation-delay: -0.16s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 0.4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65em 1.6em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-hero {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  margin-top: 0.5rem;
}

.btn-hero:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition);
}

.btn-link:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  margin-top: auto;
  transition: background var(--transition), transform var(--transition);
}

.btn-pricing:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}



/* ── HEADER ── */
.site-header {
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  z-index: 500;
}

.header-inner {
  margin-inline: auto;
  padding: 0.75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.logo img {
  height: 92px;
  width: auto;
}

/* Nav */
.site-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
}

.site-nav a {
  display: block;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) var(--gutter) clamp(5rem, 12vw, 8rem);

  background: url("../assets/services-hero.png") center center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 38, 101, 0.42);
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 2rem;
  max-width: 1000px;
}

.page-hero .btn-primary {
  background: #4da3ff;
  color: #fff;
  border-color: #4da3ff;
  border-radius: 999px;
  padding: 0.95rem 2.3rem;
}

.page-hero .btn-hero,
.page-hero .btn-primary {
  background: #4da3ff;
  color: #fff;
  border-color: #4da3ff;
  margin-top: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
}

.page-hero .btn-hero:hover,
.page-hero .btn-primary:hover {
  background: #2f8df4;
  border-color: #2f8df4;
}

.page-hero .btn-primary:hover {
  background: #2f8df4;
  border-color: #2f8df4;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: clamp(70px, 10vw, 140px);
}

.hero-curve svg path {
  fill: var(--color-white);
}

/* ── FEATURED SERVICES ── */
.services {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-white);
}

.services .container {
  max-width: 100%;
  padding-inline: var(--gutter);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-primary);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ── PRICING SECTIONS ── */
.pricing-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-white);
}

.pricing-section.pricing-alt {
  background: var(--color-bg);
}

/* Override container to go full width for pricing */
.pricing-section .container {
  max-width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.pricing-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.5rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.pricing-card.pricing-featured {
  transform: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.pricing-card.pricing-featured:hover {
  transform: translateY(-4px);
}

/* Tier headers */
.pricing-header {
  padding: 2rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  height: 70px;
  background: inherit;
  border-radius: 50%;
}

.pricing-header h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Blue gradient for all tiers */
.pricing-silver,
.pricing-gold,
.pricing-platinum {
  background: linear-gradient(135deg, #4a90d9, #5b6ee8);
}

.pricing-body {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  text-align: center;
}

.pricing-starts {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.pricing-price.pricing-type {
  font-size: 1.4rem;
  color: var(--color-text);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4a90d9;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Buy button */
.btn-pricing {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  background: #2ecc71;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), transform 0.15s;
  letter-spacing: 0.04em;
}

.btn-pricing:hover {
  background: #27ae60;
  transform: translateY(-2px);
  text-decoration: none;
}

/* More services CTA */
.more-services {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-accent), #d5dcff);
  border-radius: var(--radius-lg);
}

.more-services h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}


/* =============================================
   TESTIMONIALS + SOCIAL SECTION
   ============================================= */

/* Outer section */
.testimonials-social {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-white);
  overflow: hidden;
}

/* Outer container — full width with side padding */
.container-full {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  box-sizing: border-box;
}

/* ── Flex row: testimonials col + social col side by side ── */
.ts-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
}

/* Testimonials column: takes ~65% of available width */
.testimonials-col {
  flex: 65;
  min-width: 0;
}

/* Social column: takes ~35% of available width */
.social-col {
  flex: 16;
  min-width: 0;
}

/* ── Testimonials column content ── */
.testimonials-col .section-tag {
  display: block;
  margin-bottom: 0.5rem;
}

.testimonials-col h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 1.5rem;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  min-height: 280px;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text p {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.testimonial-author img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.dot.active {
  background: var(--color-primary);
}

/* ── Social column content ── */
.social-col .section-tag {
  display: block;
  margin-bottom: 0.75rem;
}

.fb-embed-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  position: relative;
}

.fb-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  outline: none;
  border: none;
  min-width: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.footer-main {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-main .container {
  max-width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-map {
  min-width: 0;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1rem;
  filter: brightness(2);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-footer-link);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: normal;
}

.footer-links h3,
.footer-contact h3,
.footer-map h3 {
  font-size: 1rem;
  color: var(--color-footer-text);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-footer-link);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.contact-phone,
.contact-email {
  color: var(--color-footer-link);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  overflow-wrap: break-word;
  word-break: normal;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-footer-link);
  transition: background var(--transition), color var(--transition);
}

.social-icons a:hover {
  background: var(--color-primary);
  color: #fff;
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius);
}

/* Addresses */
.footer-addresses {
  background: var(--color-footer-bg);
  padding: 2rem 0 3rem;
}

.addresses-heading {
  text-align: center;
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.addresses-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.address-card {
  background: rgba(65, 65, 65, 0.603);
  color: #fff;
  padding: 1.5rem 1.75rem;
  width: 320px;
  max-width: 100%;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-green);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}

.address-card:hover {
  transform: translateY(-4px);
}

.address-card h4 {
  color: var(--color-green);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.address-card p {
  color: #d1d1d1;
  font-size: 0.9rem;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Footer Bottom */
.footer-bottom {
  background: var(--color-footer-bg);
  padding-bottom: 1.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--color-footer-link);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 41, 224, 0.4);
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animated {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-map {
    grid-column: 1 / -1;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stack testimonials + social on Nest Hub / tablet */
  .ts-row {
    flex-direction: column;
    gap: 2rem;
  }

  .testimonials-col {
    flex: none;
    width: 100%;
  }

  .testimonial-carousel {
    min-height: auto;
    width: 100%;
  }

  .social-col {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-col .section-tag {
    width: 100%;
  }

  .fb-embed-wrapper {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  .fb-embed-wrapper iframe {
    height: 600px;
  }
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing: 2 cards per row on tablet */
  .pricing-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-image {
    max-width: 420px;
    margin-inline: auto;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.75rem 0;
  }

  .site-nav a {
    padding: 0.65rem 1.5rem;
  }

  .site-header {
    position: relative;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing: single column on mobile */
  .pricing-card {
    flex: 1 1 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-social .container-full {
    padding-inline: 1rem;
  }

  .testimonial-carousel {
    padding: 1.5rem 1rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .fb-embed-wrapper {
    max-width: 100%;
  }

  .fb-embed-wrapper iframe {
    height: 500px;
  }
}

@media (max-width: 420px) {
  .testimonial-carousel {
    padding: 1rem 0.875rem;
  }

  .carousel-controls {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {

  .testimonials-social,
  .container-full,
  .testimonials-col,
  .testimonial-carousel {
    width: 100%;
    max-width: 100%;
  }

  .social-col {
    align-items: center;
  }

  .fb-embed-wrapper {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .fb-embed-wrapper iframe {
    width: 100%;
    height: 460px;
  }

  .testimonials-col h2 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9000;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-logo img {
  height: 72px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.25rem 0.5rem;
  margin-top: 0.25rem;
}

.mobile-nav-links {
  padding: 1.5rem 1.5rem 2rem;
}

.mobile-nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-links a {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--color-primary);
  text-decoration: none;
}