:root {
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-orange: #ff6b00;
  --accent-orange-light: #ff8c00;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
  --bg-light: #f9fafb;

  --orange: #ff6b00;
  --orange-dark: #d97d0e;
  --navy: #1b2a6b;
  --dark: #1a1a2e;
  --mid: #2c2c44;
  --gold: #e8a020;
  --gold-l: #e8cc7a;
  --bg: #f4f4f7;
  --bg2: #ecedf2;
  --white: #ffffff;
  --text: #2e2e3e;
  --muted: #6e6e88;
  --navy-dark: #111d4e;
  --off-white: #f5f6fa;
  --text-dark: #1c1c2e;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.12);
  --border: #e2e2ea;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Rajdhani", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --ki-accent: #e57725;
  --green: #80c041;
  --blue: #01adee;
  --crimson: #e57725;
  --crimson-d: #e57725;
  --crimson-l: #e57725;
  --navy: #162740;
  --navy-l: #1f3a5f;
  --gold: #e57725;
  --white: #ffffff;
  --offwhite: #8d8d8d;
  --text-muted: #8a96a3;
  --accent-dk: #c45e0f;
  --accent-lt: #fdf0e6;
  --green-lt: #edf7e0;
  --blue-lt: #e0f6fe;
  --grey-50: #f7f8fa;
  --grey-100: #eef0f3;
  --grey-200: #dde1e7;
  --grey-400: #a0aab5;
  --grey-700: #3d4a58;
  --grey-900: #1a222c;

  --font-head: "Lora", serif;
  --font-body: "Nunito", sans-serif;

  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.13);
  --trans: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav-specific */
  --ki-nav-bg: #ffffff;
  --ki-top-bg: #f5f5f5;
  --ki-border: #e4e4e4;
  --ki-text: #1a1a1a;
  --ki-muted: #6b7280;
  --ki-hover-bg: #f4f4f4;
  --ki-dd-bg: #ffffff;
  --ki-accent-lt: rgba(232, 67, 10, 0.08);
  --ki-dd-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  --nav-h: 85px;

  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--primary-black);
  background: #080808;
  overflow-x: hidden;
}

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  color: var(--primary-white);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 2px solid var(--accent-orange);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-bar-item i {
  color: var(--accent-orange);
  font-size: 16px;
}

.top-bar-item:hover {
  color: var(--accent-orange);
  transform: translateX(3px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 4px;
  margin-left: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.social-links a:hover {
  background: var(--accent-orange);
  color: var(--primary-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Main Header */
.main-header {
  background: var(--primary-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo-container {
  padding: 10px 0;
}

.logo-container img {
  max-height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: scale(1.05);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--accent-orange);
}

.main-nav > li > a:hover::before,
.main-nav > li.active > a::before {
  width: 80%;
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-white);
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-orange);
  z-index: 1000;
  padding-left: 0;
}

.main-nav > li:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  list-style: none;
  border-bottom: 1px solid var(--border-gray);
}

.dropdown-menu-custom li:last-child {
  border-bottom: none;
}

.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 10px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.dropdown-menu-custom li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
  opacity: 0.1;
  transition: width 0.3s ease;
}

.dropdown-menu-custom li a:hover {
  color: var(--accent-orange);
  padding-left: 20px;
}

.dropdown-menu-custom li a:hover::before {
  width: 100%;
}

.dropdown-menu-custom li a i {
  color: #fff;
  font-size: 12px;
  min-width: 10px;
}

.dropdown-menu-custom li a .product-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-orange);
  color: var(--primary-white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  margin-left: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-black);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--primary-white);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  border-bottom: 3px solid var(--accent-orange);
}

.mobile-menu-header img {
  max-height: 50px;
  width: auto;
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.mobile-menu-content > ul > li > a:hover {
  background: var(--bg-light);
  color: var(--accent-orange);
  padding-left: 30px;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-light);
}

.mobile-submenu.active {
  max-height: 800px;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.mobile-submenu li:last-child a {
  border-bottom: none;
}

.mobile-submenu li a:hover {
  color: var(--accent-orange);
  padding-left: 50px;
}

.mobile-submenu li a i {
  color: var(--accent-orange);
  font-size: 16px;
}

.submenu-toggle {
  background: transparent;
  border: none;
  color: var(--accent-orange);
  font-size: 18px;
  cursor: pointer;
  padding: 0 5px;
  transition: transform 0.3s ease;
}

.submenu-toggle.active {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay,
  .mobile-menu {
    display: block;
  }

  .logo-container img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ─── SLIDES ─── */
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  pointer-events: none;
  z-index: 1;
  visibility: hidden;
}

/* Leaving slide — stays ON TOP so its exit animations clear fully */
.slide.exiting {
  visibility: visible;
  z-index: 4;
  pointer-events: none;
}

/* Incoming slide — renders just below the exiting one */
.slide.active {
  visibility: visible;
  z-index: 3;
  pointer-events: all;
}

/* ─── BACKGROUND COLOUR PANEL ─── */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-bg-color {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  /* Just fade — no translate so it never clips over content */
  opacity: 0;
  transition: opacity 0.85s ease;
}

.slide.active .slide-bg-color {
  opacity: 1;
  transition-delay: 0s;
}

.slide.exiting .slide-bg-color {
  opacity: 0;
  transition: opacity 0.35s ease 0s;
}

/* ─── LEFT: CONTENT ─── */
.slide-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw 0 8vw;
}

.slide-eyebrow {
  font-size: clamp(0.58rem, 0.9vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fdfdfd;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-out);
}

.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.slide.exiting .slide-eyebrow {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease 0s,
    transform 0.22s var(--ease-in) 0s;
}

.accent-line {
  display: inline-block;
  width: 2.2rem;
  height: 1.5px;
  margin-right: 0.9rem;
  flex-shrink: 0;
}

.slide:nth-child(1) .accent-line {
  background: #9b7050;
}

.slide:nth-child(2) .accent-line {
  background: #2d8f72;
}

.slide:nth-child(3) .accent-line {
  background: #8060aa;
}

.slide:nth-child(4) .accent-line {
  background: #b08840;
}

.slide-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 0.93;
  color: #f0ede6;
  margin-bottom: 1.8rem;
}

.slide-headline em {
  font-style: italic;
  font-weight: 600;
  display: block;
}

.headline-line {
  display: block;
  overflow: hidden;
  line-height: 1.06;
}

.headline-line-inner {
  display: block;
  transform: translateY(106%);
  transition: transform 1s var(--ease);
}

.slide.active .headline-line-inner {
  transform: translateY(0);
}

.slide.active .headline-line:nth-child(1) .headline-line-inner {
  transition-delay: 0.28s;
}

.slide.active .headline-line:nth-child(2) .headline-line-inner {
  transition-delay: 0.41s;
}

.slide.active .headline-line:nth-child(3) .headline-line-inner {
  transition-delay: 0.53s;
}

/* Exit: collapse upward fast */
.slide.exiting .headline-line-inner {
  transform: translateY(-108%) !important;
  transition: transform 0.32s var(--ease-in) 0s !important;
}

.slide-body {
  font-size: clamp(0.82rem, 1.15vw, 0.97rem);
  font-weight: 300;
  color: #fdfdfd;
  line-height: 1.85;
  max-width: 36ch;
  margin-bottom: 2.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease-out);
}

.slide.active .slide-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

.slide.exiting .slide-body {
  opacity: 0;
  transition: opacity 0.18s ease 0s;
  transform: none;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease-out);
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.slide.exiting .slide-actions {
  opacity: 0;
  transition: opacity 0.15s ease 0s;
  transform: none;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.88rem 2rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #080808;
  background: #f0ede6;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease;
  white-space: nowrap;
}

.btn-fill {
  position: absolute;
  inset: 0;
  background: #080808;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: #f0ede6;
}

.btn-primary:hover .btn-fill {
  transform: scaleX(1);
}

.btn-secondary {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fdfdfd;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.btn-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  color: #c8c4bc;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(5px);
}

/* ─── RIGHT: VISUAL ─── */
.slide-visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: absolute;
  width: 75%;
  aspect-ratio: 3/4;
  overflow: hidden;
  /* Enter: clipped shut from bottom */
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s var(--ease);
}

.slide.active .visual-frame {
  clip-path: inset(0% 0 0 0);
  transition-delay: 0.08s;
}

/* Exit: wipe up to top */
.slide.exiting .visual-frame {
  clip-path: inset(0 0 100% 0) !important;
  transition: clip-path 0.38s var(--ease-in) 0s !important;
}

.visual-img {
  position: absolute;
  inset: -5%;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* transform: scale(1.08); */
  /* transition: transform 8s ease-out; */
}

.slide.active .visual-img {
  transform: scale(1);
}

.slide.exiting .visual-img {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.52) 100%); */
}

.visual-label {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s var(--ease-out);
}

.slide.active .visual-label {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.55s;
}

.slide.exiting .visual-label {
  opacity: 0;
  transition: opacity 0.18s ease;
  transform: none;
}

/* Floating geometric rings */
.geo {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
  animation: geo-spin 24s linear infinite;
}

.geo2 {
  position: absolute;
  border: 1px solid;
  pointer-events: none;
  animation: geo-float 9s ease-in-out infinite;
}

@keyframes geo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes geo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.slide:nth-child(1) .geo,
.slide:nth-child(1) .geo2 {
  border-color: rgba(155, 112, 80, 0.22);
}

.slide:nth-child(2) .geo,
.slide:nth-child(2) .geo2 {
  border-color: rgba(45, 143, 114, 0.25);
}

.slide:nth-child(3) .geo,
.slide:nth-child(3) .geo2 {
  border-color: rgba(128, 96, 170, 0.25);
}

.slide:nth-child(4) .geo,
.slide:nth-child(4) .geo2 {
  border-color: rgba(176, 136, 64, 0.22);
}

/* Slide-specific bg colours */
.slide:nth-child(1) .slide-bg-color {
  background: #160d08;
}

.slide:nth-child(2) .slide-bg-color {
  background: #051110;
}

.slide:nth-child(3) .slide-bg-color {
  background: #0a0612;
}

.slide:nth-child(4) .slide-bg-color {
  background: #100c05;
}

/* Image tones */
.slide:nth-child(1) .visual-img {
  filter: brightness(0.82) saturate(0.88);
}

.slide:nth-child(2) .visual-img {
  filter: brightness(0.78) saturate(0.82);
}

.slide:nth-child(3) .visual-img {
  filter: brightness(0.74) saturate(0.78);
}

.slide:nth-child(4) .visual-img {
  filter: brightness(0.8) saturate(0.84);
}

/* ─── SLIDE NUMBER ─── */
.slide-number {
  position: absolute;
  top: 50%;
  left: 2.8vw;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.num-current {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0ede6;
  line-height: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.num-sep {
  width: 0.5px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
}

.num-total {
  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #383838;
  letter-spacing: 0.1em;
}

/* ─── PROGRESS BAR ─── */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(240, 237, 230, 0.55);
}

/* ─── DOT NAV ─── */
.nav {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-dot {
  height: 2px;
  width: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.4s var(--ease-out);
}

.nav-dot.active {
  width: 48px;
  background: rgba(240, 237, 230, 0.7);
}

/* ─── ARROWS ─── */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8c4bc;
  transition:
    border-color 0.3s,
    background 0.3s,
    color 0.3s;
}

.arrow-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #f0ede6;
  background: rgba(255, 255, 255, 0.07);
}

.arrow-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-prev {
  left: 5.5vw;
}

.arrow-next {
  right: 5.5vw;
}

/* ─── CHROME ─── */
.corner-mark {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 9;
  opacity: 0.18;
}

.corner-mark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  top: 0;
  left: 0;
  background: #f0ede6;
}

.corner-mark::after {
  content: "";
  position: absolute;
  width: 0.5px;
  height: 100%;
  top: 0;
  left: 0;
  background: #f0ede6;
}

.corner-tl {
  top: 1.4rem;
  left: 1.4rem;
}

.corner-tr {
  top: 1.4rem;
  right: 1.4rem;
  transform: rotate(90deg);
}

.corner-bl {
  bottom: 1.4rem;
  left: 1.4rem;
  transform: rotate(-90deg);
}

.corner-br {
  bottom: 1.4rem;
  right: 1.4rem;
  transform: rotate(180deg);
}

.meta-tag {
  position: absolute;
  top: 2.2rem;
  right: 2.8rem;
  z-index: 10;
  font-family: "Barlow", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 38%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.center-line {
  position: absolute;
  top: 0;
  left: 48%;
  width: 0.5px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 6;
  pointer-events: none;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.4rem;
  z-index: 9;
  overflow: hidden;
  height: 1.1rem;
  display: flex;
  align-items: center;
  opacity: 0.09;
  pointer-events: none;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #f0ede6;
  gap: 4rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .slide {
    grid-template-columns: 55% 45%;
  }

  .slide-content {
    padding: 0 3vw 0 6vw;
  }

  .arrow-prev {
    left: 2vw;
  }

  .arrow-next {
    right: 2vw;
  }

  .slide-number {
    left: 1.2vw;
  }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .slider {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 580px;
  }

  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: 42% 58%;
  }

  .slide-visual {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    align-items: flex-start;
  }

  .slide-bg-color {
    width: 100%;
    top: 42%;
    height: 58%;
  }

  .slide-content {
    grid-column: 1;
    grid-row: 2;
    padding: 1.4rem 6vw 4rem;
    justify-content: flex-start;
    z-index: 2;
  }

  .visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    clip-path: inset(100% 0 0 0);
  }

  .slide.active .visual-frame {
    clip-path: inset(0% 0 0 0);
  }

  .slide.exiting .visual-frame {
    clip-path: inset(0 0 100% 0) !important;
  }

  .visual-img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .visual-label {
    display: none;
  }

  .geo,
  .geo2 {
    display: none;
  }

  .slide-headline {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 0.8rem;
  }

  .slide-body {
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .slide-eyebrow {
    margin-bottom: 0.8rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .slide-number {
    display: none;
  }

  .meta-tag {
    display: none;
  }

  .center-line {
    display: none;
  }

  .ticker {
    display: none;
  }

  .corner-mark {
    display: none;
  }

  .arrow-prev {
    left: 1rem;
    top: 21%;
    transform: none;
  }

  .arrow-next {
    right: 1rem;
    top: 21%;
    transform: none;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
  }

  .nav {
    bottom: 1rem;
  }

  .nav-dot {
    width: 16px;
  }

  .nav-dot.active {
    width: 32px;
  }
}

/* ── VERY SMALL (≤ 380px) ── */
@media (max-width: 380px) {
  .slide-headline {
    font-size: 2.1rem;
  }

  .btn-primary {
    padding: 0.75rem 1.4rem;
    font-size: 0.68rem;
  }
}

/* ─── ABOUT SECTION WRAPPER ────────────────────── */
.abt-section {
  padding: 90px 0 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background accent */
.abt-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 148, 29, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.abt-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 42, 107, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── SECTION LABEL (eyebrow) ──────────────────── */
.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.28);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ─── H1 MAIN HEADING ──────────────────────────── */
.abt-h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 0;
}

.abt-h1 .accent {
  color: var(--orange);
}

/* Decorative underline bar under heading */
.abt-heading-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 28px;
}

.abt-heading-bar .bar-solid {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.abt-heading-bar .bar-thin {
  flex: 1;
  height: 2px;
  background: rgba(27, 42, 107, 0.1);
  border-radius: 2px;
}

/* ─── FLOATED IMAGE BLOCKS ─────────────────────── */
/*
      Images float left so body text wraps naturally around them.
      Each image gets a styled frame + caption.
    */
.abt-float-img {
  float: left;
  margin: 4px 28px 20px 0;
  position: relative;
}

.abt-float-img:nth-child(2) {
  /* second image pushes a bit further for visual rhythm */
  margin-top: 8px;
}

.abt-float-img .img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(27, 42, 107, 0.14);
  /* Orange corner accent */
  border: 3px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--orange) 0%, var(--navy) 100%) border-box;
}

.abt-float-img .img-frame img {
  display: block;
  width: 400px;
  height: 275px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.abt-float-img:hover .img-frame img {
  transform: scale(1.04);
}

/* Small floating label over image */
.abt-float-img .img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(27, 42, 107, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.abt-float-img .img-label i {
  color: var(--orange);
  font-size: 0.6rem;
}

/* ─── BODY TEXT THAT WRAPS AROUND IMAGES ──────── */
.abt-body-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
  /* clearfix so next sibling clears the float properly */
}

.abt-body-text p {
  margin-bottom: 16px;
}

.abt-body-text p:last-child {
  margin-bottom: 0;
}

.abt-body-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Clearfix helper */
.abt-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ─── FULL-WIDTH STAT STRIP ────────────────────── */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 16px 48px rgba(27, 42, 107, 0.18);
}

.abt-stat-item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}

.abt-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.abt-stat-item:hover {
  background: var(--navy-dark);
}

.abt-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(247, 148, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  color: var(--orange);
}

.abt-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.abt-stat-num span {
  color: var(--orange);
}

.abt-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* ─── FULL-WIDTH VALUES STRIP ──────────────────── */
.abt-values {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.abt-value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  border: 1px solid rgba(27, 42, 107, 0.08);
  box-shadow: 0 4px 18px rgba(27, 42, 107, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.abt-value-card:hover {
  box-shadow: 0 10px 32px rgba(27, 42, 107, 0.12);
  transform: translateY(-3px);
}

.abt-value-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(247, 148, 29, 0.28);
}

.abt-value-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.abt-value-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── CTA ROW ───────────────────────────────────── */
.abt-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-abt-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.32);
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-abt-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(247, 148, 29, 0.42);
}

.btn-abt-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid rgba(27, 42, 107, 0.25);
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn-abt-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 991px) {
  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .abt-section {
    padding: 60px 0;
  }

  .abt-float-img {
    float: none;
    margin: 0 0 20px 0;
  }

  .abt-float-img .img-frame img {
    width: 100%;
    height: 200px;
  }

  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-values {
    grid-template-columns: 1fr;
  }

  .abt-stat-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .abt-stats {
    grid-template-columns: 1fr 1fr;
  }

  .abt-stat-num {
    font-size: 1.8rem;
  }
}

/* ════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════ */
.prod-section {
  padding: 88px 0 96px;
}

.prod-section.alt-bg {
  background: var(--bg2);
}

/* Section header */
.sec-head {
  margin-bottom: 52px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: normal;
  color: var(--orange);
}

.sec-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 10px;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 9px 20px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.sec-view-all:hover {
  background: var(--orange);
  color: var(--white);
}

.sec-view-all i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.sec-view-all:hover i {
  transform: translateX(3px);
}

/* ════════════════════════════════
       PRODUCT CARD  (shared by both)
    ════════════════════════════════ */
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    transform 0.28s,
    border-color 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  transform: translateY(-5px);
  border-color: rgba(200, 40, 30, 0.2);
}

/* Image wrapper */
.prod-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  aspect-ratio: 4 / 4;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

/* Image overlay on hover */
.prod-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.prod-img-wrap .img-overlay span {
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.prod-card:hover .prod-img-wrap .img-overlay {
  background: rgba(26, 26, 46, 0.28);
}

.prod-card:hover .prod-img-wrap .img-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Category badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Card body */
.prod-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title link */
.prod-title-link {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.prod-title-link:hover {
  color: var(--orange);
}

/* Short divider */
.prod-line {
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Description */
.prod-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
}

/* Card footer link */
.prod-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-enquire {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.prod-enquire:hover {
  gap: 10px;
  color: var(--orange-dark);
}

.prod-enquire i {
  font-size: 0.65rem;
}

.prod-share {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.prod-share:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ════════════════════════════════
       SECTION 1 – GRID
    ════════════════════════════════ */
/* Nothing extra needed — Bootstrap g-4 handles it */

/* ════════════════════════════════
       SECTION 2 – OWL CAROUSEL
    ════════════════════════════════ */
.owl-carousel .prod-card {
  margin: 6px 4px 16px;
  /* breathing room so shadow isn't clipped */
}

/* Custom nav buttons */
.owl-nav-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.owl-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

/* Custom dots */
.owl-theme .owl-dots {
  margin-top: 28px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  transition:
    width 0.3s,
    background 0.3s !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 24px !important;
  background: var(--orange) !important;
}

/* Hide default owl nav */
.owl-theme .owl-nav {
  display: none !important;
}

/* Carousel wrapper — give it overflow visible so card hover shadows show */
.owl-carousel.owl-loaded {
  overflow: visible;
}

.owl-stage-outer {
  overflow: hidden !important;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 575px) {
  .prod-section {
    padding: 60px 0 68px;
  }

  .sec-head .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px !important;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-orange);
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-black);
  bottom: -50px;
  left: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-orange);
  top: 50%;
  right: 20%;
  animation: float 18s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.why-image-wrapper:hover .why-image {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-white);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--accent-orange);
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 24px;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content {
  padding-left: 30px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(255, 107, 0, 0.05) 100%
  );
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 18px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: var(--primary-white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  opacity: 0.05;
  transition: width 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  border-radius: 15px;
  border-top: 3px solid var(--accent-orange);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 24px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .why-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px 20px;
  }

  .badge-number {
    font-size: 24px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════════════════
   SHARED UTILITIES (used across all 4 sections)
══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ki-accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.65);
}

.eyebrow--white::before {
  background: var(--ki-accent);
}

.eyebrow--blue {
  color: var(--blue);
}

.sec-display {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.17;
  margin-bottom: 1.1rem;
}

.sec-display .ital {
  font-style: italic;
}

.sec-display .accent {
  color: var(--ki-accent);
}

.sec-display .gold {
  color: var(--gold);
  font-style: italic;
}

.sec-display--white {
  color: var(--white);
}

.sec-lead {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ki-muted);
  line-height: 1.85;
}

.sec-lead--white {
  color: rgba(255, 255, 255, 0.68);
}

/* ══════════════════════════════════════════════════════════
   1. TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

/* Giant decorative quote — CSS only, no img */
.testimonials::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: clamp(16rem, 30vw, 28rem);
  color: var(--ki-accent);
  opacity: 0.045;
  position: absolute;
  top: -5rem;
  left: -1.5rem;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ── Header row ───────────────────────────────────────── */
.tst__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.tst__aggregate {
  text-align: right;
  flex-shrink: 0;
}

.tst__agg-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  justify-content: flex-end;
}

.tst__agg-num .denom {
  font-size: 0.42em;
  color: var(--grey-400);
  font-weight: 400;
}

.tst__agg-stars {
  display: flex;
  gap: 3px;
  justify-content: flex-end;
  margin: 6px 0 3px;
}

.tst__agg-stars i {
  color: #f5a623;
  font-size: 14px;
}

.tst__agg-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-400);
}

/* ── Cards grid: 3 col, centre card inverted ──────────── */
.tst__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

/* Base card */
.tst-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}

.tst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Accent top borders */
.tst-card--orange {
  border-top: 3px solid var(--ki-accent);
}

.tst-card--navy {
  border-top: 3px solid var(--ki-accent);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.tst-card--blue {
  border-top: 3px solid var(--blue);
}

/* Decorative large quote icon (CSS, no extra element) */
.tst-card::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 7rem;
  position: absolute;
  top: -1.5rem;
  right: 1.2rem;
  line-height: 1;
  pointer-events: none;
  color: var(--ki-accent);
  opacity: 0.07;
}

.tst-card--navy::before {
  color: var(--white);
  opacity: 0.06;
}

/* Stars */
.tst-card__stars {
  display: flex;
  gap: 3px;
}

.tst-card__stars i {
  color: #f5a623;
  font-size: 12px;
}

.tst-card--navy .tst-card__stars i {
  color: #f5a623;
}

/* Quote text */
.tst-card__quote {
  font-family: var(--font-head);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--grey-700);
  line-height: 1.78;
  flex: 1;
}

.tst-card--navy .tst-card__quote {
  color: rgba(255, 255, 255, 0.72);
}

/* Divider */
.tst-card__rule {
  border: none;
  border-top: 1px solid var(--grey-100);
}

.tst-card--navy .tst-card__rule {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Author row */
.tst-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tst-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--grey-100);
}

.tst-card--navy .tst-card__avatar {
  border-color: rgba(255, 255, 255, 0.15);
}

.tst-card__name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--grey-900);
  line-height: 1.2;
}

.tst-card--navy .tst-card__name {
  color: var(--white);
}

.tst-card__role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--grey-400);
  margin-top: 2px;
}

.tst-card--navy .tst-card__role {
  color: rgba(255, 255, 255, 0.45);
}

.tst-card__company {
  color: var(--ki-accent);
  font-weight: 700;
}

/* ── Bottom trust strip ──────────────────────────────── */
.tst__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--grey-200);
  position: relative;
  z-index: 1;
}

.tst-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-700);
}

.tst-trust-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.tst-trust-item:nth-child(1) i {
  background: var(--accent-lt);
  color: var(--ki-accent);
}

.tst-trust-item:nth-child(2) i {
  background: var(--green-lt);
  color: var(--green);
}

.tst-trust-item:nth-child(3) i {
  background: var(--blue-lt);
  color: var(--blue);
}

.tst-trust-item:nth-child(4) i {
  background: rgba(22, 39, 64, 0.07);
  color: var(--navy);
}

/* Responsive */
@media (max-width: 900px) {
  .tst__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .tst__grid {
    grid-template-columns: 1fr;
  }

  .tst__aggregate {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   2. FAQ
══════════════════════════════════════════════════════════ */
.faq {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

/* ── Left: sticky intro ──────────────────────────────── */
.faq__intro {
  position: sticky;
  top: 100px;
}

.faq__lead {
  margin-bottom: 2rem;
}

/* Mini stats row */
.faq__stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--grey-50);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
}

.faq-stat {
}

.faq-stat__num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1;
}

.faq-stat__num .unit {
  color: var(--ki-accent);
}

.faq-stat__lbl {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-400);
  margin-top: 3px;
}

/* Support CTA */
.faq__support {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--accent-lt);
  border-radius: var(--radius);
  border-left: 3px solid var(--ki-accent);
  text-decoration: none;
  transition:
    box-shadow var(--trans),
    transform var(--trans);
}

.faq__support:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq__support-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ki-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.faq__support-text {
}

.faq__support-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ki-accent);
  opacity: 0.7;
}

.faq__support-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--grey-900);
  margin-top: 1px;
}

/* ── Right: accordion ────────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-item:first-child {
  border-top: 1px solid var(--grey-100);
}

/* Trigger button */
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background var(--trans);
}

/* FA icon badge */
.faq-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  color: var(--grey-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition:
    background var(--trans),
    color var(--trans),
    border-color var(--trans);
}

.faq-item.is-open .faq-item__icon {
  background: var(--ki-accent);
  border-color: var(--ki-accent);
  color: var(--white);
}

/* Question text */
.faq-item__q {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--grey-900);
  transition: color var(--trans);
}

.faq-item.is-open .faq-item__q {
  color: var(--ki-accent);
}

/* Chevron */
.faq-item__chevron {
  font-size: 11px;
  color: var(--grey-400);
  flex-shrink: 0;
  transition:
    transform var(--trans),
    color var(--trans);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--ki-accent);
}

/* Answer body */
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__body {
  max-height: 400px;
}

.faq-item__ans {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ki-muted);
  line-height: 1.82;
  padding: 0 0 1.3rem 50px;
}

/* Responsive */
@media (max-width: 960px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq__intro {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════════
   3. CTA + FORM
══════════════════════════════════════════════════════════ */
.cta-form {
  position: relative;
  overflow: hidden;
}

.cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* ── Left panel — image + overlay ─────────────────────── */
.ctf__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
}

.ctf__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ctf__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(22, 39, 64, 0.96) 0%,
    rgba(22, 39, 64, 0.8) 55%,
    rgba(229, 119, 37, 0.72) 100%
  );
  z-index: 1;
}

/* Decorative circles */
.ctf__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}

.ctf__deco-ring--lg {
  width: 500px;
  height: 500px;
  bottom: -180px;
  left: -180px;
}

.ctf__deco-ring--sm {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
  border-color: rgba(229, 119, 37, 0.12);
}

.ctf__left-body {
  position: relative;
  z-index: 2;
}

.ctf__display {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.ctf__display .gold {
  color: var(--gold);
  font-style: italic;
}

.ctf__sublead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

/* Benefit checklist */
.ctf__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ctf-benefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ctf-benefit a{
  text-decoration: none;
  color: #fff;
}

.ctf-benefit__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ── Right panel — form ────────────────────────────────── */
.ctf__right {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
}

.ctf__form-wrap {
  width: 100%;
  max-width: 460px;
}

.ctf__form-title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.22;
  margin-bottom: 1.8rem;
}

.ctf__form-title .accent {
  color: var(--ki-accent);
  font-style: italic;
}

/* Form */
.ctf__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ctf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

/* Field wrapper */
.ctf-field {
  position: relative;
}

.ctf-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400);
  font-size: 13px;
  pointer-events: none;
  transition: color var(--trans);
  z-index: 1;
}

.ctf-field--ta i {
  top: 15px;
  transform: none;
}

/* Focus-within: icon turns accent */
.ctf-field:focus-within i {
  color: var(--ki-accent);
}

/* Inputs, select, textarea */
.ctf-field input,
.ctf-field select,
.ctf-field textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-900);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  outline: none;
  transition:
    border-color var(--trans),
    background var(--trans),
    box-shadow var(--trans);
  appearance: none;
}

.ctf-field textarea {
  resize: vertical;
  min-height: 108px;
  padding-top: 12px;
}

.ctf-field input:focus,
.ctf-field select:focus,
.ctf-field textarea:focus {
  border-color: var(--ki-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229, 119, 37, 0.1);
}

/* Select arrow */
.ctf-field--select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--grey-400);
  pointer-events: none;
}

/* Submit */
.ctf__submit {
  width: 100%;
  padding: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ki-accent);
  border: 2px solid var(--ki-accent);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
  transition:
    background var(--trans),
    color var(--trans),
    transform var(--trans);
}

.ctf__submit:hover {
  background: transparent;
  color: var(--ki-accent);
  transform: translateY(-2px);
}

.ctf__submit i {
  font-size: 13px;
  transition: transform var(--trans);
}

.ctf__submit:hover i {
  transform: translateX(4px);
}

/* Privacy note */
.ctf__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--grey-400);
  margin-top: 0.8rem;
}

.ctf__privacy i {
  color: var(--green);
  font-size: 11px;
}

/* Responsive */
@media (max-width: 960px) {
  .cta-form__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ctf__left {
    min-height: 400px;
  }

  .ctf__right {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .ctf-row {
    grid-template-columns: 1fr;
  }

  .ctf__left {
    min-height: 320px;
    padding: 2.5rem 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════
   4. FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
}

/* ── Main grid ─────────────────────────────────────────── */
.ftr__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
}

/* Brand column */
.ftr__logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  /* filter: brightness(0) invert(1); */
  opacity: 0.85;
}

.ftr__tagline {
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.5);
  max-width: 325px;
  margin-bottom: 1.6rem;
}

/* Social icons */
.ftr__socials {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.ftr__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition:
    background var(--trans),
    border-color var(--trans),
    color var(--trans);
}

.ftr__social:hover {
  background: var(--ki-accent);
  border-color: var(--ki-accent);
  color: var(--white);
}

/* Newsletter */
.ftr__nl-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem;
}

.ftr__nl-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ftr__nl-input {
  flex: 1;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--white);
  min-width: 0;
}

.ftr__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ftr__nl-btn {
  padding: 10px 14px;
  background: var(--ki-accent);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--trans);
}

.ftr__nl-btn:hover {
  background: var(--accent-dk);
}

/* ── Column label — NOT a heading tag ─────────────────── */
.ftr__col-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ftr__col-label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--ki-accent);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

/* Link lists */
.ftr__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0;
}

.ftr__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition:
    color var(--trans),
    gap var(--trans);
}

.ftr__links a i {
  font-size: 9px;
  color: var(--ki-accent);
  transition: transform var(--trans);
}

.ftr__links a:hover {
  color: var(--white);
  gap: 0.8rem;
}

.ftr__links a:hover i {
  transform: translateX(2px);
}

/* ── Contact items ─────────────────────────────────────── */
.ftr__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ftr-ci {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ftr-ci__ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ki-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.ftr-ci__wrap {
}

.ftr-ci__meta {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}

.ftr-ci__val {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.ftr-ci__val a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color var(--trans);
}

.ftr-ci__val a:hover {
  color: var(--white);
}

/* ── Certifications ────────────────────────────────────── */
.ftr__certs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.ftr__cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
}

.ftr__cert i {
  color: var(--green);
  font-size: 10px;
}

/* ── Divider + Bottom bar ──────────────────────────────── */
.ftr__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ftr__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 1.4rem 0;
}

.ftr__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}

.ftr__copy a {
  color: var(--ki-accent);
  text-decoration: none;
}

.ftr__legal {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.ftr__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--trans);
}

.ftr__legal a:hover {
  color: var(--white);
}

/* ── Footer responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .ftr__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ftr__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ftr__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ftr__legal {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}

.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}

/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}

.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}

@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}

.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}

@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}

.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}

.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}

@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(-6px);
    opacity: 0;
  }

  46% {
    transform: translateY(6px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }

  .gtt-float {
    right: 16px;
    bottom: 20px;
  }

  .wa-circle {
    width: 52px;
    height: 52px;
  }

  .wa-circle i {
    font-size: 1.35rem;
  }
}


.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(255 107 0 / 69%) 0%, rgb(255 107 0 / 54%) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff6b00, #ff6b00);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: #ff6b00;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--orange);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}