@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --primary: #f97316;
  --primary-light: #fb923c;
  --primary-dark: #ea580c;
  --paper: #ffffff;
  --cream: #fff8f4;
  --ink: #1f2937;
  --ink-soft: #2b3648;
  --text: #374151;
  --muted: #6b7280;
  --on-dark: #e7eaf0;
  --on-dark-muted: #9aa4b4;
  --border: rgba(249, 115, 22, 0.15);
  --shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
  --primary-gradient: linear-gradient(
    135deg,
    #fb923c 0%,
    #f97316 55%,
    #ea580c 100%
  );
  --glow: 0 14px 34px rgba(249, 115, 22, 0.45);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --font-hero: "Fraunces", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      rgba(249, 115, 22, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(249, 115, 22, 0.04),
      transparent 40%
    ),
    #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title .accent {
  color: var(--primary);
}

.section-head {
  max-width: 640px;
  margin-bottom: 55px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
  margin-bottom: 55px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 40px 0;
  transition: 0.35s ease;
}

.navbar {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: transparent;
  box-shadow: none;
  border-radius: 16px;
  transition: 0.35s ease;
  overflow: visible;
}

/* --- Scrolled Header --- */
.header.scrolled .navbar {
  background: #0b1220;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* --- Nav Links --- */
.nav-menu a,
.dropdown > a span,
.nav-toggle {
  color: #fff;
  transition: color 0.35s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f97316 !important;
}

/* --- Scrolled Nav Links --- */
.header.scrolled .nav-menu a,
.header.scrolled .dropdown > a span,
.header.scrolled .nav-toggle {
  color: #ffffff;
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
  color: #f97316 !important;
}

/* --- Dropdown --- */
.dropdown-menu a,
.submenu a {
  color: var(--ink);
}

.header.scrolled .dropdown-menu a,
.header.scrolled .submenu a {
  color: var(--ink);
}

.header.scrolled .dropdown-menu a:hover,
.header.scrolled .dropdown-menu .has-submenu.active > a,
.header.scrolled .dropdown-menu .has-submenu:hover > a {
  color: #fff;
  background: var(--primary);
}

.header.scrolled .dropdown-menu a:hover,
.header.scrolled .dropdown-menu .has-submenu.active > a,
.header.scrolled .dropdown-menu .has-submenu:hover > a {
  color: black;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.logo img {
  height: 170px;
  width: auto;
  object-fit: contain;
}

.footer-brand .logo img {
  height: 160px;
}

.nav-menu {
  margin-left: 20px;
  margin-right: auto;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}

.nav-menu a::after {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown > a span {
  font-size: 10px;
  transition: transform 0.3s;
  display: inline-block;
}

.dropdown:hover > a span {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 145%;
  left: 0;
  width: 250px;
  background: #fff;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 4px 4px;
  padding: 0;
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 40;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  position: relative;
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.dropdown-menu a {
  display: block;
  color: var(--ink);
  padding: 15px 24px;
  font-size: 14.5px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

.dropdown-menu a:hover {
  background: var(--primary);
  color: #fff;
  padding-left: 28px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu .has-submenu.active > a,
.dropdown-menu .has-submenu:hover > a {
  background: var(--primary);
  color: #fff;
  padding-left: 28px;
}

.submenu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  background: #fff;
  border-top: 3px solid var(--primary);
  border-radius: 0 4px 4px 0;
  padding: 0;
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: 0.3s;
  z-index: 50;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.submenu li a {
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: normal;
  line-height: 1.45;
}

.submenu li a:hover {
  padding-left: 26px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 700;
  transition: 0.35s;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.55);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.08);
  animation: heroKenBurns 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 17, 31, 0.78) 0%,
    rgba(8, 17, 31, 0.62) 45%,
    rgba(8, 17, 31, 0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 900px;
  max-width: 90%;
}

.hero-tag {
  display: inline-block;
  color: var(--primary-light);
  font-family: var(--font-hero);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-hero);
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.hero p {
  color: #dfe3ea;
  font-size: 18px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-hero);
  font-size: 16px;
  font-weight: 700;
  transition: 0.35s;
  box-shadow: var(--glow);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(249, 115, 22, 0.55);
}

.hero-shape-right,
.hero-shape-left {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid var(--primary);
  transform: rotate(18deg);
  z-index: 5;
  opacity: 0.6;
}

.hero-shape-right {
  right: -120px;
  top: -120px;
}

.hero-shape-left {
  left: -120px;
  bottom: -120px;
}

/* ===== STATS ===== */
.stats-wrap {
  position: relative;
  z-index: 30;
  margin-top: -95px;
}

.stats-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  box-shadow: 0 25px 60px rgba(31, 41, 55, 0.35);
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0 26px,
    rgba(249, 115, 22, 0.35) 26px 27px
  );
  opacity: 0.18;
  pointer-events: none;
}

.stat-item {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.stat-item .num .suffix {
  color: var(--primary-light);
}

.stat-item .label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--on-dark-muted);
  letter-spacing: 0.02em;
}

/* ===== ABOUT ===== */
.about {
  padding: 140px 0 90px;
}

.about .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* Left thora bara, right thora chhota */
  gap: 60px;
  align-items: stretch;
  max-width: 1250px; /* Thora bara container */
}

/* ===== LEFT: 1 FULL IMAGE ===== */
.about-media {
  position: relative;
  display: flex;
  align-items: stretch;
}

.about-full-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(31, 41, 55, 0.15);
  display: flex;
}

.about-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag Chip - Positioned on Image */
.about-media .tag-chip {
  position: absolute;
  left: -20px;
  bottom: 30px;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}

.tag-chip .icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.tag-chip .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.tag-chip .label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

/* ===== RIGHT: CONTENT ===== */
.about-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.about-body .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}

.about-body .section-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0;
}

.about-body p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.about-body h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.about-body ul {
  margin: 18px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.about-body ul li i {
  color: var(--primary);
  font-size: 14px;
}

.about-body .outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
  align-self: flex-start;
}

.about-body .outline-btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 100px 0 70px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .about-media {
    min-height: 350px;
  }

  .about-full-image img {
    height: 350px;
  }

  .about-media .tag-chip {
    left: 15px;
    bottom: -25px;
  }

  .about-body .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 80px 0 60px;
  }

  .about-media {
    min-height: 250px;
  }

  .about-full-image img {
    height: 250px;
  }

  .about-body .section-title {
    font-size: 24px;
  }

  .about-body ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-media .tag-chip {
    left: 10px;
    bottom: -20px;
    padding: 12px 16px;
    max-width: 170px;
  }

  .tag-chip .icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .tag-chip .num {
    font-size: 15px;
  }

  .tag-chip .label {
    font-size: 10px;
  }
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: 0.3s;
}

.outline-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners .marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollMarquee 28s linear infinite;
}

.marquee-track .brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--muted);
  opacity: 0.55;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* ===== HOVER - ORANGE ===== */
.marquee-track .brand:hover {
  color: #fb923c;
  opacity: 1;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ============================================================
   ===== CASE STUDIES - REDESIGNED (6 CARDS) =====
   ============================================================ */
.cases {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cases::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cases-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.case-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 30px 32px;
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.06);
  border: 1px solid rgba(31, 41, 55, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.case-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.case-card-new:hover::before {
  transform: scaleX(1);
}

.case-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.2);
}

.case-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.case-card-new:hover .case-icon {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.05) rotate(-6deg);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.case-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.case-card-new h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.case-card-new:hover h3 {
  color: var(--primary-dark);
}

.case-card-new p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
}

.case-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.case-link:hover::after {
  width: 100%;
}

.case-link i {
  transition: transform 0.3s ease;
}

.case-link:hover i {
  transform: translateX(6px);
}

/* ===== WHY CHOOSE US ===== */
.choose {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.choose .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.choose-content {
  position: relative;
}

.choose-text {
  margin: 28px 0 45px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.choose-list {
  display: grid;
  gap: 22px;
  margin-bottom: 45px;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.choose-item i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.25);
}

.choose-item h4 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.choose-item p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.choose-image {
  position: relative;
}

.image-card {
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.image-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.image-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
  transition: 0.6s;
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(249, 115, 22, 0.25);
  border-radius: 24px;
  left: -35px;
  bottom: -35px;
  transform: rotate(20deg);
}

/* ===== SERVICES / CASE STUDIES ===== */
.services {
  padding: 100px 0 80px;
  background: #f7f8fa;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADING ===== */
.services-head {
  text-align: center;
  margin-bottom: 50px;
}

.services-head .eyebrow {
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5a623;
  display: inline-block;
  margin-bottom: 6px;
}

.services-head .section-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.process::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.process .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== HEADING ===== */
.process-head {
  text-align: center;
  margin-bottom: 70px;
}

.process-head .eyebrow {
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5a623;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
}

.process-head .eyebrow::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  width: 35px;
  height: 2px;
  background: #f5a623;
  transform: translateY(-50%);
}

.process-head .eyebrow::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  width: 35px;
  height: 2px;
  background: #f5a623;
  transform: translateY(-50%);
}

.process-head .section-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.process-head .section-title br {
  display: none;
}

.process-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #6b7280;
  letter-spacing: 0.2px;
}

/* ===== PROCESS GRID ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: 16px;
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.04);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #f7c948);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.15);
}

.card-number {
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #f5a623;
  opacity: 0.3;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.process-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.08);
  color: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #f5a623, #f7c948);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.process-card h4 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.process-card:hover h4 {
  color: #f5a623;
}

.process-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 16px 0;
}

.card-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #f7c948);
  border-radius: 10px;
  margin: 0 auto;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.process-card:hover .card-line {
  opacity: 1;
  width: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-head .section-title {
    font-size: 34px;
  }

  .process-head .eyebrow::before,
  .process-head .eyebrow::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 80px 0 60px;
  }

  .process-head {
    margin-bottom: 50px;
  }

  .process-head .section-title {
    font-size: 28px;
  }

  .process-head .section-title br {
    display: block;
  }

  .process-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .process-grid {
    gap: 18px;
  }

  .process-card {
    padding: 28px 18px 24px;
    border-radius: 14px;
  }

  .process-card h4 {
    font-size: 16px;
  }

  .process-card p {
    font-size: 13px;
  }

  .process-icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .card-number {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .process {
    padding: 50px 0 40px;
  }

  .process-head {
    margin-bottom: 35px;
  }

  .process-head .section-title {
    font-size: 24px;
  }

  .process-head .eyebrow {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .process-subtitle {
    font-size: 13px;
    line-height: 1.7;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-card {
    padding: 20px 14px 18px;
    border-radius: 12px;
  }

  .process-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .process-card p {
    font-size: 11.5px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .card-number {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .card-line {
    width: 30px;
    height: 2px;
  }

  .process-card:hover .card-line {
    width: 40px;
  }

  .process-card::before {
    height: 3px;
  }
}
/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background: #0b1220;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(249, 115, 22, 0.35) 1.5px,
    transparent 1.5px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 70% at 50% 45%,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 60% 70% at 50% 45%,
    #000 40%,
    transparent 75%
  );
  opacity: 0.5;
  pointer-events: none;
}

.testimonials .section-head.center {
  position: relative;
  z-index: 2;
}

.testimonials .eyebrow {
  color: var(--primary-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
}

.testimonials .section-title {
  color: #fff;
}

.testi-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  position: relative;
}

.testi-card.is-active {
  transform: translateY(-14px);
}

.testi-card .indicator {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.testi-card .indicator::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
}

.testi-card .quote-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 18px;
}

.testi-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--on-dark-muted);
  margin-bottom: 24px;
}

.testi-card .divider {
  width: 60%;
  margin: 0 auto 20px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testi-card .name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.testi-card .role {
  font-size: 12.5px;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.testi-avatars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.testi-avatars .avatar-line {
  position: relative;
  height: 1px;
  background: rgba(249, 115, 22, 0.5);
}

.testi-avatars .avatar-line img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0b1220;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.5);
}

/* ===== TEAM ===== */
.team {
  padding: 110px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(249, 115, 22, 0.14),
      transparent 40%
    ),
    radial-gradient(circle at 85% 80%, rgba(249, 115, 22, 0.1), transparent 45%);
  pointer-events: none;
}

.team .section-head .eyebrow {
  color: var(--primary-light);
}

.team .section-head .eyebrow::before {
  background: var(--primary-light);
}

.team .section-title {
  color: #fff;
  position: relative;
  z-index: 2;
}

.team-track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.team-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 4px 24px;
  animation: teamScroll 18s linear infinite;
}

.team-track:hover {
  animation-play-state: paused;
}

@keyframes teamScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.team-card {
  flex: 0 0 260px;
  width: 260px;
  background: var(--ink-soft);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: 0.35s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.team-index {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dark-muted);
  background: rgba(8, 17, 31, 0.55);
  backdrop-filter: blur(4px);
  padding: 4px 9px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.team-photo {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: 0.4s;
  filter: grayscale(15%);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.team-info {
  padding: 20px 22px 24px;
  text-align: center;
  border-top: 2px solid var(--primary);
}

.team-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.role-pill {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: var(--primary-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.14),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.faq::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.faq .container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.faq-left {
  position: relative;
}

.faq-left .eyebrow {
  margin-bottom: 16px;
}

.faq-left .section-title {
  font-size: 38px;
  margin-bottom: 48px;
}

.faq-media {
  position: relative;
  padding: 14px;
}

.faq-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--border);
  border-radius: 32px;
  transform: rotate(-3deg);
  z-index: 0;
}

.faq-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow:
    0 40px 90px rgba(31, 41, 55, 0.16),
    0 0 0 8px #fff;
}

.faq-circle {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: -30px;
  right: -30px;
  border-radius: 50%;
  background: var(--primary-gradient);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.45);
  z-index: 2;
  opacity: 0.95;
}

.faq-circle::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0.9;
}

.faq-right {
  position: relative;
}

.faq-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 18px;
}
.faq-p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 44px;
}

.faq-title span {
  color: var(--primary);
}

.faq-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
}

.faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 22px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.04);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary-gradient);
  transition: width 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(31, 41, 55, 0.09);
  border-color: rgba(249, 115, 22, 0.25);
}

.faq-item.open {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 26px 60px rgba(249, 115, 22, 0.16);
}

.faq-item.open::before {
  width: 4px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  padding: 28px 32px;
  user-select: none;
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-item.open .faq-question span:first-child {
  color: var(--primary-dark);
}

.plus {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(31, 41, 55, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.faq-item:hover .plus {
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.18);
}

.faq-item.open .plus {
  background: var(--primary-gradient);
  color: #fff;
  transform: rotate(135deg);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    transform 0.4s ease;
}

.faq-answer p {
  padding: 0 32px 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA BAND ===== */
.cta-band {
  margin: 0 auto 110px;
  max-width: 1280px;
  background: var(--ink);
  border-radius: 24px;
  padding: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  width: 90%;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: var(--primary);
  opacity: 0.18;
  border-radius: 50%;
}

.cta-band h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.cta-band p {
  color: var(--on-dark-muted);
  margin-top: 10px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 8%;
  background: #081120;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  width: 350px;
  height: 350px;
  background: #ff6b00;
  position: absolute;
  top: -120px;
  left: -120px;
  border-radius: 50%;
  opacity: 0.15;
}

.contact::after {
  content: "";
  width: 300px;
  height: 300px;
  background: #ffffff;
  position: absolute;
  bottom: -150px;
  right: -120px;
  border-radius: 50%;
  opacity: 0.05;
}

.contact-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title span {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}

.contact-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #081120;
}

.contact-title p {
  color: #666;
  line-height: 1.8;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border: none;
  background: #f5f6fa;
  border-radius: 15px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #ff6b00;
}

textarea {
  resize: none;
  margin-bottom: 25px;
}

button {
  width: 100%;
  padding: 18px;
  border: none;
  background: #ff6b00;
  color: #fff;
  font-size: 17px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #081120;
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-top: 0;
  overflow: hidden;
}

.footer-cta {
  background: var(--primary-gradient);
  padding: 26px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-cta-left,
.footer-cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.footer-cta-left h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-cta-right a {
  background: rgba(8, 17, 31, 0.5);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 30px;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}

.footer-cta-right a:hover {
  background: rgba(8, 17, 31, 0.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 40px;
  padding: 70px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 18px;
  height: 160px;
}

.footer-brand p {
  color: var(--on-dark-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--on-dark-muted);
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-newsletter p {
  color: var(--on-dark-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--on-dark-muted);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.4);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  color: var(--on-dark-muted);
}

.footer-bottom a {
  color: var(--on-dark-muted);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

.footer-bottom .links {
  display: flex;
  gap: 22px;
}

/* ===== FLOATING ELEMENTS ===== */
.scroll-top-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s;
  z-index: 500;
  overflow: visible;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(0) scale(1.1);
}

.scroll-top-btn i {
  font-size: 24px;
  position: relative;
  z-index: 5;
  animation: arrowJump 1.2s infinite;
}

.scroll-top-btn::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.8);
  filter: blur(16px);
  z-index: -3;
}

.scroll-top-btn .wave {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(249, 115, 22, 0.45);
  border-radius: 50%;
  animation: ring 2s linear infinite;
}

.scroll-top-btn .wave2 {
  animation-delay: 1s;
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  z-index: 9999;
  overflow: visible;
  box-shadow:
    0 12px 35px rgba(255, 140, 0, 0.65),
    0 0 40px rgba(255, 140, 0, 0.45);
  animation: float 2s ease-in-out infinite;
}

.whatsapp-float i {
  position: relative;
  z-index: 5;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.75);
  filter: blur(14px);
  z-index: -2;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 3px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  animation: signal 2s infinite;
}

.mobile-has-sub > .mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}

.mobile-has-sub > .mobile-parent i {
  font-size: 12px;
  color: var(--primary);
  transition: transform 0.3s;
}

.mobile-has-sub.open > .mobile-parent i {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 14px;
  border-left: 2px solid var(--border);
}

.mobile-has-sub.open > .mobile-submenu {
  max-height: 1200px;
}

.mobile-submenu li {
  border-bottom: none !important;
}

.mobile-submenu > li > a,
.mobile-submenu > li > .mobile-parent {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 10px 4px !important;
}

.mobile-nav ul > li > a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.page-content {
  min-height: 100vh;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes signal {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes arrowJump {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes ring {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.16) translate(-1.5%, -1%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .about .container,
  .choose .container,
  .faq .container {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 460px;
    margin: 0 auto 30px;
  }

  .cases-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    flex-basis: 280px;
    width: 280px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .process-head {
    flex-direction: column;
    gap: 20px;
  }
  .process-intro {
    max-width: none;
  }
  .process-grid {
    flex-direction: column;
    gap: 40px;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .process-dot-left,
  .process-dot-right {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-menu,
  .nav-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-slide {
    padding-top: 90px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .logo img {
    height: 44px;
  }

  .page-banner {
    padding: 150px 0 70px;
  }

  .page-banner-inner h1 {
    font-size: 32px;
  }

  .team-card {
    flex-basis: 220px;
    width: 220px;
  }

  .team-photo {
    height: 240px;
  }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 30px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .contact-title h2 {
    font-size: 30px;
  }

  .faq-left .section-title {
    font-size: 30px;
  }
  .faq-title {
    font-size: 26px;
  }
  .faq-question {
    padding: 22px;
  }
  .faq-answer p {
    padding: 0 22px 24px;
  }
  .faq-question span:first-child {
    font-size: 16px;
  }
  .plus {
    width: 40px;
    height: 40px;
  }
  .faq-circle {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 640px) {
  .cases-grid-new {
    grid-template-columns: 1fr;
  }

  .case-card-new {
    padding: 30px 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .service-card {
    flex-basis: 82%;
    width: 82%;
  }

  .stats-card {
    grid-template-columns: 1fr 1fr;
  }

  .about-body ul {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-media-primary {
    width: 100%;
  }

  .about-media-secondary {
    width: 68%;
  }

  .about-media .tag-chip {
    left: 0;
    bottom: -20px;
    max-width: 190px;
  }

  .about-media {
    padding-bottom: 50px;
  }

  .logo img {
    height: 40px;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 0 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .cases-grid-new {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ================================================================
   PREMIUM BADGE & TITLE STYLES
   ================================================================ */

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.premium-badge i {
  color: var(--primary);
  font-size: 14px;
}

.premium-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.premium-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.premium-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 4px;
  margin: 24px auto 0;
}

.premium-center {
  text-align: center;
  margin-bottom: 60px;
}

.premium-center .premium-badge {
  justify-content: center;
}

/* ================================================================
   CASE STUDIES - PREMIUM
   ================================================================ */

.cases.premium {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.cases.premium::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.cases.premium::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

/* --- Premium Grid --- */
.cases-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* --- Premium Card --- */
.case-card-premium {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px 36px;
  box-shadow: 0 10px 40px rgba(31, 41, 55, 0.06);
  border: 1px solid rgba(31, 41, 55, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.case-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.case-card-premium:hover::before {
  transform: scaleX(1);
}

.case-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.15);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.03),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.case-card-premium:hover .card-glow {
  opacity: 1;
}

/* Card Number */
.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: rgba(31, 41, 55, 0.08);
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}

.case-card-premium:hover .card-number {
  color: rgba(249, 115, 22, 0.2);
}

/* Card Icon */
.card-icon-wrapper {
  margin-bottom: 20px;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.case-card-premium:hover .card-icon {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.35);
}

/* Card Badge */
.card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(249, 115, 22, 0.08);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 600;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

/* Card Title */
.case-card-premium h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.case-card-premium:hover h3 {
  color: var(--primary-dark);
}

/* Card Description */
.case-card-premium p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Card Stats */
.card-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 12px;
}

.card-stats span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-stats span strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

/* Card Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.card-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(8px);
}

/* ================================================================
   CONTACT US - PREMIUM
   ================================================================ */

.contact-premium {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact-premium::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.contact-premium::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.contact-premium-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* --- Left Info --- */
.contact-premium-info .premium-badge {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--primary-light);
}

.contact-premium-info .premium-badge i {
  color: var(--primary-light);
}

.contact-premium-info .premium-title {
  color: #fff;
  font-size: 42px;
}

.contact-premium-desc {
  color: var(--on-dark-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 480px;
}

/* Contact Details */
.contact-premium-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.05);
}

.detail-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-item div span {
  font-size: 12px;
  color: var(--on-dark-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-item div strong {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.detail-item div strong a {
  color: #fff;
  transition: color 0.3s ease;
}

.detail-item div strong a:hover {
  color: var(--primary-light);
}

/* Socials */
.contact-premium-socials {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-premium-socials span {
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 500;
}

.contact-premium-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-muted);
  transition: all 0.3s ease;
}

.contact-premium-socials a:hover {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

/* --- Right Form --- */
.contact-premium-form {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.form-header h3 span {
  color: var(--primary);
}

.form-header p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

/* Form Fields */
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-field label span {
  color: var(--primary);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  padding-right: 44px;
  border: 2px solid rgba(31, 41, 55, 0.06);
  border-radius: 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  transition: all 0.3s ease;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.form-field select {
  appearance: none;
  cursor: pointer;
}

.form-field i {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.form-field input:focus + i,
.form-field textarea:focus + i {
  color: var(--primary);
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  padding-right: 44px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(249, 115, 22, 0.4);
}

.submit-btn .btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.submit-btn:hover .btn-glow {
  opacity: 1;
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(6px);
}

/* ================================================================
   RESPONSIVE - PREMIUM SECTIONS
   ================================================================ */

@media (max-width: 1024px) {
  .cases-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-premium-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-premium-info .premium-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .premium-title {
    font-size: 34px;
  }

  .cases-grid-premium {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .case-card-premium {
    padding: 32px 24px;
  }

  .contact-premium-form {
    padding: 30px 24px;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .contact-premium-details {
    gap: 16px;
  }

  .detail-item div strong {
    font-size: 14px;
  }

  .form-header h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .premium-title {
    font-size: 28px;
  }

  .premium-sub {
    font-size: 15px;
  }

  .card-stats {
    flex-direction: column;
    gap: 8px;
  }

  .contact-premium-socials {
    flex-wrap: wrap;
  }
}

/* ================================================================
   BREADCRUMB
   ================================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--on-dark-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--on-dark-muted);
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb .separator {
  color: var(--primary);
}

.breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* ================================================================
   MAIN SERVICES
   ================================================================ */

.main-services {
  padding: 80px 0;
  background: #fff;
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-block {
  text-align: center;
  padding: 30px 20px;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.15);
}

.service-block-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-block p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================
   LLC DETAIL
   ================================================================ */

.llc-detail {
  padding: 80px 0;
  background: var(--cream);
}

.llc-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.llc-content .mini-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-weight: 600;
}

.llc-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.llc-content h2 .accent {
  color: var(--primary);
}

.llc-content > p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 30px;
}

.llc-steps h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: rgba(249, 115, 22, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
  flex-shrink: 0;
  min-width: 44px;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */

.why-choose {
  padding: 100px 0;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}

.why-list {
  margin-top: 14px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}

.why-list li i {
  color: var(--primary);
  font-size: 14px;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-grid .faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 41, 55, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-grid .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.15);
}

.faq-grid .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  user-select: none;
}

.faq-grid .faq-item .faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-grid .faq-item.open .faq-toggle {
  background: var(--primary-gradient);
  color: #fff;
  transform: rotate(45deg);
}

.faq-grid .faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 26px;
}

.faq-grid .faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 26px 24px;
}

.faq-grid .faq-item .faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ================================================================
   SEND EMAIL
   ================================================================ */

.send-email {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.send-email::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.send-email-wrapper {
  position: relative;
  z-index: 2;
}

.send-email-content {
  text-align: center;
  margin-bottom: 50px;
}

.send-email-content .mini-badge {
  color: var(--primary-light);
  background: rgba(249, 115, 22, 0.12);
}

.send-email-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.send-email-content h2 .accent {
  color: var(--primary-light);
}

.send-email-content p {
  color: var(--on-dark-muted);
  font-size: 17px;
}

.send-email-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.send-email-steps .step {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.send-email-steps .step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
}

.send-email-steps .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.send-email-steps .step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.send-email-steps .step p {
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

.send-email-cta {
  text-align: center;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .main-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .llc-detail-grid {
    grid-template-columns: 1fr;
  }

  .send-email-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .llc-content h2 {
    font-size: 28px;
  }

  .send-email-content h2 {
    font-size: 28px;
  }

  .step-item {
    flex-direction: column;
  }

  .page-banner-inner h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .service-block {
    padding: 24px 16px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .faq-grid .faq-item .faq-question {
    padding: 16px 20px;
  }

  .faq-grid .faq-item .faq-question span:first-child {
    font-size: 14px;
  }
}

/* ================================================================
   LLC FORMATION PAGE - ADDITIONAL STYLES
   ================================================================ */

/* --- Page Banner Fix --- */
.page-banner {
  padding: 180px 0 80px;
  background: #0b1220;
  position: relative;
  overflow: hidden;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-banner-inner .eyebrow {
  color: var(--primary-light);
}

.page-banner-inner .eyebrow::before {
  background: var(--primary-light);
}

.page-banner-inner h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.page-banner-inner h1 .accent {
  color: var(--primary);
}

.page-banner-inner p {
  color: var(--on-dark-muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}

.banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- LLC Detail Grid Fix --- */
.llc-detail {
  padding: 80px 0;
  background: var(--cream);
}

.llc-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* --- Sidebar Cards Fix --- */
.llc-sidebar .sidebar-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(31, 41, 55, 0.05);
}

.llc-sidebar .sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.llc-sidebar .sidebar-card ul li {
  margin-bottom: 10px;
}

.llc-sidebar .sidebar-card ul li a {
  color: var(--muted);
  font-size: 14.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.llc-sidebar .sidebar-card ul li a::before {
  content: "→";
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.llc-sidebar .sidebar-card ul li a:hover {
  color: var(--primary);
}

.llc-sidebar .sidebar-card ul li a:hover::before {
  transform: translateX(4px);
}

.llc-sidebar .sidebar-card.highlight {
  background: var(--ink);
  border-color: transparent;
  text-align: center;
  color: #fff;
}

.llc-sidebar .sidebar-card.highlight h4 {
  color: #fff;
}

.llc-sidebar .sidebar-card.highlight p {
  color: var(--on-dark-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-light);
  margin: 0 auto 16px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}

.whatsapp-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* --- Why Choose Grid Fix --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}

.why-list {
  margin-top: 14px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}

.why-list li i {
  color: var(--primary);
  font-size: 14px;
}

/* --- FAQ Section Fix --- */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-grid .faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 41, 55, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-grid .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.15);
}

.faq-grid .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  user-select: none;
}

.faq-grid .faq-item .faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-grid .faq-item.open .faq-toggle {
  background: var(--primary-gradient);
  color: #fff;
  transform: rotate(45deg);
}

.faq-grid .faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 26px;
}

.faq-grid .faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 26px 24px;
}

.faq-grid .faq-item .faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* --- Send Email Section Fix --- */
.send-email {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.send-email-wrapper {
  position: relative;
  z-index: 2;
}

.send-email-content {
  text-align: center;
  margin-bottom: 50px;
}

.send-email-content .mini-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(249, 115, 22, 0.12);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 14px;
}

.send-email-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.send-email-content h2 .accent {
  color: var(--primary-light);
}

.send-email-content p {
  color: var(--on-dark-muted);
  font-size: 17px;
}

.send-email-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.send-email-steps .step {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.send-email-steps .step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
}

.send-email-steps .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.send-email-steps .step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.send-email-steps .step p {
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

.send-email-cta {
  text-align: center;
}

/* ================================================================
   RESPONSIVE FIXES FOR LLC PAGE
   ================================================================ */

@media (max-width: 1024px) {
  .llc-detail-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .send-email-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 150px 0 60px;
  }

  .page-banner-inner h1 {
    font-size: 32px;
  }

  .page-banner-inner p {
    font-size: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .llc-content h2 {
    font-size: 28px;
  }

  .send-email-content h2 {
    font-size: 28px;
  }

  .step-item {
    flex-direction: column;
  }

  .faq-grid .faq-item .faq-question {
    padding: 16px 20px;
  }

  .faq-grid .faq-item .faq-question span:first-child {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-banner-inner h1 {
    font-size: 28px;
  }

  .service-block {
    padding: 24px 16px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .send-email-steps .step {
    flex-direction: column;
    text-align: center;
  }

  .send-email-steps .step-icon {
    margin: 0 auto;
  }
}
/* ================================================================
   PRODUCT SOURCING PAGE - ADDITIONAL STYLES
   ================================================================ */

/* --- Sourcing Detail Section --- */
.sourcing-detail {
  padding: 80px 0;
  background: var(--cream);
}

.sourcing-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.sourcing-content .mini-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-weight: 600;
}

.sourcing-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.sourcing-content h2 .accent {
  color: var(--primary);
}

.sourcing-content > p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 30px;
}

/* --- Sourcing Features --- */
.sourcing-features {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.04);
}

.sourcing-features h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateX(4px);
}

.feature-item i {
  color: var(--primary);
  font-size: 18px;
  transition: color 0.3s ease;
}

.feature-item:hover i {
  color: #fff;
}

.feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: #fff;
}

/* --- Expertise Box --- */
.expertise-box {
  background: var(--ink);
  border-radius: 18px;
  padding: 30px 28px;
  color: #fff;
}

.expertise-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.expertise-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--on-dark-muted);
}

/* --- Sidebar --- */
.sourcing-sidebar .sidebar-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(31, 41, 55, 0.05);
}

.sourcing-sidebar .sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sourcing-sidebar .sidebar-card h4 i {
  color: var(--primary);
}

.sourcing-sidebar .sidebar-card ul li {
  margin-bottom: 10px;
}

.sourcing-sidebar .sidebar-card ul li a {
  color: var(--muted);
  font-size: 14.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.sourcing-sidebar .sidebar-card ul li a::before {
  content: "→";
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.sourcing-sidebar .sidebar-card ul li a:hover {
  color: var(--primary);
}

.sourcing-sidebar .sidebar-card ul li a:hover::before {
  transform: translateX(4px);
}

.sourcing-sidebar .sidebar-card.highlight {
  background: var(--ink);
  border-color: transparent;
  text-align: center;
  color: #fff;
}

.sourcing-sidebar .sidebar-card.highlight h4 {
  color: #fff;
  justify-content: center;
}

.sourcing-sidebar .sidebar-card.highlight p {
  color: var(--on-dark-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-light);
  margin: 0 auto 16px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}

.whatsapp-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* --- Why Choose Grid (already in style.css, but ensure) --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sourcing-detail-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sourcing-content h2 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .sourcing-features {
    padding: 22px 18px;
  }

  .expertise-box {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .sourcing-content h2 {
    font-size: 24px;
  }

  .feature-item {
    padding: 8px 12px;
    font-size: 13px;
  }
}
/* ================================================================
   WHY CHOOSE US - REAL STYLE
   ================================================================ */

.why-choose-real {
  padding: 100px 0;
  background: #fff;
}

.why-choose-real-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}

.why-choose-real-image {
  position: relative;
}

.image-placeholder {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(31, 41, 55, 0.1);
}

.image-placeholder img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-placeholder:hover img {
  transform: scale(1.04);
}

.why-choose-real-desc {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
}

.why-choose-real-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.why-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  transform: translateX(6px);
  border-color: rgba(249, 115, 22, 0.15);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.06);
}

.why-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-top: 2px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.why-feature-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ================================================================
   FAQ - REAL STYLE
   ================================================================ */

.faq-real {
  padding: 100px 0;
  background: var(--cream);
}

.faq-real-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-real-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 41, 55, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 41, 55, 0.02);
}

.faq-real-item:hover {
  border-color: rgba(249, 115, 22, 0.15);
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.06);
}

.faq-real-item.open {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 8px 35px rgba(249, 115, 22, 0.06);
}

.faq-real-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-real-question span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-real-item.open .faq-real-question span:first-child {
  color: var(--primary-dark);
}

.faq-real-toggle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.faq-real-item.open .faq-real-toggle {
  background: var(--primary-gradient);
  color: #fff;
}

.faq-real-item.open .faq-real-toggle i {
  transform: rotate(45deg);
}

.faq-real-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
  padding: 0 28px;
}

.faq-real-item.open .faq-real-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 24px;
}

.faq-real-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .why-choose-real-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-real-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .image-placeholder img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .why-choose-real {
    padding: 70px 0;
  }

  .why-choose-real-desc {
    font-size: 15px;
  }

  .why-feature-item {
    padding: 14px 16px;
  }

  .why-feature-item h4 {
    font-size: 15px;
  }

  .faq-real-question {
    padding: 18px 20px;
  }

  .faq-real-question span:first-child {
    font-size: 15px;
  }

  .faq-real-answer p {
    font-size: 14px;
  }

  .faq-real-item.open .faq-real-answer {
    padding: 0 20px 20px;
  }

  .image-placeholder img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .why-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-feature-icon {
    margin-bottom: 6px;
  }

  .faq-real-question {
    padding: 14px 16px;
  }

  .faq-real-question span:first-child {
    font-size: 14px;
  }

  .faq-real-toggle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ================================================================
   SERVICES PAGE - MAIN SERVICES GRID
   ================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
  background: #fff;
}

.service-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-card .service-link:hover {
  gap: 14px;
}

.service-card.highlight {
  background: var(--primary-gradient);
  color: #fff;
}

.service-card.highlight h3 {
  color: #fff;
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card.highlight .icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.service-card.highlight .service-link {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card.highlight .service-link:hover {
  border-bottom-color: #fff;
}

/* ================================================================
   FULL SERVICE MANAGEMENT - EXTRA STYLES
   ================================================================ */

.full-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.full-service-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.full-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.full-service-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.full-service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.full-service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================
   AMAZON SEO PAGE - EXTRA STYLES
   ================================================================ */

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.seo-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 26px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.seo-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.seo-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.seo-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================
   ALLIED SERVICES PAGE - EXTRA STYLES
   ================================================================ */

.allied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.allied-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.allied-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.allied-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.allied-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.allied-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ================================================================
   RESPONSIVE - SERVICES PAGES
   ================================================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .allied-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .full-service-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .allied-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    padding: 24px 20px;
  }

  .full-service-card {
    padding: 24px 20px;
  }

  .seo-card {
    padding: 24px 20px;
  }

  .allied-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .service-card h3 {
    font-size: 17px;
  }

  .full-service-card h3 {
    font-size: 16px;
  }

  .seo-card h3 {
    font-size: 16px;
  }

  .allied-card h3 {
    font-size: 15px;
  }
}
/* ================================================================
   CONTACT PAGE - STYLES
   ================================================================ */

.contact-page {
  padding: 80px 0;
  background: #fff;
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}

.contact-details div i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-details div:hover i {
  background: var(--primary-gradient);
  color: #fff;
}

.contact-details div a {
  color: var(--text);
  transition: color 0.3s ease;
}

.contact-details div a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 24px;
  border: 1px solid rgba(31, 41, 55, 0.04);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(31, 41, 55, 0.06);
  border-radius: 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
  margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(249, 115, 22, 0.4);
}

/* ================================================================
   CLIENT REVIEWS PAGE - STYLES
   ================================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
  background: #fff;
}

.review-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
}

.review-card .stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
}

.review-card .client-name {
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
}

.review-card .client-role {
  color: var(--muted);
  font-size: 14px;
}

/* ================================================================
   FREE AUDIT PAGE - STYLES
   ================================================================ */

.audit-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--cream);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.audit-form-wrapper input,
.audit-form-wrapper textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(31, 41, 55, 0.06);
  border-radius: 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.audit-form-wrapper input:focus,
.audit-form-wrapper textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.audit-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.audit-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.audit-form-wrapper .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.audit-form-wrapper .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(249, 115, 22, 0.4);
}

/* ================================================================
   ABOUT PAGE - STYLES
   ================================================================ */

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
  background: #fff;
}

.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-content .hero-btn {
  margin-top: 10px;
}

/* ================================================================
   CASE STUDIES PAGE - STYLES
   ================================================================ */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
  background: #fff;
}

.case-study-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.06);
  border: 1px solid rgba(31, 41, 55, 0.04);
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.12);
}

.case-study-card .case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-study-card .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-image img {
  transform: scale(1.06);
}

.case-study-card .case-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-card .case-body {
  padding: 28px 26px 32px;
}

.case-study-card .case-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.case-study-card .case-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.case-study-card .case-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.case-study-card .case-stats span {
  font-size: 13px;
  color: var(--muted);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 8px;
}

.case-study-card .case-stats strong {
  color: var(--ink);
}

.case-study-card .case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.case-study-card .case-link i {
  transition: transform 0.3s ease;
}

.case-study-card .case-link:hover i {
  transform: translateX(6px);
}

/* ================================================================
   RESPONSIVE - ALL PAGES
   ================================================================ */

@media (max-width: 1024px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info h3,
  .contact-form h3 {
    font-size: 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .audit-form-wrapper {
    padding: 28px 20px;
  }

  .audit-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 20px;
  }

  .case-study-card .case-body {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 480px) {
  .contact-details div {
    font-size: 14px;
  }

  .contact-details div i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .review-card p {
    font-size: 14px;
  }

  .case-study-card .case-body h3 {
    font-size: 17px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* ===== NAVBAR - HOVER EFFECTS ===== */

.nav-menu a {
  color: #ffffff;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

/* Underline on hover */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f97316 !important;
}

/* ===== DROPDOWN - FIX ===== */

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown > a span {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a span {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 145%;
  left: 0;
  width: 250px;
  background: #ffffff;
  border-top: 3px solid #f97316;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
  width: 100%;
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.dropdown-menu a {
  display: block;
  color: #1f2937 !important;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: #f97316;
  color: #ffffff !important;
  padding-left: 28px;
}

/* ===== SUBMENU ===== */

.has-submenu {
  position: relative;
}

.submenu {
  display: block;
  position: absolute;
  top: -8px;
  left: 100%;
  width: 280px;
  background: #ffffff;
  border-top: 3px solid #f97316;
  border-radius: 0 8px 8px 8px;
  padding: 8px 0;
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.submenu a {
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1f2937 !important;
}

.submenu a:hover {
  background: #f97316;
  color: #ffffff !important;
  padding-left: 26px;
}

/* ===== SCROLLED HEADER ===== */

.header.scrolled .nav-menu a {
  color: #ffffff;
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
  color: #f97316 !important;
}

.header.scrolled .dropdown-menu a {
  color: #1f2937 !important;
}

.header.scrolled .dropdown-menu a:hover {
  color: #ffffff !important;
}

/* ===== MOBILE NAV ===== */

.mobile-nav ul li a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: #f97316;
}

.mobile-has-sub > .mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-has-sub > .mobile-parent:hover {
  color: #f97316;
}

.mobile-has-sub > .mobile-parent i {
  font-size: 12px;
  color: #f97316;
  transition: transform 0.3s ease;
}

.mobile-has-sub.open > .mobile-parent i {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 14px;
  border-left: 2px solid rgba(249, 115, 22, 0.2);
}

.mobile-has-sub.open > .mobile-submenu {
  max-height: 1200px;
}

.mobile-submenu li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 10px 4px !important;
}
/* ================================================================
   HEADER LOGO - COMPLETE FIX
   ================================================================ */

.header .logo img {
  height: 170px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .header .logo img {
    height: 150px !important;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .header .logo img {
    height: 160px !important;
  }
}

@media (max-width: 480px) {
  .header .logo img {
    height: 150px !important;
  }
}
/* ================================================================
   FOOTER - COMPLETE FIX
   ================================================================ */

.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-top: 0;
  overflow: hidden;
}

/* --- Footer CTA --- */
.footer-cta {
  background: var(--primary-gradient);
  padding: 26px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-cta-left,
.footer-cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.footer-cta-left h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-cta-right a {
  background: rgba(8, 17, 31, 0.5);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 30px;
  letter-spacing: 0.02em;
  transition: background 0.3s;
  text-decoration: none;
}

.footer-cta-right a:hover {
  background: rgba(8, 17, 31, 0.75);
}

/* --- Footer Top --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 40px;
  padding: 70px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--on-dark-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  transition: 0.3s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-col ul li a {
  color: var(--on-dark-muted);
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

/* --- Newsletter --- */
.footer-newsletter p {
  color: var(--on-dark-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--on-dark-muted);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.4);
}

/* --- Footer Bottom --- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  color: var(--on-dark-muted);
}

.footer-bottom a {
  color: var(--on-dark-muted);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

.footer-bottom .links {
  display: flex;
  gap: 22px;
}

/* --- Footer Responsive --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom .links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 18px 0;
  }

  .footer-cta-left h4 {
    font-size: 16px;
  }

  .footer-cta-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer-cta-right a {
    font-size: 13px;
    padding: 8px 16px;
  }

  .footer-top {
    padding: 30px 0 20px;
    gap: 24px;
  }

  .footer-col h5 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .newsletter-form input {
    font-size: 13px;
    padding: 10px 14px;
  }

  .newsletter-form button {
    height: 42px;
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
/* ================================================================
   LOGO - FINAL FIX (Height: 130px, Top Margin: 6px)
   ================================================================ */

/* --- Header Logo --- */
.logo img {
  height: 130px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-top: 6px !important;
}

/* --- Footer Logo --- */
.footer-brand .logo img {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-top: 0 !important;
}

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  .logo img {
    height: 120px !important;
    margin-top: 5px !important;
  }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  .logo img {
    height: 110px !important;
    margin-top: 4px !important;
  }

  .footer-brand .logo img {
    height: 50px !important;
  }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  .logo img {
    height: 90px !important;
    margin-top: 3px !important;
  }

  .footer-brand .logo img {
    height: 45px !important;
  }
}

/* --- Very Small Mobile (400px) --- */
@media (max-width: 400px) {
  .logo img {
    height: 80px !important;
    margin-top: 2px !important;
  }

  .footer-brand .logo img {
    height: 40px !important;
  }
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .logo img {
    height: 45px !important;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .logo img {
    height: 40px !important;
  }

  .footer-brand .logo img {
    height: 40px !important;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 35px !important;
  }

  .footer-brand .logo img {
    height: 35px !important;
  }
}

/* --- Footer Logo --- */
.footer-brand .logo img {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .logo img {
    height: 150px !important;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .logo img {
    height: 160px !important;
  }

  .footer-brand .logo img {
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 150px !important;
  }

  .footer-brand .logo img {
    height: 55px !important;
  }
}
/* ================================================================
   NAVBAR - WITH LOGO HEIGHT 130px
   ================================================================ */

.navbar {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: transparent;
  box-shadow: none;
  border-radius: 16px;
  transition: 0.35s ease;
  overflow: visible;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .navbar {
    height: 78px;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 68px;
    padding: 0 12px;
  }
}
/* ================================================================
   HEADER
   ================================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 6px 40px 0;
  transition: 0.35s ease;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .header {
    padding: 4px 16px 0;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 3px 10px 0;
  }
}
/* ============================================================
   CLIENT REVIEWS - HOME PAGE
   ============================================================ */

.client-reviews-home {
  padding: 60px 20px;
  background: #fafcff;
}

.client-reviews-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.client-review-card-home {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 9 / 16;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.12);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.client-review-card-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 18, 32, 0.22);
}

.video-wrapper-home {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-wrapper-home img.video-thumb-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper-home iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-top-overlay-home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
}

.video-top-overlay-home .avatar-icon-home {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.video-top-overlay-home .video-meta-home h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.video-top-overlay-home .video-meta-home span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.video-play-btn-home {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: #ff0000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.video-play-btn-home:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 10px 26px rgba(255, 0, 0, 0.45);
}

.video-play-btn-home::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.client-review-card-home.is-playing .video-play-btn-home,
.client-review-card-home.is-playing .video-top-overlay-home,
.client-review-card-home.is-playing .video-thumb-home {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .client-reviews-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .video-play-btn-home {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .video-play-btn-home::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .video-top-overlay-home {
    padding: 10px 12px;
  }

  .video-top-overlay-home .avatar-icon-home {
    width: 28px;
    height: 28px;
  }

  .video-top-overlay-home .video-meta-home h4 {
    font-size: 12px;
  }

  .video-top-overlay-home .video-meta-home span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .client-reviews-home {
    padding: 40px 12px;
  }

  .client-reviews-grid-home {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .video-play-btn-home {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .video-play-btn-home::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }
}
.nav-btn-wrap {
  position: relative;
  margin-left: 10px;
}

.nav-btn-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 25px 50px rgba(17, 24, 39, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.nav-btn-wrap.open .nav-btn-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-btn-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-btn-dropdown a i {
  width: 18px;
  text-align: center;
  color: #f97316;
}

.nav-btn-dropdown a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316 !important;
}
/* ================================================================
   ✅ FINAL CLEAN NAVBAR + LOGO FIX (MOBILE + LAPTOP)
   Paste this at the VERY END of style.css.
   Isse pehle wale sab conflicting logo/navbar rules yeh khud
   override kar dega (kyunke ye file mein sabse aakhir mein hai).
   ================================================================ */

/* --- Base / Desktop Logo --- */
.logo img {
  height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-top: 0 !important;
}

.footer-brand .logo img {
  height: 200px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* --- Navbar height should scale with logo --- */
.navbar {
  height: 90px;
}

/* --- Tablet / Small Laptop (<=1024px) --- */
@media (max-width: 1024px) {
  .logo img {
    height: 80px !important;
  }
  .navbar {
    height: 80px;
  }
}

/* --- Mobile (<=768px) --- */
@media (max-width: 768px) {
  .header {
    padding: 10px 16px 0;
  }
  .navbar {
    height: 68px;
    padding: 0 16px;
  }
  .logo img {
    height: 52px !important;
  }
  .footer-brand .logo img {
    height: 160px !important;
  }
  .nav-menu,
  .nav-btn {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
}

/* --- Small Mobile (<=480px) --- */
@media (max-width: 480px) {
  .header {
    padding: 8px 12px 0;
  }
  .navbar {
    height: 58px;
    padding: 0 12px;
  }
  .logo img {
    height: 42px !important;
  }
  .footer-brand .logo img {
    height: 110px !important;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* --- Very Small Mobile (<=400px) --- */
@media (max-width: 400px) {
  .navbar {
    height: 52px;
  }
  .logo img {
    height: 36px !important;
  }
}

/* --- Mobile slide-in menu: consistent size at every breakpoint --- */
@media (max-width: 768px) {
  .mobile-nav {
    width: 280px;
    right: -300px;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    width: 260px;
    right: -280px;
  }
}

.mobile-nav.open {
  right: 0 !important;
}

