/* =====================================================
   MAGNEM GROUP AFRICA LTD — GLOBAL STYLESHEET
   Light-dominant scheme: white content sections,
   dark heroes + footer, orange accents.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ───────────────────────── */
:root {
  --color-orange: #F28C38;
  --color-orange-dark: #d97420;
  --color-dark: #1A1A1A;
  --color-dark2: #333333;
  --color-white: #FFFFFF;
  --color-off-white: #F7F6F4;
  --color-light: #F0EDE8;
  --color-grey: #888888;
  --color-grey-light: #555555;
  --color-border: rgba(0, 0, 0, 0.08);

  --font-display: 'Cormorant Garamond', serif;
  --font-sub: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container-max: 1200px;
  --section-pad: 100px;
  --section-pad-m: 60px;

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-orange: 0 4px 24px rgba(242, 140, 56, 0.35);
}

/* ── Reset & Base ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.6s ease both;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Enhance visibility: contrast, sharpness, brightness */
  filter: contrast(1.15) brightness(1.08) saturate(1.12) drop-shadow(0 0 2px rgba(0, 0, 0, 0.08));
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Container ───────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ── Typography ──────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.sub-heading {
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 12px;
  display: block;
}

.accent {
  color: var(--color-orange);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: #fff;
  border: 2px solid var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: scale(1.02);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: scale(1.02);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-secondary-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: scale(1.02);
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border: 2px solid var(--color-dark);
}

.btn-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: scale(1.02);
  color: #fff;
}

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--color-orange);
}

.card h3,
.card h4 {
  color: var(--color-dark);
}

.card p {
  color: var(--color-grey);
}

/* ── Section Spacing ─────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-orange {
  background: var(--color-orange);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-m) 0;
  }
}

/* ── Section Heading ─────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 12px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--color-grey);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .section-head p {
    font-size: 0.875rem;
  }
}

/* ── Grain Texture (Heroes) ──────────────────────── */
.grain-overlay {
  position: relative;
}

.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.grain-overlay>* {
  position: relative;
  z-index: 2;
}

/* ───────────────────────────────────────────────────
   NAVIGATION
   ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  height: 80px;
  background: transparent;
  overflow: visible;
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--color-white);
  height: 80px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Logo */
.nav-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
  height: 100%;
  padding-left: 24px;
}

.logo-img {
  height: 320px !important;
  width: auto !important;
  display: block;
  filter: none !important;
}


/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--color-dark2);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-orange);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--color-orange);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
  color: var(--color-white) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-cta:hover {
  color: var(--color-dark);
  text-decoration: none !important;
  border-bottom: 2px solid var(--color-dark) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1010;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.scrolled .nav-hamburger span {
  background: var(--color-dark);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.nav-mobile-overlay a {
  font-family: var(--font-sub);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 12px 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.nav-mobile-overlay a:hover,
.nav-mobile-overlay a.active {
  color: var(--color-orange);
}

.nav-mobile-overlay .btn {
  margin-top: 20px;
  font-size: 1rem;
  white-space: normal;
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-overlay {
    gap: 20px;
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-mobile-overlay a {
    font-size: 1.6rem;
  }

  .nav-mobile-overlay .btn {
    margin-top: 20px;
    font-size: 0.95rem;
  }
}

/* ───────────────────────────────────────────────────
   FOOTER (stays dark)
   ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-dark);
  border-top: 3px solid var(--color-orange);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 8px;
}

.footer-logo img {
  display: block;
  height: 200px !important;
  width: auto !important;
}

.footer-tagline {
  margin: 8px 0 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-orange);
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--color-orange);
  font-weight: 500;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
  font-style: italic;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 28px;
  }



  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-nav h4,
  .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

/* ── WhatsApp Float ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: var(--shadow-orange);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s ease infinite;
  min-width: 56px;
  min-height: 56px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(242, 140, 56, 0.6);
  animation: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 140, 56, 0.5);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(242, 140, 56, 0);
  }
}

/* ── Scroll Reveal Animations ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── Hero (shared, always dark) ──────────────────── */
.hero {
  background: var(--color-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-full {
  min-height: 100vh;
  padding: 180px 0 80px;
}

.hero-short {
  min-height: 60vh;
  padding: 160px 0 80px;
}

@media (max-width: 768px) {
  .hero-full {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-short {
    min-height: auto;
    padding: 100px 0 60px;
  }
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--color-orange);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .breadcrumb span {
    margin: 0 6px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.65rem;
  }
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: var(--color-orange);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 12px;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .cta-banner p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

/* ── Link Arrows ─────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 10px;
  color: var(--color-orange-dark);
}

/* ── Grid Helpers ────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-2 {
    gap: 32px;
  }
}

@media (max-width: 480px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: 20px;
  }
}

/* ── Pills ───────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-orange);
  color: var(--color-orange);
  transition: all var(--transition);
}

.pill:hover {
  background: var(--color-orange);
  color: #fff;
}

.pill-white {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

/* ── Accordion (FAQ) ─────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  min-height: 48px;
  touch-action: manipulation;
}

.accordion-trigger:hover {
  color: var(--color-orange);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-orange);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition);
  min-width: 24px;
  min-height: 24px;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body p {
  padding-bottom: 24px;
  color: var(--color-grey);
  line-height: 1.75;
}

@media (max-width: 480px) {
  .accordion-trigger {
    padding: 18px 0;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .accordion-body p {
    font-size: 0.875rem;
    padding-bottom: 20px;
  }
}

/* ── Stat Counter ────────────────────────────────── */
.stat-number {
  font-family: var(--font-sub);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--color-orange);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .stat-label {
    font-size: 0.75rem;
    margin-top: 6px;
  }
}

/* ── Testimonial Card ────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-orange);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-dark2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-grey);
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-quote-mark {
    font-size: 3rem;
    top: 5px;
    left: 14px;
  }

  .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .testimonial-author {
    font-size: 0.8rem;
  }

  .testimonial-role {
    font-size: 0.75rem;
  }
}

/* ── Form Styles ─────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}

.form-group select option {
  background: #fff;
  color: var(--color-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(242, 140, 56, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  padding: 14px 16px;
}

.form-success {
  background: rgba(242, 140, 56, 0.08);
  border: 1.5px solid var(--color-orange);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--color-orange);
  font-weight: 600;
  display: none;
}

@media (max-width: 480px) {

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 14px;
  }

  .form-group label {
    font-size: 0.75rem;
  }
}

/* ── Scroll Indicator ────────────────────────────── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  cursor: pointer;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ── Vertical Timeline (Process) ─────────────────── */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-orange), rgba(242, 140, 56, 0.1));
}

.timeline-step {
  position: relative;
  margin-bottom: 64px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.timeline-step h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.timeline-step p {
  color: var(--color-grey);
  margin-bottom: 20px;
  line-height: 1.75;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-number {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .timeline-step h3 {
    font-size: 1.3rem;
  }

  .timeline-step {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 32px;
  }

  .timeline::before {
    left: 9px;
  }

  .timeline-number {
    left: -42px;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .timeline-step p {
    font-size: 0.9rem;
  }

  .deliverables {
    gap: 6px;
  }
}

/* ── Check Items (Why Choose) ────────────────────── */
.check-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(242, 140, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 28px;
  min-height: 28px;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--color-orange);
  stroke-width: 2.5;
}

.check-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.check-text p {
  font-size: 0.875rem;
  color: var(--color-grey);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .check-item {
    gap: 12px;
    margin-bottom: 24px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-top: 3px;
  }

  .check-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2;
  }

  .check-text h4 {
    font-size: 0.9rem;
  }

  .check-text p {
    font-size: 0.8rem;
  }
}

/* ── Case Study Card ─────────────────────────────── */
.case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border-left: 4px solid var(--color-orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.case-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.case-client {
  font-size: 0.875rem;
  color: var(--color-grey);
  margin-bottom: 20px;
}

.case-stat {
  font-family: var(--font-sub);
  font-size: 3rem;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 12px;
}

.case-row {
  margin-bottom: 14px;
}

.case-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: 4px;
}

.case-row-text {
  font-size: 0.9rem;
  color: var(--color-dark2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .case-card {
    padding: 28px 24px;
  }

  .case-stat {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .case-card {
    padding: 20px 18px;
    border-left: 3px solid var(--color-orange);
  }

  .case-label {
    font-size: 0.7rem;
  }

  .case-client {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .case-stat {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .case-row {
    margin-bottom: 12px;
  }

  .case-row-label {
    font-size: 0.7rem;
  }

  .case-row-text {
    font-size: 0.85rem;
  }
}

/* ── Horizontal Timeline ─────────────────────────── */
.h-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.h-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--color-orange);
  z-index: 0;
}

.h-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.h-step-dot {
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.h-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.h-step-time {
  font-size: 0.72rem;
  color: var(--color-orange);
  font-weight: 500;
}

@media (max-width: 768px) {
  .h-step {
    min-width: 110px;
  }

  .h-step-dot {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .h-step-label {
    font-size: 0.75rem;
  }

  .h-step-time {
    font-size: 0.65rem;
  }
}

/* ── Utility ─────────────────────────────────────── */
.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .text-center-mobile {
    text-align: center;
  }

  .btn {
    padding: 0 20px;
    font-size: 0.8rem;
    min-height: 48px;
  }

  .cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0 18px;
    height: 48px;
    font-size: 0.75rem;
  }

  .nav {
    padding: 12px 16px;
  }

  .nav.scrolled {
    padding: 10px 16px;
  }



  .section {
    padding: var(--section-pad-m) 0;
  }

  .pill {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

@media (min-width: 769px) {
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1.2;
  }

  .section-tag {
    font-size: 0.7rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  /* Testimonial cards should stack better */
  .testimonial-card {
    padding: 24px 20px;
  }

  .card {
    padding: 24px 20px;
  }



  .scroll-indicator {
    font-size: 0.65rem;
  }

  .scroll-indicator svg {
    width: 18px;
    height: 18px;
  }

  .nav-mobile-overlay {
    gap: 24px;
    padding-top: 70px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-mobile-overlay a {
    font-size: 2rem;
    padding: 10px 0;
  }

  .nav-mobile-overlay .btn {
    margin-top: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .btn {
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .pill {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }

  .nav-mobile-overlay {
    gap: 20px;
    padding-top: 60px;
    padding-bottom: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-mobile-overlay a {
    font-size: 1.8rem;
    padding: 8px 0;
  }

  .nav-mobile-overlay .btn {
    margin-top: 16px;
    font-size: 0.9rem;
  }
}

/* ── Services Page Specific ─────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reversed .service-visual {
  order: -1;
}

@media (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: var(--section-pad-m) 0;
  }

  .service-block.reversed .service-visual {
    order: 0;
  }
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: var(--color-dark2);
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 140, 56, 0.12) 0%, transparent 70%);
}

.deliverable-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverable-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.deliverable-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══ PARTNERS MARQUEE ══ */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: opacity(0.85);
  transition: filter var(--transition), transform var(--transition);
}

.partner-logo:hover img {
  filter: opacity(1);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partner-logo {
    width: 100px;
    height: 70px;
  }
  
  .partners-track {
    gap: 40px;
  }
}

/* ── Enhanced Mobile Responsiveness ───────────────── */

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .btn {
    padding: 0 14px;
    font-size: 0.7rem;
    height: 44px;
  }

  .pill {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }

  .nav-mobile-overlay {
    gap: 20px;
    padding-top: 60px;
    padding-bottom: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-mobile-overlay a {
    font-size: 1.8rem;
    padding: 8px 0;
  }

  .nav-mobile-overlay .btn {
    margin-top: 16px;
    font-size: 0.9rem;
  }
  
  /* Hero adjustments for very small screens */
  .hero-full {
    padding: 100px 0 40px;
  }
  
  .hero-short {
    padding: 80px 0 40px;
  }
  
  /* Stats on small screens */
  .stat-number {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  
  /* Better touch targets */
  .accordion-trigger {
    min-height: 44px;
    padding: 16px 0;
  }
  
  /* Service blocks */
  .service-block {
    gap: 24px;
    padding: 32px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 361px) and (max-width: 576px) {
  .hero-full {
    padding: 120px 0 60px;
  }
  
  .hero-short {
    padding: 100px 0 60px;
  }
  
  .btn {
    padding: 0 18px;
    font-size: 0.75rem;
  }
  
  /* Timeline adjustments */
  .timeline {
    padding-left: 36px;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-number {
    left: -46px;
    width: 34px;
    height: 34px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-full {
    padding: 140px 0 80px;
  }
  
  .hero-short {
    padding: 120px 0 80px;
  }
  
  /* 2-column grids on tablet */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .nav-links {
    gap: 24px;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .card:hover {
    transform: none;
  }
  
  .partner-logo:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .nav-links a,
  .footer-nav a,
  .accordion-trigger {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-full {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .nav-mobile-overlay {
    padding-top: 80px;
    gap: 16px;
  }
  
  .nav-mobile-overlay a {
    font-size: 1.5rem;
    padding: 6px 0;
  }
}

/* Print styles */
@media print {
  .nav,
  .whatsapp-float,
  .scroll-indicator,
  .nav-hamburger {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ═══════════════════════════════════════════
   ITS PARTNERSHIP SECTION
   ═══════════════════════════════════════════ */

.its-partnership-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
}

.its-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 40%, #1f1710 100%);
  z-index: 0;
}

.its-banner-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.its-banner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.its-banner-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.its-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(242, 140, 56, 0.15),
    0 25px 60px -12px rgba(0, 0, 0, 0.5),
    0 0 80px -20px rgba(242, 140, 56, 0.15);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.its-image-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(242, 140, 56, 0.3),
    0 35px 80px -12px rgba(0, 0, 0, 0.6),
    0 0 120px -20px rgba(242, 140, 56, 0.25);
}

.its-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.its-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 140, 56, 0.08) 0%, transparent 50%, rgba(242, 140, 56, 0.05) 100%);
  pointer-events: none;
}

.its-image-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(242, 140, 56, 0.06), transparent, rgba(242, 140, 56, 0.04), transparent);
  animation: its-shimmer 8s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes its-shimmer {
  to { transform: rotate(360deg); }
}

.its-banner-content {
  position: relative;
}

/* Services Grid */
.its-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.its-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s;
}

.its-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), #e6a54a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.its-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(242, 140, 56, 0.1);
  border-color: rgba(242, 140, 56, 0.15);
}

.its-service-card:hover::before {
  transform: scaleX(1);
}

.its-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(242, 140, 56, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.its-service-card:hover .its-service-icon {
  background: rgba(242, 140, 56, 0.15);
  transform: scale(1.08);
}

.its-service-card h3 {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.its-service-card p {
  color: var(--color-grey);
  line-height: 1.75;
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 16px;
}

.its-service-link {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.its-service-card:hover .its-service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ITS Partnership Responsive */
@media (max-width: 1024px) {
  .its-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .its-banner-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .its-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .its-banner-content p {
    text-align: center;
  }

  .its-banner-content div[style*="display:flex"] {
    justify-content: center;
  }

  .its-image-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .its-services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .its-service-link {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .its-partnership-banner {
    padding: 60px 0;
  }

  .its-image-frame {
    max-width: 280px;
  }

  .its-service-card {
    padding: 24px 20px 22px;
  }
}
